Skip to content

Commit 03301cc

Browse files
[QNN EP] Disable tests broken by QNN 2.37 (microsoft#25729)
### Description Disable two tests that were broken on X Elite by upgrading to QNN 2.37.0
1 parent 0ccc9b0 commit 03301cc

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

onnxruntime/test/providers/qnn/qnn_node_group/lpbqgemm_fusion_test.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ ProviderOptions GetProviderOptions() {
107107

108108
} // namespace
109109

110+
#if defined(_WIN32)
111+
// Graph fails to compose on ARM64 Windows since QNN 2.37.0
112+
TEST_F(QnnHTPBackendTests, DISABLED_LPBQGemmFusion) {
113+
#else
110114
TEST_F(QnnHTPBackendTests, LPBQGemmFusion) {
115+
#endif
111116
ProviderOptions provider_options = GetProviderOptions();
112117
RunQnnModelTest(BuildLPBQGemmTestCase(),
113118
provider_options,

onnxruntime/test/providers/qnn/qnn_node_group/lpbqmatmul_fusion_test.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,12 @@ ProviderOptions GetProviderOptions() {
106106

107107
} // namespace
108108

109+
#if defined(_WIN32)
110+
// Graph fails to compose on ARM64 Windows since QNN 2.37.0
111+
TEST_F(QnnHTPBackendTests, DISABLED_LPBQMatMulFusion) {
112+
#else
109113
TEST_F(QnnHTPBackendTests, LPBQMatMulFusion) {
114+
#endif
110115
ProviderOptions provider_options = GetProviderOptions();
111116
RunQnnModelTest(BuildLPBQMatMulTestCase(),
112117
provider_options,

0 commit comments

Comments
 (0)