Skip to content

Commit 9978d5e

Browse files
committed
Readme fix: argsort does not use SIMD for 16-bit
1 parent b12fe4d commit 9978d5e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ data types.
5858
std::vector<size_t> arg = x86simdsort::argsort(T* arr, size_t size, bool hasnan, bool descending);
5959
std::vector<size_t> arg = x86simdsort::argselect(T* arr, size_t k, size_t size, bool hasnan);
6060
```
61-
Supported datatypes: `T` $\in$ `[_Float16, uint16_t, int16_t, float, uint32_t,
62-
int32_t, double, uint64_t, int64_t]`
61+
Supported datatypes: `T` $\in$ `[_Float16, uint16_t, int16_t, float, uint32_t, int32_t, double,
62+
uint64_t, int64_t]` Note that argsort and argselect are not accelerated with SIMD when using 16-bit
63+
data types.
6364

6465
## Build/Install
6566

0 commit comments

Comments
 (0)