7 releases

Uses old Rust 2015

0.1.2 Oct 25, 2018
0.1.1 Oct 25, 2018
0.1.0 Aug 15, 2018
0.0.4 Jan 14, 2018
0.0.2 Sep 17, 2017

#1203 in Hardware support

Download history 12/week @ 2024-02-19 33/week @ 2024-02-26 6/week @ 2024-03-04 41/week @ 2024-03-11 12/week @ 2024-03-18

93 downloads per month
Used in 5 crates (via base100)

MIT/Apache

1.5MB
32K SLoC

stdsimd - Rust's standard library SIMD components

Travis-CI Status Appveyor Status Latest Version docs

Usage

stdsimd is now shipped with Rust's std library - its is part of libcore and libstd.

The easiest way to use it is just to import it via use std::arch.

The std::arch component for x86 is available in stable Rust. The std::arch components for other architectures and the std::simd component require nightly Rust.

Using stdsimd master branch is not recommended. It requires nightly Rust, it only works with particular Rust nightly versions, and it can (and does) break often. If you need to use stdsimd master branch, you can add it to your Cargo.toml as follows:

#[dependencies]
stdsimd = { git = "https://github.com/rust-lang-nursery/stdsimd.git" }

Documentation

Approach

The main goal is to expose APIs defined by vendors with the least amount of abstraction possible. On x86, for example, the API should correspond to that provided by emmintrin.h.

License

stdsimd is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

Dependencies