2 unstable releases

0.11.0 Jul 5, 2024
0.10.0 May 25, 2024

#292 in Machine learning

Download history 224/week @ 2024-07-01 189/week @ 2024-07-08 214/week @ 2024-07-15 173/week @ 2024-07-22 237/week @ 2024-07-29 207/week @ 2024-08-05 238/week @ 2024-08-12 230/week @ 2024-08-19 212/week @ 2024-08-26 230/week @ 2024-09-02 328/week @ 2024-09-09 261/week @ 2024-09-16 273/week @ 2024-09-23 268/week @ 2024-09-30 140/week @ 2024-10-07 382/week @ 2024-10-14

1,077 downloads per month
Used in 9 crates (2 directly)

MIT/Apache

53KB
1.5K SLoC

Portable SIMD types for implementing vectorized functions that work across different architectures.

Compared to std::simd it offers the following benefits:

  • Works on stable Rust
  • Includes infrastructure for dispatching vectorized operations using the optimal instruction set as determined at runtime.
  • Includes higher order functions for vectorized maps, folds etc.

Supported architectures

SIMD wrappers are provided for the following architectures:

  • Arm Neon
  • AVX 2 / FMA
  • AVX-512 (requires avx512 feature and nightly Rust)
  • WebAssembly SIMD

There is also a scalar fallback that works on all platforms, but provides no performance benefit over non-SIMD code.

No runtime deps

Features