Fix typo in PacketMath.h

This commit is contained in:
Rasmus Munk Larsen 2020-09-18 01:22:23 +00:00
parent 3af744b023
commit a5b226920f

View File

@ -3643,7 +3643,7 @@ template<> EIGEN_STRONG_INLINE Packet2d pcmp_lt(const Packet2d& a, const Packet2
{ return vreinterpretq_f64_u64(vcltq_f64(a,b)); }
template<> EIGEN_STRONG_INLINE Packet2d pcmp_lt_or_nan(const Packet2d& a, const Packet2d& b)
{ return vreinterpret_f32_u32(vmvnq_u64(vcgeq_f64(a,b))); }
{ return vreinterpret_f64_u64(vmvnq_u64(vcgeq_f64(a,b))); }
template<> EIGEN_STRONG_INLINE Packet2d pcmp_eq(const Packet2d& a, const Packet2d& b)
{ return vreinterpretq_f64_u64(vceqq_f64(a,b)); }