mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-29 17:55:13 +08:00
Fix more mildly embarrassing typos in ARM intrinsics in PacketMath.h.
'vmvnq_u64' does not exist for some reason.
This commit is contained in:
parent
a5b226920f
commit
14022f5eb5
@ -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_f64_u64(vmvnq_u64(vcgeq_f64(a,b))); }
|
||||
{ return vreinterpretq_f64_u32(vmvnq_u32(vreinterpretq_u32_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)); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user