55 releases
0.7.28 | Aug 12, 2024 |
---|---|
0.7.26 | Jul 21, 2024 |
0.7.15 | Jan 29, 2024 |
0.7.13 | Oct 17, 2023 |
0.3.2 | Nov 27, 2019 |
#25 in Data structures
839,287 downloads per month
Used in 606 crates
(28 directly)
500KB
14K
SLoC
wide
A crate to help you go wide.
Specifically, this has portable "wide" data types that do their best to be SIMD when possible.
On x86
, x86_64
, wasm32
and aarch64 neon
this is done with explicit
intrinsic usage (via safe_arch), and on other
architectures this is done by carefully writing functions so that LLVM hopefully
does the right thing. When Rust stabilizes more explicit intrinsics then they
can go into safe_arch
and then they can get used here.
lib.rs
:
A crate to help you go wide.
This crate provides SIMD-compatible data types.
When possible, explicit SIMD is used with all the math operations here. As a fallback, the fact that all the lengths of a fixed length array are doing the same thing will often make LLVM notice that it should use SIMD instructions to complete the task. In the worst case, the code just becomes totally scalar (though the math is still correct, at least).
Crate Features
std
: This causes the feature to link tostd
.- Currently this just improves the performance of
sqrt
when an explicit SIMDsqrt
isn't available.
- Currently this just improves the performance of
Dependencies
~785KB
~12K SLoC