aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-07-22 15:30:24 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-07-22 15:30:24 +0200
commit395c835f4b11fa70bf8eaaffab1177e6120585d3 (patch)
tree707bdeea1f2b8ecaf82cac37a6f77f9456f27ff4 /Eigen/src/Core
parent47afc9a365dc3657ac84c9949f1d332009f7d641 (diff)
Fix CUDA compilation
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/arch/CUDA/PacketMathHalf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/arch/CUDA/PacketMathHalf.h b/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
index dcb948c5a..8931f4662 100644
--- a/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
+++ b/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
@@ -262,7 +262,7 @@ template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Eigen::half predux_mul<half2>(c
#else
float a1 = __low2float(a);
float a2 = __high2float(a);
- return Eigen::half(internal::raw_uint16_to_half(__float2half_rn(a1 * a2)));
+ return Eigen::half(half_impl::raw_uint16_to_half(__float2half_rn(a1 * a2)));
#endif
}