Registry / utility / simba
library0.10.0rscratesunverified

SIMD algebra library for Rust, providing vector and matrix types with SIMD acceleration.

# Cargo.toml [dependencies] simba = "0.10.0"
INSTALL
IMPORT
SIG · SIMBA
S
simba
utilityrustv0.10.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.

SimdValue
use simba::simd::SimdValue;

Demonstrates SIMD vector addition using simba's SIMD types.

use simba::simd::SimdValue; 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 a target CPU with SIMD support (e.g., SSE2 on x86_64) or nightly Rust for portable SIMD.
fix
Ensure your target supports SIMD or enable the appropriate feature flags (e.g., `simd_ nightly`).
affects: >=0.10.0
Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

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