x86intrin icon indicating copy to clipboard operation
x86intrin copied to clipboard

x86 intrinsics for rust

Results 2 x86intrin issues
Sort by recently updated
recently updated
newest added

Issue #4 suggests me to check if test really covers all functions.

src/avx.rs ```rust #[inline] pub fn mm256_div_pd(a: m256d, b: m256d) -> m256d { unsafe { simd_div(a, b) } } #[inline] pub fn mm256_div_ps(a: m256, b: m256) -> m256 { unsafe {...