We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05c320 commit be022bdCopy full SHA for be022bd
testable-simd-models/src/core_arch/x86/models/avx2.rs
@@ -916,9 +916,7 @@ pub fn _mm256_and_si256(a: __m256i, b: __m256i) -> __m256i {
916
simd_and(BitVec::to_i64x4(a), BitVec::to_i64x4(b)).into()
917
}
918
919
-pub fn _mm256_set1_epi8(val: i8) -> BitVec<256> {
920
- BitVec::from_i8x32(i8x32::from_fn(|_| val))
921
-}
+
922
923
/// Computes the bitwise NOT of 256 bits (representing integer data)
924
/// in `a` and then AND with `b`.
0 commit comments