aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Assign_MKL.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-23 14:04:50 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-23 14:04:50 +0200
commitd9778f3391749c1d04eda0f7bfb8c3653ed3387a (patch)
treee8565fbf326b9e9bb0fccf952fc4c0ca90297780 /Eigen/src/Core/Assign_MKL.h
parent5f9630d7f971643886f8026ab055dd5e3153432a (diff)
Enable VML's pow wrapper on windows (the previous wrapper used the Fortran interface)
Diffstat (limited to 'Eigen/src/Core/Assign_MKL.h')
-rwxr-xr-xEigen/src/Core/Assign_MKL.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Eigen/src/Core/Assign_MKL.h b/Eigen/src/Core/Assign_MKL.h
index 9b21113ee..897187a30 100755
--- a/Eigen/src/Core/Assign_MKL.h
+++ b/Eigen/src/Core/Assign_MKL.h
@@ -137,8 +137,6 @@ EIGEN_MKL_VML_DECLARE_UNARY_CALLS_REAL(round, Round, _)
EIGEN_MKL_VML_DECLARE_UNARY_CALLS_REAL(floor, Floor, _)
EIGEN_MKL_VML_DECLARE_UNARY_CALLS_REAL(ceil, Ceil, _)
-#ifndef _WIN32
-
#define EIGEN_MKL_VML_DECLARE_POW_CALL(EIGENOP, VMLOP, EIGENTYPE, VMLTYPE, VMLMODE) \
template< typename DstXprType, typename SrcXprNested> \
struct Assignment<DstXprType, CwiseUnaryOp<scalar_##EIGENOP##_op<EIGENTYPE>, SrcXprNested>, assign_op<EIGENTYPE>, \
@@ -168,7 +166,6 @@ EIGEN_MKL_VML_DECLARE_POW_CALL(pow, vmsPowx, float, float, LA)
EIGEN_MKL_VML_DECLARE_POW_CALL(pow, vmdPowx, double, double, LA)
EIGEN_MKL_VML_DECLARE_POW_CALL(pow, vmcPowx, scomplex, MKL_Complex8, LA)
EIGEN_MKL_VML_DECLARE_POW_CALL(pow, vmzPowx, dcomplex, MKL_Complex16, LA)
-#endif
} // end namespace internal