| Crates.io | rten-simd |
| lib.rs | rten-simd |
| version | 0.22.1 |
| created_at | 2024-05-25 07:53:06.645655+00 |
| updated_at | 2025-09-18 18:20:06.321032+00 |
| description | Portable SIMD for stable Rust |
| homepage | https://github.com/robertknight/rten |
| repository | https://github.com/robertknight/rten |
| max_upload_size | |
| id | 1251806 |
| size | 222,568 |
Portable SIMD library for stable Rust.
rten-simd is a library for defining operations that are accelerated using SIMD instruction sets such as AVX2, Arm Neon or WebAssembly SIMD. Operations are defined once using safe, portable APIs, then dispatched at runtime to evaluate the operation using the best available SIMD instruction set (ISA) on the current CPU.
The design is inspired by Google's Highway library for C++ and the pulp crate.