Registry / utility / simdeez

simdeez

JSON →
library3.0.1rscratesunverified

Provides a SIMD abstraction layer that allows writing code portable across different instruction sets and vector widths.

# Cargo.toml [dependencies] simdeez = "3.0.1"
INSTALL
IMPORT
SIG · SIMDEEZ
S
simdeez
utilityrustv3.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Sse2
use simdeez::sse2::Sse2;

Performs SIMD addition using SSE2 intrinsics.

use simdeez::sse2::Sse2; fn main() { let a = Sse2::set1_epi32(42); let b = Sse2::set1_epi32(10); let c = Sse2::add_epi32(a, b); println!("SIMD addition result"); }
Debug
Known issues
gotchaRequires target CPU features (e.g., sse2, avx2) to be enabled at compile time.
fix
Add `-C target-feature=+sse2` or use `#[cfg(target_feature = "sse2")]` guards.
affects: >=3.0.0
Upgrade
Version history
3.0.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources