Skip to content

Commit 2470267

Browse files
committed
Skip block transpose performance test for sve2 on llvm 21
1 parent e5e6b66 commit 2470267

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

test/performance/block_transpose.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@ int main(int argc, char **argv) {
8787
return 0;
8888
}
8989

90+
if (Internal::get_llvm_version() < 220 &&
91+
target.has_feature(Target::SVE2)) {
92+
printf("[SKIP] LLVM %d has known SVE backend bugs for this test.\n",
93+
Internal::get_llvm_version());
94+
return 0;
95+
}
96+
9097
// Set the target features to use for dumping to assembly
9198
target.set_features({Target::NoRuntime, Target::NoAsserts, Target::NoBoundsQuery});
9299

0 commit comments

Comments
 (0)