aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Rasmus Larsen <rmlarsen@google.com>2019-12-04 00:49:10 +0000
committerGravatar Rasmus Larsen <rmlarsen@google.com>2019-12-04 00:49:10 +0000
commita7c7d329d89e8484be58df6078a586c44523db37 (patch)
treeb2f20b48f5e9810cdcb88d5d94bafe7767a658b3
parentcacf433975fa8f9fc01e926cdd001c5dab31210e (diff)
parent8f4536e852a9fa6ec30a0c5a2d0f0904d9d8476f (diff)
Merged in ezhulenev/eigen-01 (pull request PR-769)
Capture TensorMap by value inside tensor expression AST
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h b/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
index 4aec83cff..4f7fd340e 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
@@ -201,18 +201,6 @@ struct nested<const TensorFixedSize<Scalar_, Dimensions, Options, IndexType_> >
};
-template <typename PlainObjectType, int Options, template <class> class MakePointer>
-struct nested<TensorMap<PlainObjectType, Options, MakePointer> >
-{
- typedef const TensorMap<PlainObjectType, Options, MakePointer>EIGEN_DEVICE_REF type;
-};
-
-template <typename PlainObjectType, int Options, template <class> class MakePointer>
-struct nested<const TensorMap<PlainObjectType, Options, MakePointer> >
-{
- typedef const TensorMap<PlainObjectType, Options, MakePointer>EIGEN_DEVICE_REF type;
-};
-
template <typename PlainObjectType>
struct nested<TensorRef<PlainObjectType> >
{