Disable QNN HTP MatMul Op Test to Avoid Random Failure (#23371)

The QNN HTP backend for MatMul is not stable on different versions and
platforms. Disable the UT to avoid random failure.
This commit is contained in:
Vincent Wang 2025-01-15 13:46:53 +08:00 committed by GitHub
parent 5d215ff810
commit cff0ec5278
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);