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 384be9f commit 64ea088Copy full SHA for 64ea088
crates/core_simd/examples/dot_product.rs
@@ -130,7 +130,7 @@ pub fn dot_prod_simd_4(a: &[f32], b: &[f32]) -> f32 {
130
}
131
132
// 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.
+// Notice the use of `mul_add`, which can do a multiply and an add operation ber iteration.
134
pub fn dot_prod_simd_5(a: &[f32], b: &[f32]) -> f32 {
135
a.array_chunks::<4>()
136
.map(|&a| f32x4::from_array(a))
0 commit comments