Skip to content

Commit bba6256

Browse files
authored
Merge pull request numpy#28088 from ngoldbaum/fix-clang-sanitizer-check
BUG: update check for highway compiler support
2 parents f3e78d7 + b88df80 commit bba6256

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

numpy/_core/src/npysort/highway_qsort.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
// dispatched sources.
1111
#if (HWY_COMPILER_MSVC && !HWY_IS_DEBUG_BUILD) || \
1212
(HWY_ARCH_ARM_V7 && HWY_IS_DEBUG_BUILD) || \
13-
(HWY_ARCH_ARM_A64 && HWY_COMPILER_GCC_ACTUAL && HWY_IS_ASAN) || \
14-
(HWY_ARCH_ARM_A64 && HWY_COMPILER_CLANG && \
15-
(HWY_IS_HWASAN || HWY_IS_MSAN || HWY_IS_TSAN || HWY_IS_ASAN))
13+
(HWY_ARCH_ARM_A64 && HWY_COMPILER_GCC_ACTUAL && HWY_IS_ASAN)
1614
#define NPY_DISABLE_HIGHWAY_SORT
1715
#endif
1816

0 commit comments

Comments
 (0)