aboutsummaryrefslogtreecommitdiff
path: root/src/rust_avx2.rs
diff options
context:
space:
mode:
authorJoel Rosdahl <[email protected]>2023-05-23 21:47:15 +0200
committerJack O'Connor <[email protected]>2023-05-23 14:39:27 -0700
commit2dd4e57f68d85f3983b1880b66250fc7bdf0b7c8 (patch)
tree3bfbedaa7e893cca918aec1c5eb2f5994c3420f7 /src/rust_avx2.rs
parent71a2646180c787e22f8681c5fec7655a0ad51e99 (diff)
Fix typos
Diffstat (limited to 'src/rust_avx2.rs')
-rw-r--r--src/rust_avx2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rust_avx2.rs b/src/rust_avx2.rs
index 6290e70..a37a4ca 100644
--- a/src/rust_avx2.rs
+++ b/src/rust_avx2.rs
@@ -215,7 +215,7 @@ unsafe fn transpose_vecs(vecs: &mut [__m256i; DEGREE]) {
let gh_0145 = _mm256_unpacklo_epi32(vecs[6], vecs[7]);
let gh_2367 = _mm256_unpackhi_epi32(vecs[6], vecs[7]);
- // Interleave 64-bit lates. The low unpack is lanes 00/22 and the high is 11/33.
+ // Interleave 64-bit lanes. The low unpack is lanes 00/22 and the high is 11/33.
let abcd_04 = _mm256_unpacklo_epi64(ab_0145, cd_0145);
let abcd_15 = _mm256_unpackhi_epi64(ab_0145, cd_0145);
let abcd_26 = _mm256_unpacklo_epi64(ab_2367, cd_2367);