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 c356e26 commit 4edea28Copy full SHA for 4edea28
src/i64x8_.rs
@@ -458,7 +458,7 @@ impl i64x8 {
458
#[must_use]
459
pub fn to_bitmask(self) -> u32 {
460
pick! {
461
- if #[cfg(target_feature="avx512f")] {
+ if #[cfg(target_feature="avx512dq")] {
462
// use f64 move_mask since it is the same size as i64
463
movepi64_mask_m512d(cast(self.avx512)) as u32
464
} else {
@@ -485,7 +485,7 @@ impl i64x8 {
485
486
pub fn all(self) -> bool {
487
488
+ if #[cfg(target_feature="avx512bw")] {
489
movepi64_mask_m512d(cast(self.avx512)) == 0b11111111
490
491
(self.a & self.b).all()
0 commit comments