Skip to content

Commit

Permalink
Fix test-case
Browse files Browse the repository at this point in the history
  • Loading branch information
marxin authored and Amanieu committed Nov 30, 2024
1 parent 59271e0 commit 945fecc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/core_arch/src/x86_64/avx512f.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11189,8 +11189,11 @@ mod tests {
let r = _mm256_alignr_epi64::<0>(a, b);
let e = _mm256_set_epi64x(8, 7, 6, 5);
assert_eq_m256i(r, e);
let r = _mm256_alignr_epi64::<1>(a, b);
let e = _mm256_set_epi64x(1, 8, 7, 6);
assert_eq_m256i(r, e);
let r = _mm256_alignr_epi64::<6>(a, b);
let e = _mm256_set_epi64x(6, 5, 4, 3);
let e = _mm256_set_epi64x(2, 1, 8, 7);
assert_eq_m256i(r, e);
}

Expand Down

0 comments on commit 945fecc

Please sign in to comment.