Skip to content

Commit

Permalink
Merge pull request #6567 from STEllAR-GROUP/fix-copy-bad-vectorization
Browse files Browse the repository at this point in the history
Fix vectorization error on copy algorithm
  • Loading branch information
hkaiser authored Dec 9, 2024
2 parents e5746e6 + 3464c07 commit cd8d65b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/core/config/include/hpx/config/auto_vectorization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

#define HPX_HAVE_VECTOR_REDUCTION

#elif (_OPENMP >= 201307) || (defined(__clang__) && HPX_CLANG_VERSION >= 30700)
#elif (_OPENMP >= 201307) && !defined(HPX_CLANG_VERSION)

#define HPX_PRAGMA_SIMD_EARLYEXIT
#define HPX_IVDEP
Expand Down

0 comments on commit cd8d65b

Please sign in to comment.