Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions tools/clang/unittests/HLSLExec/ExecutionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5632,7 +5632,7 @@ void ExecutionTest::RunBasicShaderModelTest(CComPtr<ID3D12Device> pDevice,

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryFPOp",
// this callbacked is called when the test is creating the resource to run
// this callback is called when the test is creating the resource to run
// the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
UNREFERENCED_PARAMETER(Name);
Expand Down Expand Up @@ -6999,7 +6999,7 @@ TEST_F(ExecutionTest, UnaryFloatOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryFPOp"));
Expand Down Expand Up @@ -7067,7 +7067,7 @@ TEST_F(ExecutionTest, BinaryFloatOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryFPOp"));
Expand Down Expand Up @@ -7157,7 +7157,7 @@ TEST_F(ExecutionTest, TertiaryFloatOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryFPOp"));
Expand Down Expand Up @@ -7234,7 +7234,7 @@ TEST_F(ExecutionTest, UnaryHalfOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryFPOp"));
Expand Down Expand Up @@ -7314,7 +7314,7 @@ TEST_F(ExecutionTest, BinaryHalfOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryFPOp"));
Expand Down Expand Up @@ -7424,7 +7424,7 @@ TEST_F(ExecutionTest, TertiaryHalfOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryFPOp"));
Expand Down Expand Up @@ -7494,7 +7494,7 @@ TEST_F(ExecutionTest, UnaryIntOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryIntOp"));
Expand Down Expand Up @@ -7554,7 +7554,7 @@ TEST_F(ExecutionTest, UnaryUintOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryUintOp"));
Expand Down Expand Up @@ -7619,7 +7619,7 @@ TEST_F(ExecutionTest, BinaryIntOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryIntOp"));
Expand Down Expand Up @@ -7707,7 +7707,7 @@ TEST_F(ExecutionTest, TertiaryIntOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryIntOp"));
Expand Down Expand Up @@ -7777,7 +7777,7 @@ TEST_F(ExecutionTest, BinaryUintOpTest) {
int numExpected = Validation_Expected2->size() == 0 ? 1 : 2;
std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryUintOp"));
Expand Down Expand Up @@ -7869,7 +7869,7 @@ TEST_F(ExecutionTest, TertiaryUintOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryUintOp"));
Expand Down Expand Up @@ -7948,7 +7948,7 @@ TEST_F(ExecutionTest, UnaryInt16OpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryIntOp"));
Expand Down Expand Up @@ -8016,7 +8016,7 @@ TEST_F(ExecutionTest, UnaryUint16OpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "UnaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SUnaryUintOp"));
Expand Down Expand Up @@ -8091,7 +8091,7 @@ TEST_F(ExecutionTest, BinaryInt16OpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryIntOp"));
Expand Down Expand Up @@ -8187,7 +8187,7 @@ TEST_F(ExecutionTest, TertiaryInt16OpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryIntOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryIntOp"));
Expand Down Expand Up @@ -8264,7 +8264,7 @@ TEST_F(ExecutionTest, BinaryUint16OpTest) {
int numExpected = Validation_Expected2->size() == 0 ? 1 : 2;
std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryUintOp"));
Expand Down Expand Up @@ -8363,7 +8363,7 @@ TEST_F(ExecutionTest, TertiaryUint16OpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryUintOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryUintOp"));
Expand Down Expand Up @@ -8948,7 +8948,7 @@ TEST_F(ExecutionTest, DotTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "DotOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SDotOp"));
Expand Down Expand Up @@ -9240,7 +9240,7 @@ TEST_F(ExecutionTest, Msad4Test) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "Msad4",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SMsad4"));
Expand Down Expand Up @@ -9342,7 +9342,7 @@ TEST_F(ExecutionTest, DenormBinaryFloatOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "BinaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SBinaryFPOp"));
Expand Down Expand Up @@ -9455,7 +9455,7 @@ TEST_F(ExecutionTest, DenormTertiaryFloatOpTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTest(
pDevice, m_support, pStream, "TertiaryFPOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "STertiaryFPOp"));
Expand Down Expand Up @@ -9883,7 +9883,7 @@ void ExecutionTest::WaveIntrinsicsActivePrefixTest(
++maskIndex) {
std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTestAfterParse(
pDevice, m_support, "WaveIntrinsicsOp",
// this callbacked is called when the test
// this callback is called when the test
// is creating the resource to run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "SWaveIntrinsicsOp"));
Expand Down Expand Up @@ -12609,7 +12609,7 @@ TEST_F(ExecutionTest, HelperLaneTest) {

std::shared_ptr<ShaderOpTestResult> test = RunShaderOpTestAfterParse(
pDevice, m_support, "HelperLaneTestNoWave",
// this callbacked is called when the test is creating the resource to
// this callback is called when the test is creating the resource to
// run the test
[&](LPCSTR Name, std::vector<BYTE> &Data, st::ShaderOp *pShaderOp) {
VERIFY_IS_TRUE(0 == _stricmp(Name, "UAVBuffer0"));
Expand Down