aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2019-12-03 16:39:05 -0800
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2019-12-03 16:39:05 -0800
commit8f4536e852a9fa6ec30a0c5a2d0f0904d9d8476f (patch)
treedfd3d77d19054984b20a6286db88aa2c53d594f8 /unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
parent4e696901f873a2347f76d931cf2f701e31e15d05 (diff)
Capture TensorMap by value inside tensor expression AST
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h')
-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> >
{