simdeez 3.0.1

SIMD library to abstract over different instruction sets and widths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod scalar;

#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
pub mod avx2;
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
pub mod avx512;
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
pub mod sse2;
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
pub mod sse41;

#[cfg(target_arch = "aarch64")]
pub mod neon;

#[cfg(target_arch = "wasm32")]
pub mod wasm32;