8000 Minor text fixes · numpy/numpy@278e1de · GitHub
[go: up one dir, main page]

Skip to content

Commit 278e1de

Browse files
committed
Minor text fixes
1 parent 59443e8 commit 278e1de

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

numpy/_core/src/npysort/quicksort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ inline bool quicksort_dispatch(T *start, npy_intp num)
8787
}
8888
#if !DISABLE_HIGHWAY_OPTIMIZATION
8989
else if (sizeof(T) == sizeof(uint32_t) || sizeof(T) == sizeof(uint64_t)) {
90-
#if !defined(NPY_DISABLE_OPTIMIZATION)
90+
#ifndef NPY_DISABLE_OPTIMIZATION
9191
#include "simd_qsort.dispatch.h"
9292
#endif
9393
NPY_CPU_DISPATCH_CALL_XB(dispfunc = np::qsort_simd::template QSort, <TF>);

numpy/_core/src/npysort/simd_qsort_16bit.dispatch.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*@targets
2-
* $maxopt $keep_baseline
3-
* avx512_icl avx512_spr
2+
* $maxopt $keep_baseline avx512_icl avx512_spr
43
*/
54
// policy $keep_baseline is used to avoid skip building avx512_skx
65
// when its part of baseline features (--cpu-baseline), since

0 commit comments

Comments
 (0)
0