Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T18:35:59.000Z (7 months ago)
- Last Synced: 2024-05-20T20:37:04.294Z (7 months ago)
- Topics: rust, simd, zlib-license
- Language: Rust
- Homepage: https://docs.rs/wide
- Size: 502 KB
- Stars: 184
- Watchers: 6
- Forks: 19
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE-ZLIB.md
Awesome Lists containing this project
README
[![License:Zlib](https://img.shields.io/badge/License-Zlib-brightgreen.svg)](https://opensource.org/licenses/Zlib)
![Minimum Rust Version](https://img.shields.io/badge/Min%20Rust-1.61-green.svg)
[![crates.io](https://img.shields.io/crates/v/wide.svg)](https://crates.io/crates/wide)
[![docs.rs](https://docs.rs/wide/badge.svg)](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.