Fix small nit where I changed name of plog1p to pexpm1.

This commit is contained in:
Srinivas Vasudevan 2016-12-02 15:30:12 -08:00
parent a0d3ac760f
commit 09ee7f0c80

View File

@ -268,7 +268,7 @@ template<> __device__ EIGEN_STRONG_INLINE Eigen::half predux_mul<half2>(const ha
#endif
}
template<> __device__ EIGEN_STRONG_INLINE half2 pexpm1<half2>(const half2& a) {
template<> __device__ EIGEN_STRONG_INLINE half2 plog1p<half2>(const half2& a) {
float a1 = __low2float(a);
float a2 = __high2float(a);
float r1 = log1pf(a1);