We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1de854c commit 9d46c28Copy full SHA for 9d46c28
1 file changed
.github/workflows/linux.yml
@@ -131,7 +131,6 @@ jobs:
131
export XSIMD_TEST_CPU_ASSUME_AVX512F="1"
132
../../sde-external-9.48.0-2024-11-25-lin/sde64 -tgl -- ./test_xsimd
133
else
134
- # Explicitly assume the runner will not have avx512, which may change in the future
135
- export XSIMD_TEST_CPU_ASSUME_AVX512F="0"
+ export XSIMD_TEST_CPU_ASSUME_AVX512F=$(grep -q 'avx512f' /proc/cpuinfo && echo "1" || echo "0")
136
./test_xsimd
137
fi
0 commit comments