aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-07-21 18:47:07 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-07-21 18:47:07 +0200
commit0f350a8b7ead07d1828d0012c9ed9dc46d355b5c (patch)
tree134a68045f714417ff8f0eac7a32ff042bed0d18 /Eigen
parentbf91a44f4ac8b82af79fc9a302f155f8beb3ca2d (diff)
Fix CUDA compilation
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/arch/CUDA/MathFunctions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/arch/CUDA/MathFunctions.h b/Eigen/src/Core/arch/CUDA/MathFunctions.h
index 1f2eca061..5b5bf4c94 100644
--- a/Eigen/src/Core/arch/CUDA/MathFunctions.h
+++ b/Eigen/src/Core/arch/CUDA/MathFunctions.h
@@ -27,6 +27,7 @@ float4 plog<float4>(const float4& a)
template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
double2 plog<double2>(const double2& a)
{
+ using ::log;
return make_double2(log(a.x), log(a.y));
}
@@ -39,6 +40,7 @@ float4 pexp<float4>(const float4& a)
template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
double2 pexp<double2>(const double2& a)
{
+ using ::exp;
return make_double2(exp(a.x), exp(a.y));
}
@@ -51,6 +53,7 @@ float4 psqrt<float4>(const float4& a)
template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
double2 psqrt<double2>(const double2& a)
{
+ using ::sqrt;
return make_double2(sqrt(a.x), sqrt(a.y));
}