Skip to content

Commit e5e6b66

Browse files
committed
Skip test on sve2 with llvm 21
1 parent 11126e7 commit e5e6b66

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

test/correctness/transpose_idioms.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ void check(Func g) {
8383
}
8484

8585
int main(int argc, char **argv) {
86+
if (Internal::get_llvm_version() < 220 &&
87+
get_jit_target_from_environment().has_feature(Target::SVE2)) {
88+
printf("[SKIP] LLVM %d has known SVE backend bugs for this test.\n",
89+
Internal::get_llvm_version());
90+
return 0;
91+
}
92+
8693
Var x{"x"}, y{"y"}, xi{"xi"}, yi{"yi"};
8794

8895
// In each case we'll say g(x, y) = f(y, x) and tile it. We will try power

0 commit comments

Comments
 (0)