forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Perf improvements to AVX2 sorting: see intel/x86-simd-sort#104
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule x86-simd-sort
updated
18 files
+2 −42 | benchmarks/bench-all.cpp | |
+48 −0 | benchmarks/bench-keyvalue.hpp | |
+29 −0 | benchmarks/bench-vqsort.cpp | |
+56 −0 | benchmarks/bench.h | |
+12 −0 | benchmarks/meson.build | |
+9 −0 | lib/x86simdsort-internal.h | |
+28 −0 | lib/x86simdsort-scalar.h | |
+18 −0 | lib/x86simdsort-skx.cpp | |
+39 −1 | lib/x86simdsort.cpp | |
+5 −0 | lib/x86simdsort.h | |
+1 −0 | meson.build | |
+7 −1 | run-bench.py | |
+4 −10 | src/avx2-emu-funcs.hpp | |
+6 −4 | src/avx512-64bit-keyvaluesort.hpp | |
+6 −0 | tests/meson.build | |
+67 −0 | tests/test-keyvalue.cpp | |
+14 −14 | utils/custom-float.h | |
+17 −4 | utils/rand_array.h |