Go to the documentation of this file.
11 #ifndef EIGEN_MAPBASE_H
12 #define EIGEN_MAPBASE_H
14 #define EIGEN_STATIC_ASSERT_INDEX_BASED_ACCESS(Derived) \
15 EIGEN_STATIC_ASSERT((int(internal::evaluator<Derived>::Flags) & LinearAccessBit) || Derived::IsVectorAtCompileTime, \
16 YOU_ARE_TRYING_TO_USE_AN_INDEX_BASED_ACCESSOR_ON_AN_EXPRESSION_THAT_DOES_NOT_SUPPORT_THAT)
47 SizeAtCompileTime = Base::SizeAtCompileTime
64 using Base::MaxRowsAtCompileTime;
65 using Base::MaxColsAtCompileTime;
66 using Base::MaxSizeAtCompileTime;
67 using Base::IsVectorAtCompileTime;
69 using Base::IsRowMajor;
76 using Base::lazyAssign;
79 using Base::innerStride;
80 using Base::outerStride;
81 using Base::rowStride;
82 using Base::colStride;
85 using Base::operator=;
90 EIGEN_DEVICE_FUNC
inline Index rows()
const {
return m_rows.value(); }
92 EIGEN_DEVICE_FUNC
inline Index cols()
const {
return m_cols.value(); }
100 EIGEN_DEVICE_FUNC
inline const Scalar*
data()
const {
return m_data; }
106 return m_data[colId * colStride() + rowId * rowStride()];
114 return m_data[index * innerStride()];
121 return this->m_data[colId * colStride() + rowId * rowStride()];
129 return this->m_data[index * innerStride()];
133 template<
int LoadMode>
136 return internal::ploadt<PacketScalar, LoadMode>
137 (m_data + (colId * colStride() + rowId * rowStride()));
141 template<
int LoadMode>
145 return internal::ploadt<PacketScalar, LoadMode>(m_data + index * innerStride());
150 explicit inline MapBase(
PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
153 checkSanity<Derived>();
160 m_rows(RowsAtCompileTime ==
Dynamic ? vecSize :
Index(RowsAtCompileTime)),
161 m_cols(ColsAtCompileTime ==
Dynamic ? vecSize :
Index(ColsAtCompileTime))
165 eigen_assert(dataPtr == 0 || SizeAtCompileTime ==
Dynamic || SizeAtCompileTime == vecSize);
166 checkSanity<Derived>();
172 : m_data(dataPtr), m_rows(rows), m_cols(cols)
175 || ( rows >= 0 && (RowsAtCompileTime ==
Dynamic || RowsAtCompileTime == rows)
176 && cols >= 0 && (ColsAtCompileTime ==
Dynamic || ColsAtCompileTime == cols)));
177 checkSanity<Derived>();
180 #ifdef EIGEN_MAPBASE_PLUGIN
181 #include EIGEN_MAPBASE_PLUGIN
190 #if EIGEN_MAX_ALIGN_BYTES>0
192 const Index minInnerStride = InnerStrideAtCompileTime ==
Dynamic ? 1 :
Index(InnerStrideAtCompileTime);
220 :
public MapBase<Derived, ReadOnlyAccessors>
237 using Base::coeffRef;
239 using Base::innerStride;
240 using Base::outerStride;
241 using Base::rowStride;
242 using Base::colStride;
258 return this->m_data[
col * colStride() +
row * rowStride()];
265 return this->m_data[index * innerStride()];
268 template<
int StoreMode>
271 internal::pstoret<Scalar, PacketScalar, StoreMode>
272 (this->m_data + (
col * colStride() +
row * rowStride()), val);
275 template<
int StoreMode>
279 internal::pstoret<Scalar, PacketScalar, StoreMode>
280 (this->m_data + index * innerStride(), val);
290 ReadOnlyMapBase::Base::operator=(other);
296 using ReadOnlyMapBase::Base::operator=;
299 #undef EIGEN_STATIC_ASSERT_INDEX_BASED_ACCESS
303 #endif // EIGEN_MAPBASE_H
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr)
internal::dense_xpr_base< Derived >::type Base
Base::PacketScalar PacketScalar
NumTraits< Scalar >::Real RealScalar
EIGEN_DEVICE_FUNC void checkSanity(typename internal::enable_if< internal::traits< T >::Alignment==0, void * >::type=0) const
const EIGEN_DEVICE_FUNC Scalar & coeff(Index index) const
EIGEN_DEVICE_FUNC ScalarWithConstIfNotLvalue * data()
const internal::variable_if_dynamic< Index, ColsAtCompileTime > m_cols
EIGEN_DEVICE_FUNC ColXpr col(Index i)
This is the const version of col().
PacketScalar packet(Index rowId, Index colId) const
EIGEN_DEVICE_FUNC Derived & operator=(const MapBase &other)
MapBase< Derived, ReadOnlyAccessors > ReadOnlyMapBase
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr)
#define EIGEN_STATIC_ASSERT_VECTOR_ONLY(TYPE)
const internal::variable_if_dynamic< Index, RowsAtCompileTime > m_rows
#define EIGEN_ONLY_USED_FOR_DEBUG(x)
const EIGEN_DEVICE_FUNC Scalar & coeff(Index rowId, Index colId) const
internal::traits< Derived >::StorageKind StorageKind
#define EIGEN_STATIC_ASSERT_INDEX_BASED_ACCESS(Derived)
EIGEN_DEVICE_FUNC Index rows() const
internal::conditional< bool(internal::is_lvalue< Derived >::value), Scalar *, const Scalar * >::type PointerType
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr, Index rows, Index cols)
EIGEN_DEVICE_FUNC RowXpr row(Index i)
This is the const version of row(). */.
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr, Index rows, Index cols)
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index index) const
Base::PointerType PointerType
void writePacket(Index index, const PacketScalar &val)
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index rowId, Index colId) const
EIGEN_DEVICE_FUNC void checkSanity(typename internal::enable_if<(internal::traits< T >::Alignment >0), void * >::type=0) const
EIGEN_DEVICE_FUNC Index cols() const
Base class for dense Map and Block expression with direct access.
const EIGEN_DEVICE_FUNC Scalar * data() const
internal::packet_traits< Scalar >::type PacketScalar
Base::StorageIndex StorageIndex
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
internal::traits< Derived >::Scalar Scalar
PacketScalar packet(Index index) const
const EIGEN_DEVICE_FUNC Scalar * data() const
#define EIGEN_STATIC_ASSERT_FIXED_SIZE(TYPE)
void writePacket(Index row, Index col, const PacketScalar &val)
EIGEN_DEVICE_FUNC ScalarWithConstIfNotLvalue & coeffRef(Index row, Index col)
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr, Index vecSize)
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
EIGEN_DEVICE_FUNC ScalarWithConstIfNotLvalue & coeffRef(Index index)
internal::conditional< internal::is_lvalue< Derived >::value, Scalar, const Scalar >::type ScalarWithConstIfNotLvalue
EIGEN_DEVICE_FUNC MapBase(PointerType dataPtr, Index vecSize)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Base::CoeffReturnType CoeffReturnType
MapBase< Derived, ReadOnlyAccessors > Base
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:54