TensorAssign.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_CXX11_TENSOR_TENSOR_ASSIGN_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_ASSIGN_H
12 
13 namespace Eigen {
14 
23 namespace internal {
24 template<typename LhsXprType, typename RhsXprType>
25 struct traits<TensorAssignOp<LhsXprType, RhsXprType> >
26 {
27  typedef typename LhsXprType::Scalar Scalar;
31  typedef typename LhsXprType::Nested LhsNested;
32  typedef typename RhsXprType::Nested RhsNested;
35  static const std::size_t NumDimensions = internal::traits<LhsXprType>::NumDimensions;
36  static const int Layout = internal::traits<LhsXprType>::Layout;
37 
38  enum {
39  Flags = 0
40  };
41 };
42 
43 template<typename LhsXprType, typename RhsXprType>
44 struct eval<TensorAssignOp<LhsXprType, RhsXprType>, Eigen::Dense>
45 {
47 };
48 
49 template<typename LhsXprType, typename RhsXprType>
50 struct nested<TensorAssignOp<LhsXprType, RhsXprType>, 1, typename eval<TensorAssignOp<LhsXprType, RhsXprType> >::type>
51 {
53 };
54 
55 } // end namespace internal
56 
57 
58 
59 template<typename LhsXprType, typename RhsXprType>
60 class TensorAssignOp : public TensorBase<TensorAssignOp<LhsXprType, RhsXprType> >
61 {
62  public:
65  typedef typename LhsXprType::CoeffReturnType CoeffReturnType;
69 
70  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorAssignOp(LhsXprType& lhs, const RhsXprType& rhs)
71  : m_lhs_xpr(lhs), m_rhs_xpr(rhs) {}
72 
74  EIGEN_DEVICE_FUNC
77 
78  EIGEN_DEVICE_FUNC
80  rhsExpression() const { return m_rhs_xpr; }
81 
82  protected:
85 };
86 
87 
88 template<typename LeftArgType, typename RightArgType, typename Device>
89 struct TensorEvaluator<const TensorAssignOp<LeftArgType, RightArgType>, Device>
90 {
92  typedef typename XprType::Index Index;
93  typedef typename XprType::Scalar Scalar;
98 
99  enum {
104  };
105 
106  EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) :
107  m_leftImpl(op.lhsExpression(), device),
108  m_rightImpl(op.rhsExpression(), device)
109  {
110  EIGEN_STATIC_ASSERT((static_cast<int>(TensorEvaluator<LeftArgType, Device>::Layout) == static_cast<int>(TensorEvaluator<RightArgType, Device>::Layout)), YOU_MADE_A_PROGRAMMING_MISTAKE);
111  }
112 
113  EIGEN_DEVICE_FUNC const Dimensions& dimensions() const
114  {
115  // The dimensions of the lhs and the rhs tensors should be equal to prevent
116  // overflows and ensure the result is fully initialized.
117  // TODO: use left impl instead if right impl dimensions are known at compile time.
118  return m_rightImpl.dimensions();
119  }
120 
122  eigen_assert(dimensions_match(m_leftImpl.dimensions(), m_rightImpl.dimensions()));
123  m_leftImpl.evalSubExprsIfNeeded(NULL);
124  // If the lhs provides raw access to its storage area (i.e. if m_leftImpl.data() returns a non
125  // null value), attempt to evaluate the rhs expression in place. Returns true iff in place
126  // evaluation isn't supported and the caller still needs to manually assign the values generated
127  // by the rhs to the lhs.
128  return m_rightImpl.evalSubExprsIfNeeded(m_leftImpl.data());
129  }
130  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
131  m_leftImpl.cleanup();
132  m_rightImpl.cleanup();
133  }
134 
135  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalScalar(Index i) {
136  m_leftImpl.coeffRef(i) = m_rightImpl.coeff(i);
137  }
138  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalPacket(Index i) {
141  m_leftImpl.template writePacket<LhsStoreMode>(i, m_rightImpl.template packet<RhsLoadMode>(i));
142  }
143  EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index index) const
144  {
145  return m_leftImpl.coeff(index);
146  }
147  template<int LoadMode>
148  EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const
149  {
150  return m_leftImpl.template packet<LoadMode>(index);
151  }
152 
153  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost
154  costPerCoeff(bool vectorized) const {
155  // We assume that evalPacket or evalScalar is called to perform the
156  // assignment and account for the cost of the write here, but reduce left
157  // cost by one load because we are using m_leftImpl.coeffRef.
158  TensorOpCost left = m_leftImpl.costPerCoeff(vectorized);
159  return m_rightImpl.costPerCoeff(vectorized) +
160  TensorOpCost(
161  numext::maxi(0.0, left.bytes_loaded() - sizeof(CoeffReturnType)),
162  left.bytes_stored(), left.compute_cycles()) +
163  TensorOpCost(0, sizeof(CoeffReturnType), 0, vectorized, PacketSize);
164  }
165 
167  const TensorEvaluator<LeftArgType, Device>& left_impl() const { return m_leftImpl; }
169  const TensorEvaluator<RightArgType, Device>& right_impl() const { return m_rightImpl; }
170 
171  EIGEN_DEVICE_FUNC CoeffReturnType* data() const { return m_leftImpl.data(); }
172 
173  private:
176 };
177 
178 }
179 
180 
181 #endif // EIGEN_CXX11_TENSOR_TENSOR_ASSIGN_H
Eigen::TensorOpCost::compute_cycles
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double compute_cycles() const
Definition: TensorCostModel.h:80
Eigen::TensorEvaluator::device
const Device & device() const
required by sycl in order to construct sycl buffer from raw pointer
Definition: TensorEvaluator.h:114
Eigen
Definition: common.h:73
Eigen::TensorAssignOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorAssign.h:64
Eigen::TensorAssignOp::rhsExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename RhsXprType::Nested >::type & rhsExpression() const
Definition: TensorAssign.h:80
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::XprType
TensorAssignOp< LeftArgType, RightArgType > XprType
Definition: TensorAssign.h:91
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::coeff
EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index index) const
Definition: TensorAssign.h:143
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::Unaligned
@ Unaligned
Definition: Constants.h:228
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *)
Definition: TensorAssign.h:121
Eigen::internal::nested< TensorAssignOp< LhsXprType, RhsXprType >, 1, typename eval< TensorAssignOp< LhsXprType, RhsXprType > >::type >::type
TensorAssignOp< LhsXprType, RhsXprType > type
Definition: TensorAssign.h:52
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::TensorAssignOp::lhsExpression
EIGEN_DEVICE_FUNC internal::remove_all< typename LhsXprType::Nested >::type & lhsExpression() const
Definition: TensorAssign.h:76
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::TensorAssignOp::Nested
Eigen::internal::nested< TensorAssignOp >::type Nested
Definition: TensorAssign.h:66
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::data
EIGEN_DEVICE_FUNC CoeffReturnType * data() const
Definition: TensorAssign.h:171
Eigen::TensorOpCost::bytes_loaded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double bytes_loaded() const
Definition: TensorCostModel.h:74
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::_RhsNested
remove_reference< RhsNested >::type _RhsNested
Definition: TensorAssign.h:34
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::TensorAssignOp::m_lhs_xpr
internal::remove_all< typename LhsXprType::Nested >::type & m_lhs_xpr
Definition: TensorAssign.h:83
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::TensorAssignOp::m_rhs_xpr
const internal::remove_all< typename RhsXprType::Nested >::type & m_rhs_xpr
Definition: TensorAssign.h:84
Eigen::TensorAssignOp::TensorAssignOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorAssignOp(LhsXprType &lhs, const RhsXprType &rhs)
Definition: TensorAssign.h:70
Eigen::TensorOpCost::bytes_stored
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double bytes_stored() const
Definition: TensorCostModel.h:77
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorAssign.h:154
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::_LhsNested
remove_reference< LhsNested >::type _LhsNested
Definition: TensorAssign.h:33
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorAssign.h:130
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::evalScalar
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalScalar(Index i)
Definition: TensorAssign.h:135
Eigen::internal::unpacket_traits
Definition: XprHelper.h:158
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::packet
EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const
Definition: TensorAssign.h:148
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
Eigen::TensorAssignOp::StorageKind
Eigen::internal::traits< TensorAssignOp >::StorageKind StorageKind
Definition: TensorAssign.h:67
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::TensorAssignOp::Index
Eigen::internal::traits< TensorAssignOp >::Index Index
Definition: TensorAssign.h:68
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::dimensions
const EIGEN_DEVICE_FUNC Dimensions & dimensions() const
Definition: TensorAssign.h:113
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::Scalar
LhsXprType::Scalar Scalar
Definition: TensorAssign.h:27
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::m_rightImpl
TensorEvaluator< RightArgType, Device > m_rightImpl
Definition: TensorAssign.h:175
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::dimensions_match
EIGEN_DEVICE_FUNC bool dimensions_match(Dims1 &dims1, Dims2 &dims2)
Definition: TensorDimensions.h:422
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::Index
XprType::Index Index
Definition: TensorAssign.h:92
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::StorageKind
traits< LhsXprType >::StorageKind StorageKind
Definition: TensorAssign.h:28
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorAssign.h:93
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::right_impl
const TensorEvaluator< RightArgType, Device > & right_impl() const
required by sycl in order to extract the accessor
Definition: TensorAssign.h:169
EIGEN_STATIC_ASSERT
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:124
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::Dimensions
TensorEvaluator< RightArgType, Device >::Dimensions Dimensions
Definition: TensorAssign.h:96
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::Index
promote_index_type< typename traits< LhsXprType >::Index, typename traits< RhsXprType >::Index >::type Index
Definition: TensorAssign.h:30
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::m_leftImpl
TensorEvaluator< LeftArgType, Device > m_leftImpl
Definition: TensorAssign.h:174
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::RhsNested
RhsXprType::Nested RhsNested
Definition: TensorAssign.h:32
Eigen::internal::eval< TensorAssignOp< LhsXprType, RhsXprType >, Eigen::Dense >::type
const typedef TensorAssignOp< LhsXprType, RhsXprType > & type
Definition: TensorAssign.h:46
internal
Definition: BandTriangularSolver.h:13
Eigen::numext::maxi
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE T maxi(const T &x, const T &y)
Definition: Eigen/src/Core/MathFunctions.h:825
Eigen::internal::traits< TensorAssignOp< LhsXprType, RhsXprType > >::LhsNested
LhsXprType::Nested LhsNested
Definition: TensorAssign.h:31
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorAssign.h:106
Eigen::internal::promote_index_type
Definition: XprHelper.h:97
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorAssign.h:95
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::evalPacket
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalPacket(Index i)
Definition: TensorAssign.h:138
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorAssignOp
Definition: TensorAssign.h:60
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::left_impl
const TensorEvaluator< LeftArgType, Device > & left_impl() const
required by sycl in order to extract the accessor
Definition: TensorAssign.h:167
Eigen::TensorEvaluator< const TensorAssignOp< LeftArgType, RightArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorAssign.h:94
Eigen::TensorAssignOp::CoeffReturnType
LhsXprType::CoeffReturnType CoeffReturnType
Definition: TensorAssign.h:65
Eigen::GenericNumTraits::Real
T Real
Definition: NumTraits.h:100
Eigen::Aligned
@ Aligned
Definition: Constants.h:235
Eigen::Dense
Definition: Constants.h:491
Eigen::TensorAssignOp::Scalar
Eigen::internal::traits< TensorAssignOp >::Scalar Scalar
Definition: TensorAssign.h:63


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:35