Skip to content
Snippets Groups Projects
Commit a7c7d329 authored by Rasmus Larsen's avatar Rasmus Larsen
Browse files

Merged in ezhulenev/eigen-01 (pull request PR-769)

Capture TensorMap by value inside tensor expression AST
parents cacf4339 8f4536e8
Branches
Tags before-git-migration
No related merge requests found
...@@ -201,18 +201,6 @@ struct nested<const TensorFixedSize<Scalar_, Dimensions, Options, IndexType_> > ...@@ -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> template <typename PlainObjectType>
struct nested<TensorRef<PlainObjectType> > struct nested<TensorRef<PlainObjectType> >
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment