Registry / utility / wide
library1.4.0rscratesunverified

A crate providing SIMD-accelerated operations on wide data types.

# Cargo.toml [dependencies] wide = "1.4.0"
INSTALL
IMPORT
SIG · WIDE
W
wide
utilityrustv1.4.0
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.

f32x4
use wide::f32x4;

Demonstrates SIMD addition of two 4-element float vectors.

use wide::f32x4; fn main() { let a = f32x4::new(1.0, 2.0, 3.0, 4.0); let b = f32x4::new(5.0, 6.0, 7.0, 8.0); let c = a + b; println!("{:?}", c); }
Debug
Known issues
gotchaRequires target CPU features (e.g., SSE2, AVX2) for optimal performance; falls back to scalar on unsupported hardware.
fix
Enable target features via RUSTFLAGS or .cargo/config.toml, e.g., -C target-feature=+sse2,+avx2.
affects: >=1.0.0
Upgrade
Version history
1.4.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
wide — cargo add wide · libregistry