Find a file
Lokathor 0a46ca43e2
Merge pull request #31 from thomcc/negxor
Use xor to implement Neg::neg for floats
2020-10-07 22:15:30 -06:00
.github Offer a checklist for math PRs 2020-10-01 19:50:49 -07:00
crates/core_simd Add comment about fneg to the bitxor in float neg 2020-10-07 13:24:21 -07:00
.gitignore Add initial type implementations 2020-09-22 19:41:42 -04:00
.travis.yml Add CI for wasm targets using wasm-bindgen (#20) 2020-10-03 16:36:51 +10:00
beginners-guide.md resolve https://github.com/rust-lang/stdsimd/pull/8#discussion_r495584133 2020-09-27 10:55:49 -06:00
Cargo.toml Add initial type implementations 2020-09-22 19:41:42 -04:00
LICENSE-APACHE Add licenses and update Cargo.toml 2020-10-01 23:42:10 -04:00
LICENSE-MIT Add licenses and update Cargo.toml 2020-10-01 23:42:10 -04:00
README.md add build badge 2020-10-03 16:40:18 +10:00

stdsimd - Rust's standard library portable SIMD API

Build Status

Code repository for the Portable SIMD Project Group.

Code Organization

Currently the crate is organized so that each element type is a file, and then the 64-bit, 128-bit, 256-bit, and 512-bit vectors using those types are contained in said file.

All types are then exported as a single, flat module.

Depending on the size of the primitive type, the number of lanes the vector will have varies. For example, 128-bit vectors have four f32 lanes and two f64 lanes.

The supported element types are as follows:

  • Floating Point: f32, f64
  • Signed Integers: i8, i16, i32, i64, i128, isize
  • Unsigned Integers: u8, u16, u32, u64, u128, usize
  • Masks: mask8, mask16, mask32, mask64, mask128, masksize

Floating point, signed integers, and unsigned integers are the primitive types you're already used to. The mask types are "truthy" values, but they use the number of bits in their name instead of just 1 bit like a normal bool uses.