Expand description
Port (NOT bindings) of Agner Fog’s Vector Class Library to Rust.
vrl
stands for Vector Rust Library.
This is a library for using the SIMD (Single Instruction Multiple Data) instructions on modern x86 and x86-64 CPUs.
Structs§
- Vec4f
- Represents a packed vector of 4 single-precision floating-point values.
__m128
wrapper. - Vec8f
- Represents a packed vector of 8 single-precision floating-point values.
Traits§
- SIMD
Vector - Represents a packed vector containing
ELEMENTS
values of typeElement
.