aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2019-10-18 16:42:00 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2019-10-18 16:42:00 -0700
commit668ab3fc474e54c7919eda4fbaf11f3a99246494 (patch)
tree3f2b80538739d85ebae042b0f9cafe163d8287e1 /unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
parentdf0e8b81370f741c734e4f4187d029d6a8cb18f2 (diff)
Drop support for c++03 in Eigen tensor. Get rid of some code used to emulate c++11 functionality with older compilers.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h b/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
index 97ac96db1..11cec3d1c 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
@@ -76,13 +76,8 @@ struct ExpressionHasTensorBroadcastingOp<
* Default strategy: the expression is evaluated sequentially with a single cpu
* thread, without vectorization and block evaluation.
*/
-#if EIGEN_HAS_CXX11
template <typename Expression, typename Device, bool Vectorizable,
TiledEvaluation Tiling>
-#else
- template <typename Expression, typename Device, bool Vectorizable,
- TiledEvaluation::TiledEvaluation Tiling>
-#endif
class TensorExecutor {
public:
typedef typename Expression::Index StorageIndex;