Skip to content

Commit

Permalink
Merge pull request numpy#28088 from ngoldbaum/fix-clang-sanitizer-check
Browse files Browse the repository at this point in the history
BUG: update check for highway compiler support
  • Loading branch information
Mousius authored Jan 2, 2025
2 parents f3e78d7 + b88df80 commit bba6256
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions numpy/_core/src/npysort/highway_qsort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
// dispatched sources.
#if (HWY_COMPILER_MSVC && !HWY_IS_DEBUG_BUILD) || \
(HWY_ARCH_ARM_V7 && HWY_IS_DEBUG_BUILD) || \
(HWY_ARCH_ARM_A64 && HWY_COMPILER_GCC_ACTUAL && HWY_IS_ASAN) || \
(HWY_ARCH_ARM_A64 && HWY_COMPILER_CLANG && \
(HWY_IS_HWASAN || HWY_IS_MSAN || HWY_IS_TSAN || HWY_IS_ASAN))
(HWY_ARCH_ARM_A64 && HWY_COMPILER_GCC_ACTUAL && HWY_IS_ASAN)
#define NPY_DISABLE_HIGHWAY_SORT
#endif

Expand Down

0 comments on commit bba6256

Please sign in to comment.