Skip to content

Commit b9c6bdb

Browse files
authored
Revert "Skip two sub-tests on llvm 21.1 (#8782)"
This reverts commit a7a4c6c.
1 parent f974be5 commit b9c6bdb

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/correctness/register_shuffle.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ int main(int argc, char **argv) {
1111
return 0;
1212
}
1313

14-
// As 8/26/2025 llvm 21.1.0 includes some bugs w.r.t float32x2 vectors.
15-
// See https://github.com/llvm/llvm-project/pull/126337#issuecomment-3192412599
16-
const bool bad_llvm_version = Halide::Internal::get_llvm_version() == 211;
17-
1814
{
1915
// Shuffle test to do a small convolution
2016
Func f, g;
@@ -97,7 +93,7 @@ int main(int argc, char **argv) {
9793
}
9894
}
9995

100-
if (!bad_llvm_version) {
96+
{
10197
// Vectorized broadcast test. Each lane is responsible for a
10298
// 2-vector from 'a' and a 2-vector from 'b' instead of a single
10399
// value.
@@ -255,7 +251,7 @@ int main(int argc, char **argv) {
255251
}
256252
}
257253

258-
if (!bad_llvm_version) {
254+
{
259255
// Bilinear upsample
260256
Func f, upx, upy;
261257
Var x, y;

0 commit comments

Comments
 (0)