8000 SIMD: Add NEON QSort dispatching for armhf · numpy/numpy@26074af · GitHub
[go: up one dir, main page]

Skip to content

Commit 26074af

Browse files
committed
SIMD: Add NEON QSort dispatching for armhf
1 parent a51b0a3 commit 26074af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy/_core/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,14 +844,14 @@ foreach gen_mtargets : [
844844
'highway_qsort.dispatch.h',
845845
'src/npysort/highway_qsort.dispatch.cpp',
846846
use_highway ? [
847-
ASIMD, VSX2, # FIXME: disable VXE due to runtime segfault
847+
ASIMD, NEON, VSX2, # FIXME: disable VXE due to runtime segfault
848848
] : []
849849
],
850850
[
851851
'highway_qsort_16bit.dispatch.h',
852852
'src/npysort/highway_qsort_16bit.dispatch.cpp',
853853
use_highway ? [
854-
ASIMDHP, VSX2, # VXE FIXME: disable VXE due to runtime segfault
854+
ASIMDHP, NEON_FP16, VSX2, # VXE FIXME: disable VXE due to runtime segfault
855855
] : []
856856
],
857857
]

0 commit comments

Comments
 (0)
0