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
Clang doesn't support #pragma novector. Intel does, and I'm not sure about gcc. We need to support pragmas to disable auto-vectorization for these three compilers.
The file in question is src/serial/serial-kernels.c.
The text was updated successfully, but these errors were encountered:
For Clang, one might consider: #pragma clang loop vectorize(disable)
For GCC, you could probably turn off auto vectorization for the whole file with a compile-time flag if that's acceptable: -fno-tree-vectorize (after -O3 on the command line).
Clang doesn't support
#pragma novector
. Intel does, and I'm not sure about gcc. We need to support pragmas to disable auto-vectorization for these three compilers.The file in question is
src/serial/serial-kernels.c
.The text was updated successfully, but these errors were encountered: