Skip to content

Commit 80fc8a5

Browse files
committed
Update README
1 parent d62f656 commit 80fc8a5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ gets more complicated. Sorting by Euclidean distance can be up-to 10x faster.
182182
## Downstream projects using x86-simd-sort
183183
184184
- NumPy uses this as a [submodule](https://github.com/numpy/numpy/pull/22315) to accelerate `np.sort, np.argsort, np.partition and np.argpartition`.
185+
- PyTorch uses this as a [submodule](https://github.com/pytorch/pytorch/pull/127936) to accelerate `torch.sort, torch.argsort`.
185186
- A slightly modifed version this library has been integrated into [openJDK](https://github.com/openjdk/jdk/pull/14227).
186187
- [GRAPE](https://github.com/alibaba/libgrape-lite.git): C++ library for parallel graph processing.
187188
- AVX-512 version of the key-value sort has been submitted to [Oceanbase](https://github.com/oceanbase/oceanbase/pull/1325).

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('x86-simd-sort', 'cpp',
2-
version : '5.0.x',
2+
version : '6.0.x',
33
license : 'BSD 3-clause',
44
default_options : ['cpp_std=c++17'])
55
fs = import('fs')

0 commit comments

Comments
 (0)