Skip to content

Commit 9ddb6bb

Browse files
committed
Optimize for AVX-512
1 parent 3ed9d15 commit 9ddb6bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core_simd/src/vector.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,8 +1120,8 @@ where
11201120
type Mask = isize;
11211121
}
11221122

1123-
const USE_BRANCH: bool = true;
1124-
const USE_BITMASK: bool = false;
1123+
const USE_BRANCH: bool = false;
1124+
const USE_BITMASK: bool = true;
11251125

11261126
#[inline]
11271127
fn index<T, const N: usize>() -> Simd<T, N>

0 commit comments

Comments
 (0)