mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 04:35:57 +08:00
Fix compilation error in NEON GEBP specializaition of madd.
This commit is contained in:
parent
934b8a1304
commit
71429883ee
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user