Skip to content

Commit

Permalink
Disable QNN HTP MatMul Op Test to Avoid Random Failure (#23371)
Browse files Browse the repository at this point in the history
The QNN HTP backend for MatMul is not stable on different versions and
platforms. Disable the UT to avoid random failure.
  • Loading branch information
centwang authored Jan 15, 2025
1 parent 5d215ff commit cff0ec5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion onnxruntime/test/providers/qnn/matmul_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ TEST_F(QnnCPUBackendTests, MatMulOp) {
//
// HTP tests:
//
TEST_F(QnnHTPBackendTests, MatMulOp) {
// Disable this for now as the QNN HTP backend is not stable on different versions and platforms so it failed randomly.
TEST_F(QnnHTPBackendTests, DISABLED_MatMulOp) {
// RunMatMulOpTest(is_htp_backend, shape_0, shape_1, is_initializer_0, is_initializer_1, expected_ep_assignment,
// opset, f32_abs_err)
RunMatMulOpTest(true, {2, 3}, {3, 2}, false, false, ExpectedEPNodeAssignment::All, 18, 1e-2f);
Expand Down

0 comments on commit cff0ec5

Please sign in to comment.