Go to the documentation of this file.
10 #ifndef EIGEN_CXX11_TENSOR_TENSOR_REF_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_REF_H
17 template <
typename Dimensions,
typename Scalar>
23 EIGEN_DEVICE_FUNC
virtual const Dimensions&
dimensions()
const = 0;
24 EIGEN_DEVICE_FUNC
virtual const Scalar*
data()
const = 0;
42 template <
typename Dimensions,
typename Expr,
typename Device>
56 EIGEN_DEVICE_FUNC
virtual const Dimensions&
dimensions()
const {
67 eigen_assert(
false &&
"can't reference the coefficient of a rvalue");
77 template <
typename Dimensions,
typename Expr,
typename Device>
93 template <
typename Dimensions,
typename Expr,
typename Device>
95 TensorLazyEvaluatorWritable<Dimensions, Expr, Device>,
96 TensorLazyEvaluatorReadOnly<Dimensions, const Expr, Device> >::type {
119 template<
typename PlainObjectType>
class TensorRef :
public TensorBase<TensorRef<PlainObjectType> >
123 typedef typename PlainObjectType::Base
Base;
147 template <
typename Expression>
152 template <
typename Expression>
170 if (
this != &other) {
196 #if EIGEN_HAS_VARIADIC_TEMPLATES
197 template<
typename... IndexTypes> EIGEN_DEVICE_FUNC
200 const std::size_t num_indices = (
sizeof...(otherIndices) + 1);
202 return coeff(indices);
204 template<
typename... IndexTypes> EIGEN_DEVICE_FUNC
207 const std::size_t num_indices = (
sizeof...(otherIndices) + 1);
208 const array<Index, num_indices> indices{{firstIndex, otherIndices...}};
219 return coeff(indices);
228 return coeff(indices);
238 return coeff(indices);
249 return coeff(indices);
291 template <std::
size_t NumIndices> EIGEN_DEVICE_FUNC
296 if (PlainObjectType::Options &
RowMajor) {
299 index = index * dims[i] + indices[i];
304 index = index * dims[i] + indices[i];
309 template <std::
size_t NumIndices> EIGEN_DEVICE_FUNC
314 if (PlainObjectType::Options &
RowMajor) {
317 index = index * dims[i] + indices[i];
322 index = index * dims[i] + indices[i];
355 template<
typename Derived,
typename Device>
385 return m_ref.coeff(index);
389 return m_ref.coeffRef(index);
392 EIGEN_DEVICE_FUNC
Scalar*
data()
const {
return m_ref.data(); }
400 template<
typename Derived,
typename Device>
421 return this->m_ref.coeffRef(index);
429 #endif // EIGEN_CXX11_TENSOR_TENSOR_REF_H
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
PacketType< CoeffReturnType, Device >::type PacketReturnType
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar operator()(Index i0, Index i1) const
virtual const EIGEN_DEVICE_FUNC Dimensions & dimensions() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index i0, Index i1, Index i2, Index i3, Index i4)
internal::conditional< bool(internal::is_lvalue< Expr >::value), TensorLazyEvaluatorWritable< Dimensions, Expr, Device >, TensorLazyEvaluatorReadOnly< Dimensions, const Expr, Device > >::type Base
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const TensorRef< Derived > &m, const Device &)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index i0, Index i1)
TensorLazyEvaluatorReadOnly(const Expr &expr, const Device &device)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index index)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *)
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
PacketType< CoeffReturnType, Device >::type PacketReturnType
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const
virtual const EIGEN_DEVICE_FUNC Dimensions & dimensions() const =0
internal::packet_traits< Scalar >::type type
EIGEN_DEVICE_FUNC internal::traits< Derived >::template MakePointer< Scalar >::Type data() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar operator()(Index i0, Index i1, Index i2, Index i3) const
EIGEN_STRONG_INLINE TensorRef()
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar * data() const
TensorRef< Derived > m_ref
virtual ~TensorLazyEvaluatorReadOnly()
TensorRef(const TensorRef &other)
EIGEN_STRONG_INLINE TensorRef(const Expression &expr)
virtual const EIGEN_DEVICE_FUNC Scalar coeff(DenseIndex index) const =0
virtual EIGEN_DEVICE_FUNC Scalar & coeffRef(DenseIndex index)
TensorLazyBaseEvaluator & operator=(const TensorLazyBaseEvaluator &other)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index index)
virtual ~TensorLazyEvaluator()
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index index)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
EIGEN_DEVICE_FUNC Scalar * data() const
virtual const EIGEN_DEVICE_FUNC Scalar * data() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index index)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(Index n) const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index size() const
internal::traits< PlainObjectType >::Scalar Scalar
Derived::Dimensions Dimensions
virtual EIGEN_DEVICE_FUNC Scalar & coeffRef(DenseIndex index)=0
internal::traits< PlainObjectType >::StorageKind StorageKind
TensorEvaluator< Expr, Device > m_impl
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & operator()(Index i0, Index i1, Index i2, Index i3)
Eigen::internal::nested< Self >::type Nested
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
TensorRef< PlainObjectType > Self
#define EIGEN_STRONG_INLINE
virtual const EIGEN_DEVICE_FUNC Scalar * data() const =0
virtual EIGEN_DEVICE_FUNC Scalar & coeffRef(DenseIndex)
Derived::Scalar CoeffReturnType
internal::TensorLazyBaseEvaluator< Dimensions, Scalar > * m_evaluator
TensorLazyEvaluatorWritable(const Expr &expr, const Device &device)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
TensorLazyEvaluatorReadOnly< Dimensions, Expr, Device > Base
virtual ~TensorLazyBaseEvaluator()
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar operator()(Index i0, Index i1, Index i2, Index i3, Index i4) const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index i0, Index i1, Index i2)
EIGEN_STRONG_INLINE void unrefEvaluator()
PointerType PointerArgType
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar coeff(const array< Index, NumIndices > &indices) const
Derived::Scalar CoeffReturnType
Derived::Dimensions Dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar coeff(Index index) const
NumTraits< Scalar >::Real RealScalar
internal::traits< PlainObjectType >::Index Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE DenseIndex
virtual const EIGEN_DEVICE_FUNC Scalar coeff(DenseIndex index) const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(TensorRef< Derived > &m, const Device &d)
virtual ~TensorLazyEvaluatorWritable()
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
A cost model used to limit the number of threads used for evaluating tensor expression.
TensorLazyEvaluator(const Expr &expr, const Device &device)
PlainObjectType::Base Base
static const Index NumIndices
EIGEN_STRONG_INLINE TensorRef & operator=(const Expression &expr)
TensorLazyBaseEvaluator()
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(const array< Index, NumIndices > &indices)
Base::CoeffReturnType CoeffReturnType
TensorEvaluator< const TensorRef< Derived >, Device > Base
TensorEvaluator< Expr, Device >::Scalar Scalar
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar operator()(Index i0, Index i1, Index i2) const
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar operator()(Index index) const
PlainObjectType::Dimensions Dimensions
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(CoeffReturnType *dest)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:01