@@ -12350,10 +12350,11 @@ void ExecutionTest::runCoopVecMulSubtest(
12350
12350
12351
12351
LogCommentFmt(
12352
12352
L"Running test for InputPerThread: %d, OutputPerThread: %d, NumThreads: "
12353
- L"%d, NumLayers: %d, Bias: %s, MatrixLayout: %s",
12353
+ L"%d, NumLayers: %d, Bias: %s, MatrixLayout: %s, Stage: %s ",
12354
12354
Config.InputPerThread, Config.OutputPerThread, Config.NumThreads,
12355
12355
Config.NumLayers, Config.Bias ? L"true" : L"false",
12356
- CoopVecHelpers::MatrixLayoutToFilterString(Config.MatrixLayout).c_str());
12356
+ CoopVecHelpers::MatrixLayoutToFilterString(Config.MatrixLayout).c_str(),
12357
+ RunCompute ? L"Compute" : L"Pixel");
12357
12358
12358
12359
const int OutputBufferSize = (Config.OutputPerThread * Config.NumThreads * 4);
12359
12360
@@ -12829,8 +12830,7 @@ float4 ps_main() : SV_Target {
12829
12830
fabs(Result - Expected) > 0.00001) {
12830
12831
LogErrorFmt(L"Result mismatch at index %d",
12831
12832
i * Config.OutputPerThread + j);
12832
- LogErrorFmt(L"Result: %f, Expected: %f (stage: %s)", Result,
12833
- Expected, RunCompute ? L"compute" : L"pixel");
12833
+ LogErrorFmt(L"Result: %f, Expected: %f", Result, Expected);
12834
12834
Equal = false;
12835
12835
}
12836
12836
}
0 commit comments