From 537e2b322f8122126aee83c92c95ba8ab9061970 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Thu, 4 Jun 2020 22:25:05 +0000 Subject: Fix typo in previous update to generic predux_any. --- Eigen/src/Core/GenericPacketMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/GenericPacketMath.h b/Eigen/src/Core/GenericPacketMath.h index 41e1b0923..adf431b4c 100644 --- a/Eigen/src/Core/GenericPacketMath.h +++ b/Eigen/src/Core/GenericPacketMath.h @@ -524,7 +524,7 @@ template EIGEN_DEVICE_FUNC inline bool predux_any(const Packet& // - bits full of ones (NaN for floats), // - or first bit equals to 1 (1 for ints, smallest denormal for floats). // For all these cases, taking the sum is just fine, and this boils down to a no-op for scalars. - return bool(numext::not_equal_strict(a, pzero(a))); + return bool(numext::not_equal_strict(predux(a), pzero(a))); } /** \internal \returns the reversed elements of \a a*/ -- cgit v1.2.3