Skip to content

Lokathor/wide

Folders and files

NameName
Last commit message
Last commit date
Aug 1, 2021
Jan 4, 2025
Mar 3, 2025
Feb 21, 2025
Sep 21, 2019
Jan 8, 2025
Aug 17, 2020
Dec 21, 2024
Feb 2, 2023

Repository files navigation

License:Zlib Minimum Rust Version crates.io docs.rs

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.