You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GH Actions added in #3 don't actually check the simd backend, because they're compiled without awareness of the CPU flags that would support AVX2, and the implementation doesn't do dynamic dispatch. Two ways to address this:
Set the target_cpu to native and hope that actions runs on something with AVX2 (likely, since AVX2 is not that new);
Use qemu or something to run the avx2 or ifma implementations in an emulator;
The text was updated successfully, but these errors were encountered:
The GH Actions added in #3 don't actually check the simd backend, because they're compiled without awareness of the CPU flags that would support AVX2, and the implementation doesn't do dynamic dispatch. Two ways to address this:
target_cpu
to native and hope that actions runs on something with AVX2 (likely, since AVX2 is not that new);qemu
or something to run the avx2 or ifma implementations in an emulator;The text was updated successfully, but these errors were encountered: