https://github.com/lokathor/wide
A crate to help you go wide. By which I mean use SIMD stuff.
https://github.com/lokathor/wide
rust simd zlib-license
Last synced: 5 months ago
JSON representation
A crate to help you go wide. By which I mean use SIMD stuff.
- Host: GitHub
- URL: https://github.com/lokathor/wide
- Owner: Lokathor
- License: zlib
- Created: 2019-09-21T23:19:39.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T18:02:44.000Z (7 months ago)
- Last Synced: 2025-05-16T02:06:44.749Z (5 months ago)
- Topics: rust, simd, zlib-license
- Language: Rust
- Homepage: https://docs.rs/wide
- Size: 678 KB
- Stars: 358
- Watchers: 7
- Forks: 31
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE-ZLIB.md
Awesome Lists containing this project
README
[](https://opensource.org/licenses/Zlib)

[](https://crates.io/crates/wide)
[](https://docs.rs/wide/)# 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](https://docs.rs/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.