mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
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:
parent
5d215ff810
commit
cff0ec5278
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue