47template<
int _OuterStr
ideAtCompileTime,
int _InnerStr
ideAtCompileTime>
53 InnerStrideAtCompileTime = _InnerStrideAtCompileTime,
54 OuterStrideAtCompileTime = _OuterStrideAtCompileTime
60 : m_outer(OuterStrideAtCompileTime), m_inner(InnerStrideAtCompileTime)
64 eigen_assert(InnerStrideAtCompileTime !=
Dynamic && OuterStrideAtCompileTime !=
Dynamic);
70 : m_outer(outerStride), m_inner(innerStride)
77 : m_outer(other.
outer()), m_inner(other.
inner())
81 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR
84 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR
88 internal::variable_if_dynamic<Index, OuterStrideAtCompileTime> m_outer;
89 internal::variable_if_dynamic<Index, InnerStrideAtCompileTime> m_inner;
Convenience specialization of Stride to specify only an inner stride See class Map for some examples.
Definition: Stride.h:96
Convenience specialization of Stride to specify only an outer stride See class Map for some examples.
Definition: Stride.h:107
Holds strides information for Map.
Definition: Stride.h:49
EIGEN_CONSTEXPR Index outer() const
Definition: Stride.h:82
Stride(Index outerStride, Index innerStride)
Definition: Stride.h:69
Eigen::Index Index
Definition: Stride.h:51
Stride(const Stride &other)
Definition: Stride.h:76
EIGEN_CONSTEXPR Index inner() const
Definition: Stride.h:85
Stride()
Definition: Stride.h:59
Namespace containing all symbols from the Eigen library.
Definition: Core:141
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74
const int Dynamic
Definition: Constants.h:22