Skip to content

Commit cff0ec5

Browse files
authored
Disable QNN HTP MatMul Op Test to Avoid Random Failure (microsoft#23371)
The QNN HTP backend for MatMul is not stable on different versions and platforms. Disable the UT to avoid random failure.
1 parent 5d215ff commit cff0ec5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

onnxruntime/test/providers/qnn/matmul_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ TEST_F(QnnCPUBackendTests, MatMulOp) {
233233
//
234234
// HTP tests:
235235
//
236-
TEST_F(QnnHTPBackendTests, MatMulOp) {
236+
// Disable this for now as the QNN HTP backend is not stable on different versions and platforms so it failed randomly.
237+
TEST_F(QnnHTPBackendTests, DISABLED_MatMulOp) {
237238
// RunMatMulOpTest(is_htp_backend, shape_0, shape_1, is_initializer_0, is_initializer_1, expected_ep_assignment,
238239
// opset, f32_abs_err)
239240
RunMatMulOpTest(true, {2, 3}, {3, 2}, false, false, ExpectedEPNodeAssignment::All, 18, 1e-2f);

0 commit comments

Comments
 (0)