TensorEvalTo.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_EVAL_TO_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_EVAL_TO_H
12 
13 namespace Eigen {
14 
22 namespace internal {
23 template<typename XprType, template <class> class MakePointer_>
24 struct traits<TensorEvalToOp<XprType, MakePointer_> >
25 {
26  // Type promotion to handle the case where the types of the lhs and the rhs are different.
27  typedef typename XprType::Scalar Scalar;
29  typedef typename XprTraits::StorageKind StorageKind;
30  typedef typename XprTraits::Index Index;
31  typedef typename XprType::Nested Nested;
33  static const int NumDimensions = XprTraits::NumDimensions;
34  static const int Layout = XprTraits::Layout;
35 
36  enum {
37  Flags = 0
38  };
39  template <class T>
40  struct MakePointer {
41  // Intermediate typedef to workaround MSVC issue.
42  typedef MakePointer_<T> MakePointerT;
43  typedef typename MakePointerT::Type Type;
44  };
45 };
46 
47 template<typename XprType, template <class> class MakePointer_>
48 struct eval<TensorEvalToOp<XprType, MakePointer_>, Eigen::Dense>
49 {
51 };
52 
53 template<typename XprType, template <class> class MakePointer_>
54 struct nested<TensorEvalToOp<XprType, MakePointer_>, 1, typename eval<TensorEvalToOp<XprType, MakePointer_> >::type>
55 {
57 };
58 
59 } // end namespace internal
60 
61 
62 
63 
64 template<typename XprType, template <class> class MakePointer_>
65 class TensorEvalToOp : public TensorBase<TensorEvalToOp<XprType, MakePointer_>, ReadOnlyAccessors>
66 {
67  public:
75 
76  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvalToOp(PointerType buffer, const XprType& expr)
77  : m_xpr(expr), m_buffer(buffer) {}
78 
79  EIGEN_DEVICE_FUNC
81  expression() const { return m_xpr; }
82 
83  EIGEN_DEVICE_FUNC PointerType buffer() const { return m_buffer; }
84 
85  protected:
86  typename XprType::Nested m_xpr;
88 };
89 
90 
91 
92 template<typename ArgType, typename Device, template <class> class MakePointer_>
93 struct TensorEvaluator<const TensorEvalToOp<ArgType, MakePointer_>, Device>
94 {
96  typedef typename ArgType::Scalar Scalar;
98  typedef typename XprType::Index Index;
102 
103  enum {
107  CoordAccess = false, // to be implemented
108  RawAccess = true
109  };
110 
111  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
112  : m_impl(op.expression(), device), m_device(device),
113  m_buffer(op.buffer()), m_op(op), m_expression(op.expression())
114  { }
115 
116  // Used for accessor extraction in SYCL Managed TensorMap:
117  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const XprType& op() const {
118  return m_op;
119  }
120 
121  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ~TensorEvaluator() {
122  }
123 
125  EIGEN_DEVICE_FUNC const Dimensions& dimensions() const { return m_impl.dimensions(); }
126 
127  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(DevicePointer scalar) {
128  EIGEN_UNUSED_VARIABLE(scalar);
129  eigen_assert(scalar == NULL);
130  return m_impl.evalSubExprsIfNeeded(m_buffer);
131  }
132 
133  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalScalar(Index i) {
134  m_buffer[i] = m_impl.coeff(i);
135  }
136  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalPacket(Index i) {
137  internal::pstoret<CoeffReturnType, PacketReturnType, Aligned>(m_buffer + i, m_impl.template packet<TensorEvaluator<ArgType, Device>::IsAligned ? Aligned : Unaligned>(i));
138  }
139 
140  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
141  m_impl.cleanup();
142  }
143 
144  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
145  {
146  return m_buffer[index];
147  }
148 
149  template<int LoadMode>
150  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
151  {
152  return internal::ploadt<PacketReturnType, LoadMode>(m_buffer + index);
153  }
154 
155  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const {
156  // We assume that evalPacket or evalScalar is called to perform the
157  // assignment and account for the cost of the write here.
158  return m_impl.costPerCoeff(vectorized) +
159  TensorOpCost(0, sizeof(CoeffReturnType), 0, vectorized, PacketSize);
160  }
161 
162  EIGEN_DEVICE_FUNC DevicePointer data() const { return m_buffer; }
163  ArgType expression() const { return m_expression; }
164 
166  const TensorEvaluator<ArgType, Device>& impl() const { return m_impl; }
168  const Device& device() const{return m_device;}
169 
170  private:
172  const Device& m_device;
174  const XprType& m_op;
175  const ArgType m_expression;
176 };
177 
178 
179 } // end namespace Eigen
180 
181 #endif // EIGEN_CXX11_TENSOR_TENSOR_EVAL_TO_H
Eigen::TensorEvalToOp::buffer
EIGEN_DEVICE_FUNC PointerType buffer() const
Definition: TensorEvalTo.h:83
Eigen::TensorEvaluator::device
const Device & device() const
required by sycl in order to construct sycl buffer from raw pointer
Definition: TensorEvaluator.h:114
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::~TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ~TensorEvaluator()
Definition: TensorEvalTo.h:121
Eigen
Definition: common.h:73
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::DevicePointer
internal::traits< const TensorEvalToOp< ArgType, MakePointer_ > >::template MakePointer< CoeffReturnType >::Type DevicePointer
Definition: TensorEvalTo.h:124
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::m_impl
TensorEvaluator< ArgType, Device > m_impl
Definition: TensorEvalTo.h:171
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::StorageKind
XprTraits::StorageKind StorageKind
Definition: TensorEvalTo.h:29
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::m_buffer
DevicePointer m_buffer
Definition: TensorEvalTo.h:173
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::expression
ArgType expression() const
Definition: TensorEvalTo.h:163
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorEvalTo.h:155
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorEvalTo.h:144
Eigen::TensorEvaluator::m_device
const Device & m_device
Definition: TensorEvaluator.h:119
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::Unaligned
@ Unaligned
Definition: Constants.h:228
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::XprType
TensorEvalToOp< ArgType, MakePointer_ > XprType
Definition: TensorEvalTo.h:95
Eigen::TensorEvalToOp::m_xpr
XprType::Nested m_xpr
Definition: TensorEvalTo.h:86
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::TensorEvaluator::m_impl
const Derived & m_impl
Definition: TensorEvaluator.h:120
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::XprTraits
traits< XprType > XprTraits
Definition: TensorEvalTo.h:28
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::TensorEvalToOp::Index
Eigen::internal::traits< TensorEvalToOp >::Index Index
Definition: TensorEvalTo.h:74
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::data
EIGEN_DEVICE_FUNC DevicePointer data() const
Definition: TensorEvalTo.h:162
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::Index
XprTraits::Index Index
Definition: TensorEvalTo.h:30
Eigen::internal::eval< TensorEvalToOp< XprType, MakePointer_ >, Eigen::Dense >::type
const typedef TensorEvalToOp< XprType, MakePointer_ > & type
Definition: TensorEvalTo.h:50
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::m_op
const XprType & m_op
Definition: TensorEvalTo.h:174
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::TensorEvaluator::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
Definition: TensorEvaluator.h:77
Eigen::TensorEvalToOp::TensorEvalToOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvalToOp(PointerType buffer, const XprType &expr)
Definition: TensorEvalTo.h:76
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorEvalTo.h:140
Eigen::internal::nested< TensorEvalToOp< XprType, MakePointer_ >, 1, typename eval< TensorEvalToOp< XprType, MakePointer_ > >::type >::type
TensorEvalToOp< XprType, MakePointer_ > type
Definition: TensorEvalTo.h:56
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
EIGEN_UNUSED_VARIABLE
#define EIGEN_UNUSED_VARIABLE(var)
Definition: Macros.h:618
Eigen::TensorEvalToOp::PointerType
MakePointer_< CoeffReturnType >::Type PointerType
Definition: TensorEvalTo.h:71
Eigen::MakePointer
Definition: TensorForwardDeclarations.h:21
Eigen::TensorEvalToOp::StorageKind
Eigen::internal::traits< TensorEvalToOp >::StorageKind StorageKind
Definition: TensorEvalTo.h:73
Eigen::internal::unpacket_traits
Definition: XprHelper.h:158
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::impl
const TensorEvaluator< ArgType, Device > & impl() const
required by sycl in order to extract the accessor
Definition: TensorEvalTo.h:166
Eigen::Architecture::Type
Type
Definition: Constants.h:461
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::TensorEvalToOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorEvalTo.h:69
Eigen::TensorEvalToOp::Scalar
Eigen::internal::traits< TensorEvalToOp >::Scalar Scalar
Definition: TensorEvalTo.h:68
Eigen::TensorEvalToOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorEvalTo.h:81
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::MakePointer::Type
MakePointerT::Type Type
Definition: TensorEvalTo.h:43
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorEvalTo.h:111
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::evalScalar
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalScalar(Index i)
Definition: TensorEvalTo.h:133
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::TensorEvalToOp::Nested
Eigen::internal::nested< TensorEvalToOp >::type Nested
Definition: TensorEvalTo.h:72
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::m_device
const Device & m_device
Definition: TensorEvalTo.h:172
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(DevicePointer scalar)
Definition: TensorEvalTo.h:127
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::Index
XprType::Index Index
Definition: TensorEvalTo.h:98
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorEvalTo.h:100
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
Definition: TensorEvalTo.h:150
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::m_expression
const ArgType m_expression
Definition: TensorEvalTo.h:175
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::Nested
XprType::Nested Nested
Definition: TensorEvalTo.h:31
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::Scalar
ArgType::Scalar Scalar
Definition: TensorEvalTo.h:96
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::TensorEvalToOp::m_buffer
PointerType m_buffer
Definition: TensorEvalTo.h:87
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::op
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE XprType & op() const
Definition: TensorEvalTo.h:117
internal
Definition: BandTriangularSolver.h:13
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::device
const Device & device() const
added for sycl in order to construct the buffer from the sycl device
Definition: TensorEvalTo.h:168
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::dimensions
const EIGEN_DEVICE_FUNC Dimensions & dimensions() const
Definition: TensorEvalTo.h:125
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::MakePointer::MakePointerT
MakePointer_< T > MakePointerT
Definition: TensorEvalTo.h:42
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorEvalTo.h:32
Eigen::TensorEvalToOp::CoeffReturnType
internal::remove_const< typename XprType::CoeffReturnType >::type CoeffReturnType
Definition: TensorEvalTo.h:70
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::CoeffReturnType
internal::remove_const< typename XprType::CoeffReturnType >::type CoeffReturnType
Definition: TensorEvalTo.h:99
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::Dimensions
TensorEvaluator< ArgType, Device >::Dimensions Dimensions
Definition: TensorEvalTo.h:97
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::TensorEvaluator< const TensorEvalToOp< ArgType, MakePointer_ >, Device >::evalPacket
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalPacket(Index i)
Definition: TensorEvalTo.h:136
Eigen::internal::traits< TensorEvalToOp< XprType, MakePointer_ > >::Scalar
XprType::Scalar Scalar
Definition: TensorEvalTo.h:27
Eigen::GenericNumTraits::Real
T Real
Definition: NumTraits.h:100
Eigen::TensorEvalToOp
Definition: TensorEvalTo.h:65
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::Aligned
@ Aligned
Definition: Constants.h:235
Eigen::Dense
Definition: Constants.h:491


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