From 9e94c5957000c38a6553552c96a7a27b1fc2860d Mon Sep 17 00:00:00 2001 From: Antonio Sanchez Date: Tue, 15 Jun 2021 13:42:17 -0700 Subject: Add missing ppc pcmp_lt_or_nan --- Eigen/src/Core/arch/AltiVec/PacketMath.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Eigen/src/Core/arch/AltiVec/PacketMath.h b/Eigen/src/Core/arch/AltiVec/PacketMath.h index d4aee3e21..a3ebf9ec2 100755 --- a/Eigen/src/Core/arch/AltiVec/PacketMath.h +++ b/Eigen/src/Core/arch/AltiVec/PacketMath.h @@ -1411,6 +1411,9 @@ template<> EIGEN_STRONG_INLINE Packet8bf pmax(const Packet8bf& a, con template<> EIGEN_STRONG_INLINE Packet8bf pcmp_lt(const Packet8bf& a, const Packet8bf& b) { BF16_TO_F32_BINARY_OP_WRAPPER_BOOL(pcmp_lt, a, b); } +template<> EIGEN_STRONG_INLINE Packet8bf pcmp_lt_or_nan(const Packet8bf& a, const Packet8bf& b) { + BF16_TO_F32_BINARY_OP_WRAPPER_BOOL(pcmp_lt_or_nan, a, b); +} template<> EIGEN_STRONG_INLINE Packet8bf pcmp_le(const Packet8bf& a, const Packet8bf& b) { BF16_TO_F32_BINARY_OP_WRAPPER_BOOL(pcmp_le, a, b); } -- cgit v1.2.3