We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f0f96 commit 1200f52Copy full SHA for 1200f52
1 file changed
include/xsimd/arch/xsimd_sse3.hpp
@@ -50,12 +50,6 @@ namespace xsimd
50
__m128 tmp1 = _mm_hadd_ps(tmp0, tmp0);
51
return _mm_cvtss_f32(tmp1);
52
}
53
- template <class A>
54
- XSIMD_INLINE double reduce_add(batch<double, A> const& self, requires_arch<sse3>) noexcept
55
- {
56
- __m128d tmp0 = _mm_hadd_pd(self, self);
57
- return _mm_cvtsd_f64(tmp0);
58
- }
59
60
61
0 commit comments