Skip to content

Commit 4ccb770

Browse files
committed
Skip int8xuint8 per-column test on DML
1 parent e3bc8be commit 4ccb770

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

onnxruntime/test/providers/cpu/math/matmul_integer_test.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,12 @@ TEST(MatmulIntegerOpTest, MatMulInteger_int8_uint8_2D) {
333333
}
334334

335335
TEST(MatmulIntegerOpTest, MatMulInteger_int8_uint8_PerColumn_ND) {
336-
OpTester test("MatMulInteger", 10);
336+
// TODO: Unskip when fixed #41968513
337+
if (DefaultDmlExecutionProvider().get() != nullptr) {
338+
GTEST_SKIP() << "Skipping because of the following error: AbiCustomRegistry.cpp(507): The parameter is incorrect.";
339+
}
337340

341+
OpTester test("MatMulInteger", 10);
338342
test.AddInput<int8_t>("T1",
339343
{2, 2, 2},
340344
{1, -2,

0 commit comments

Comments
 (0)