From 09ee7f0c80fb586835f4fa77f9129080ea63406e Mon Sep 17 00:00:00 2001 From: Srinivas Vasudevan Date: Fri, 2 Dec 2016 15:30:12 -0800 Subject: [PATCH] Fix small nit where I changed name of plog1p to pexpm1. --- Eigen/src/Core/arch/CUDA/PacketMathHalf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/arch/CUDA/PacketMathHalf.h b/Eigen/src/Core/arch/CUDA/PacketMathHalf.h index 35cb0efd5..b9a125b42 100644 --- a/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +++ b/Eigen/src/Core/arch/CUDA/PacketMathHalf.h @@ -268,7 +268,7 @@ template<> __device__ EIGEN_STRONG_INLINE Eigen::half predux_mul(const ha #endif } -template<> __device__ EIGEN_STRONG_INLINE half2 pexpm1(const half2& a) { +template<> __device__ EIGEN_STRONG_INLINE half2 plog1p(const half2& a) { float a1 = __low2float(a); float a2 = __high2float(a); float r1 = log1pf(a1);