Fix compilation error in NEON GEBP specializaition of madd.

This commit is contained in:
Rasmus Munk Larsen 2019-01-25 17:00:21 -08:00
parent 934b8a1304
commit 71429883ee

View File

@ -1031,7 +1031,7 @@ struct gebp_traits <float, float, false, false,Architecture::NEON>
EIGEN_STRONG_INLINE void madd(const LhsPacket& a, const RhsPacket& b, AccPacket& c, RhsPacket& /*tmp*/, const FixedInt<0>&) const
{
c += a * b;
c = vfmaq_n_f32(c, a, b);
}
EIGEN_STRONG_INLINE void madd(const LhsPacket& a, const RhsPacketx4& b, AccPacket& c, RhsPacket& /*tmp*/, const FixedInt<0>&) const