We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2be958 commit 153b0c7Copy full SHA for 153b0c7
include/xsimd/arch/xsimd_neon64.hpp
@@ -710,6 +710,12 @@ namespace xsimd
710
return vaddvq_s64(arg);
711
}
712
713
+ template <class A>
714
+ inline float hadd(batch<float, A> const& arg, requires_arch<neon64>) noexcept
715
+ {
716
+ return vaddvq_f32(arg);
717
+ }
718
+
719
template <class A>
720
inline double hadd(batch<double, A> const& arg, requires_arch<neon64>) noexcept
721
{
0 commit comments