Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[QNN EP] Disable tests broken by QNN 2.37
  • Loading branch information
qti-jkilpatrick committed Aug 12, 2025
commit 3ecf69ce26de73fbdcf70df04c27b1e6f31f0c3a
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,12 @@ ProviderOptions GetProviderOptions() {

} // namespace

#if defined(_WIN32)
// Graph fails to compose on ARM64 Windows since QNN 2.37.0
TEST_F(QnnHTPBackendTests, DISABLED_LPBQGemmFusion) {
#else
TEST_F(QnnHTPBackendTests, LPBQGemmFusion) {
#endif
ProviderOptions provider_options = GetProviderOptions();
RunQnnModelTest(BuildLPBQGemmTestCase(),
provider_options,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,12 @@ ProviderOptions GetProviderOptions() {

} // namespace

#if defined(_WIN32)
// Graph fails to compose on ARM64 Windows since QNN 2.37.0
TEST_F(QnnHTPBackendTests, DISABLED_LPBQMatMulFusion) {
#else
TEST_F(QnnHTPBackendTests, LPBQMatMulFusion) {
#endif
ProviderOptions provider_options = GetProviderOptions();
RunQnnModelTest(BuildLPBQMatMulTestCase(),
provider_options,
Expand Down
Loading