Skip to content

Commit 9ab7d47

Browse files
authored
Merge pull request #169 from r-devulap/v6.0rc
Update README
2 parents ac53322 + 6cc237f commit 9ab7d47

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

+1
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

+1-1
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')

src/avx2-64bit-qsort.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,7 @@ struct avx2_vector<uint64_t> {
395395
static_assert(sizeof(size_t) == sizeof(uint64_t),
396396
"Size of size_t and uint64_t are not the same");
397397
template <>
398-
struct avx2_vector<size_t> : public avx2_vector<uint64_t> {
399-
};
398+
struct avx2_vector<size_t> : public avx2_vector<uint64_t> {};
400399
#endif
401400

402401
template <>

src/avx512-64bit-common.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -968,8 +968,7 @@ struct zmm_vector<uint64_t> {
968968
static_assert(sizeof(size_t) == sizeof(uint64_t),
969969
"Size of size_t and uint64_t are not the same");
970970
template <>
971-
struct zmm_vector<size_t> : public zmm_vector<uint64_t> {
972-
};
971+
struct zmm_vector<size_t> : public zmm_vector<uint64_t> {};
973972
#endif
974973

975974
template <>

0 commit comments

Comments
 (0)