We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8118926 commit 3f58f62Copy full SHA for 3f58f62
library/portable-simd/crates/core_simd/src/swizzle_dyn.rs
@@ -55,7 +55,7 @@ where
55
16 => transize(vqtbl1q_u8, self, idxs),
56
#[cfg(all(target_feature = "avx2", not(target_feature = "avx512vbmi")))]
57
32 => transize_raw(avx2_pshufb, self, idxs),
58
- #[cfg(target_feature = "avx512vl,avx512vbmi")]
+ #[cfg(all(target_feature = "avx512vl", target_feature = "avx512vbmi"))]
59
32 => transize(x86::_mm256_permutexvar_epi8, self, idxs),
60
// Notable absence: avx512bw shuffle
61
// If avx512bw is available, odds of avx512vbmi are good
0 commit comments