@@ -33248,7 +33248,7 @@ pub fn _mm512_reduce_add_ps(a: __m512) -> f32 {
33248
33248
);
33249
33249
let a = _mm_add_ps(_mm256_extractf128_ps::<0>(a), _mm256_extractf128_ps::<1>(a));
33250
33250
let a = _mm_add_ps(a, simd_shuffle!(a, a, [2, 3, 0, 1]));
33251
- simd_extract::<_, f32> (a, 0) + simd_extract::<_, f32> (a, 1)
33251
+ simd_extract! (a, 0, f32 ) + simd_extract! (a, 1, f32 )
33252
33252
}
33253
33253
}
33254
33254
@@ -33275,7 +33275,7 @@ pub fn _mm512_reduce_add_pd(a: __m512d) -> f64 {
33275
33275
_mm512_extractf64x4_pd::<1>(a),
33276
33276
);
33277
33277
let a = _mm_add_pd(_mm256_extractf128_pd::<0>(a), _mm256_extractf128_pd::<1>(a));
33278
- simd_extract::<_, f64> (a, 0) + simd_extract::<_, f64> (a, 1)
33278
+ simd_extract! (a, 0, f64 ) + simd_extract! (a, 1, f64 )
33279
33279
}
33280
33280
}
33281
33281
@@ -33356,7 +33356,7 @@ pub fn _mm512_reduce_mul_ps(a: __m512) -> f32 {
33356
33356
);
33357
33357
let a = _mm_mul_ps(_mm256_extractf128_ps::<0>(a), _mm256_extractf128_ps::<1>(a));
33358
33358
let a = _mm_mul_ps(a, simd_shuffle!(a, a, [2, 3, 0, 1]));
33359
- simd_extract::<_, f32> (a, 0) * simd_extract::<_, f32> (a, 1)
33359
+ simd_extract! (a, 0, f32 ) * simd_extract! (a, 1, f32 )
33360
33360
}
33361
33361
}
33362
33362
@@ -33383,7 +33383,7 @@ pub fn _mm512_reduce_mul_pd(a: __m512d) -> f64 {
33383
33383
_mm512_extractf64x4_pd::<1>(a),
33384
33384
);
33385
33385
let a = _mm_mul_pd(_mm256_extractf128_pd::<0>(a), _mm256_extractf128_pd::<1>(a));
33386
- simd_extract::<_, f64> (a, 0) * simd_extract::<_, f64> (a, 1)
33386
+ simd_extract! (a, 0, f64 ) * simd_extract! (a, 1, f64 )
33387
33387
}
33388
33388
}
33389
33389
0 commit comments