Skip to content

Commit 64ea088

Browse files
cuishuangcalebzulawski
authored andcommitted
remove repetitive words
Signed-off-by: cui fliter <[email protected]>
1 parent 384be9f commit 64ea088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/examples/dot_product.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ pub fn dot_prod_simd_4(a: &[f32], b: &[f32]) -> f32 {
130130
}
131131

132132
// This version allocates a single `XMM` register for accumulation, and the folds don't allocate on top of that.
133-
// Notice the the use of `mul_add`, which can do a multiply and an add operation ber iteration.
133+
// Notice the use of `mul_add`, which can do a multiply and an add operation ber iteration.
134134
pub fn dot_prod_simd_5(a: &[f32], b: &[f32]) -> f32 {
135135
a.array_chunks::<4>()
136136
.map(|&a| f32x4::from_array(a))

0 commit comments

Comments
 (0)