TensorConversion.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) 2015 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_CONVERSION_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_CONVERSION_H
12 
13 namespace Eigen {
14 
22 namespace internal {
23 template<typename TargetType, typename XprType>
24 struct traits<TensorConversionOp<TargetType, XprType> >
25 {
26  // Type promotion to handle the case where the types of the lhs and the rhs are different.
27  typedef TargetType Scalar;
29  typedef typename traits<XprType>::Index Index;
30  typedef typename XprType::Nested Nested;
32  static const int NumDimensions = traits<XprType>::NumDimensions;
33  static const int Layout = traits<XprType>::Layout;
34  enum { Flags = 0 };
35 };
36 
37 template<typename TargetType, typename XprType>
38 struct eval<TensorConversionOp<TargetType, XprType>, Eigen::Dense>
39 {
41 };
42 
43 template<typename TargetType, typename XprType>
44 struct nested<TensorConversionOp<TargetType, XprType>, 1, typename eval<TensorConversionOp<TargetType, XprType> >::type>
45 {
47 };
48 
49 } // end namespace internal
50 
51 
52 template <typename TensorEvaluator, typename SrcPacket, typename TgtPacket, int SrcCoeffRatio, int TgtCoeffRatio>
54  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
56  : m_impl(impl) {}
57 
58  template<int LoadMode, typename Index>
59  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const {
60  return internal::pcast<SrcPacket, TgtPacket>(m_impl.template packet<LoadMode>(index));
61  }
62 
63  private:
65 };
66 
67 
68 template <typename TensorEvaluator, typename SrcPacket, typename TgtPacket>
69 struct PacketConverter<TensorEvaluator, SrcPacket, TgtPacket, 2, 1> {
70  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
72  : m_impl(impl) {}
73 
74  template<int LoadMode, typename Index>
75  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const {
76  const int SrcPacketSize = internal::unpacket_traits<SrcPacket>::size;
77 
78  SrcPacket src1 = m_impl.template packet<LoadMode>(index);
79  SrcPacket src2 = m_impl.template packet<LoadMode>(index + SrcPacketSize);
80  TgtPacket result = internal::pcast<SrcPacket, TgtPacket>(src1, src2);
81  return result;
82  }
83 
84  private:
86 };
87 
88 template <typename TensorEvaluator, typename SrcPacket, typename TgtPacket>
89 struct PacketConverter<TensorEvaluator, SrcPacket, TgtPacket, 4, 1> {
90  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
92  : m_impl(impl) {}
93 
94  template<int LoadMode, typename Index>
95  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const {
96  const int SrcPacketSize = internal::unpacket_traits<SrcPacket>::size;
97 
98  SrcPacket src1 = m_impl.template packet<LoadMode>(index);
99  SrcPacket src2 = m_impl.template packet<LoadMode>(index + SrcPacketSize);
100  SrcPacket src3 = m_impl.template packet<LoadMode>(index + 2 * SrcPacketSize);
101  SrcPacket src4 = m_impl.template packet<LoadMode>(index + 3 * SrcPacketSize);
102  TgtPacket result = internal::pcast<SrcPacket, TgtPacket>(src1, src2, src3, src4);
103  return result;
104  }
105 
106  private:
108 };
109 
110 template <typename TensorEvaluator, typename SrcPacket, typename TgtPacket>
111 struct PacketConverter<TensorEvaluator, SrcPacket, TgtPacket, 1, 2> {
112  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
114  : m_impl(impl), m_maxIndex(impl.dimensions().TotalSize()) {}
115 
116  template<int LoadMode, typename Index>
117  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const {
118  const int SrcPacketSize = internal::unpacket_traits<SrcPacket>::size;
119  // Only call m_impl.packet() when we have direct access to the underlying data. This
120  // ensures that we don't compute the subexpression twice. We may however load some
121  // coefficients twice, but in practice this doesn't negatively impact performance.
122  if (m_impl.data() && (index + SrcPacketSize < m_maxIndex)) {
123  // Force unaligned memory loads since we can't ensure alignment anymore
124  return internal::pcast<SrcPacket, TgtPacket>(m_impl.template packet<Unaligned>(index));
125  } else {
126  const int TgtPacketSize = internal::unpacket_traits<TgtPacket>::size;
127  typedef typename internal::unpacket_traits<SrcPacket>::type SrcType;
128  typedef typename internal::unpacket_traits<TgtPacket>::type TgtType;
130  EIGEN_ALIGN_MAX typename internal::unpacket_traits<TgtPacket>::type values[TgtPacketSize];
131  for (int i = 0; i < TgtPacketSize; ++i) {
132  values[i] = converter(m_impl.coeff(index+i));
133  }
134  TgtPacket rslt = internal::pload<TgtPacket>(values);
135  return rslt;
136  }
137  }
138 
139  private:
142 };
143 
144 template<typename TargetType, typename XprType>
145 class TensorConversionOp : public TensorBase<TensorConversionOp<TargetType, XprType>, ReadOnlyAccessors>
146 {
147  public:
154 
155  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorConversionOp(const XprType& xpr)
156  : m_xpr(xpr) {}
157 
158  EIGEN_DEVICE_FUNC
160  expression() const { return m_xpr; }
161 
162  protected:
163  typename XprType::Nested m_xpr;
164 };
165 
166 template <bool SameType, typename Eval, typename Scalar> struct ConversionSubExprEval {
167  static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool run(Eval& impl, Scalar*) {
168  impl.evalSubExprsIfNeeded(NULL);
169  return true;
170  }
171 };
172 
173 template <typename Eval, typename Scalar> struct ConversionSubExprEval<true, Eval, Scalar> {
174  static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool run(Eval& impl, Scalar* data) {
175  return impl.evalSubExprsIfNeeded(data);
176  }
177 };
178 
179 
180 // Eval as rvalue
181 template<typename TargetType, typename ArgType, typename Device>
182 struct TensorEvaluator<const TensorConversionOp<TargetType, ArgType>, Device>
183 {
185  typedef typename XprType::Index Index;
187  typedef TargetType Scalar;
188  typedef TargetType CoeffReturnType;
193 
194  enum {
195  IsAligned = false,
196  PacketAccess = true,
198  RawAccess = false
199  };
200 
201  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
202  : m_impl(op.expression(), device)
203  {
204  }
205 
206  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_impl.dimensions(); }
207 
209  {
211  }
212 
213  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
214  {
215  m_impl.cleanup();
216  }
217 
218  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
219  {
221  return converter(m_impl.coeff(index));
222  }
223 
224  template<int LoadMode>
225  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
226  {
227  const bool Vectorizable = TensorEvaluator<ArgType, Device>::PacketAccess &
230  }
231 
232  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost
233  costPerCoeff(bool vectorized) const {
234  const double cast_cost = TensorOpCost::CastCost<SrcType, TargetType>();
235  if (vectorized) {
236  const double SrcCoeffRatio =
238  const double TgtCoeffRatio =
240  return m_impl.costPerCoeff(vectorized) * (SrcCoeffRatio / PacketSize) +
241  TensorOpCost(0, 0, TgtCoeffRatio * (cast_cost / PacketSize));
242  } else {
243  return m_impl.costPerCoeff(vectorized) + TensorOpCost(0, 0, cast_cost);
244  }
245  }
246 
247  EIGEN_DEVICE_FUNC Scalar* data() const { return NULL; }
248 
249  protected:
250  template <int LoadMode, bool ActuallyVectorize>
251  struct PacketConv {
252  static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType run(const TensorEvaluator<ArgType, Device>& impl, Index index) {
255  for (int i = 0; i < PacketSize; ++i) {
256  values[i] = converter(impl.coeff(index+i));
257  }
258  PacketReturnType rslt = internal::pload<PacketReturnType>(values);
259  return rslt;
260  }
261  };
262 
263  template <int LoadMode>
264  struct PacketConv<LoadMode, true> {
265  static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType run(const TensorEvaluator<ArgType, Device>& impl, Index index) {
269  SrcCoeffRatio, TgtCoeffRatio> converter(impl);
270  return converter.template packet<LoadMode>(index);
271  }
272  };
273 
275 };
276 
277 } // end namespace Eigen
278 
279 #endif // EIGEN_CXX11_TENSOR_TENSOR_CONVERSION_H
Eigen::internal::traits< TensorConversionOp< TargetType, XprType > >::StorageKind
traits< XprType >::StorageKind StorageKind
Definition: TensorConversion.h:28
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::PacketSourceType
PacketType< SrcType, Device >::type PacketSourceType
Definition: TensorConversion.h:191
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 TensorConversionOp< TargetType, ArgType >, Device >::PacketConv::run
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType run(const TensorEvaluator< ArgType, Device > &impl, Index index)
Definition: TensorConversion.h:252
Eigen::internal::traits< TensorConversionOp< TargetType, XprType > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorConversion.h:31
Eigen
Definition: common.h:73
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::Scalar
TargetType Scalar
Definition: TensorConversion.h:187
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::CoeffReturnType
TargetType CoeffReturnType
Definition: TensorConversion.h:188
Eigen::PacketConverter::PacketConverter
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketConverter(const TensorEvaluator &impl)
Definition: TensorConversion.h:55
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 2, 1 >::PacketConverter
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketConverter(const TensorEvaluator &impl)
Definition: TensorConversion.h:71
Eigen::internal::traits< TensorConversionOp< TargetType, XprType > >::Nested
XprType::Nested Nested
Definition: TensorConversion.h:30
Eigen::internal::remove_all
Definition: Meta.h:78
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 4, 1 >::m_impl
const TensorEvaluator & m_impl
Definition: TensorConversion.h:107
Eigen::TensorConversionOp::TensorConversionOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorConversionOp(const XprType &xpr)
Definition: TensorConversion.h:155
Eigen::TensorConversionOp::CoeffReturnType
Scalar CoeffReturnType
Definition: TensorConversion.h:152
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 1, 2 >::m_impl
const TensorEvaluator & m_impl
Definition: TensorConversion.h:140
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorConversion.h:213
Eigen::internal::scalar_cast_op
Definition: UnaryFunctors.h:152
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::Index
XprType::Index Index
Definition: TensorConversion.h:185
Eigen::TensorEvaluator::Index
Derived::Index Index
Definition: TensorEvaluator.h:30
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 2, 1 >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const
Definition: TensorConversion.h:75
Eigen::TensorEvaluator::m_impl
const Derived & m_impl
Definition: TensorEvaluator.h:120
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::PacketConverter::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const
Definition: TensorConversion.h:59
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Eigen::internal::traits< TensorConversionOp< TargetType, XprType > >::Index
traits< XprType >::Index Index
Definition: TensorConversion.h:29
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorConversion.h:201
Eigen::TensorEvaluator::data
EIGEN_DEVICE_FUNC internal::traits< Derived >::template MakePointer< Scalar >::Type data() const
Definition: TensorEvaluator.h:111
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::TensorConversionOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorConversion.h:160
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorConversion.h:233
Eigen::PacketConverter::m_impl
const TensorEvaluator & m_impl
Definition: TensorConversion.h:64
EIGEN_ALIGN_MAX
#define EIGEN_ALIGN_MAX
Definition: Macros.h:757
Eigen::internal::eval< TensorConversionOp< TargetType, XprType >, Eigen::Dense >::type
const typedef TensorConversionOp< TargetType, XprType > & type
Definition: TensorConversion.h:40
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::XprType
TensorConversionOp< TargetType, ArgType > XprType
Definition: TensorConversion.h:184
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::ConversionSubExprEval< true, Eval, Scalar >::run
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool run(Eval &impl, Scalar *data)
Definition: TensorConversion.h:174
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::m_impl
TensorEvaluator< ArgType, Device > m_impl
Definition: TensorConversion.h:274
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *data)
Definition: TensorConversion.h:208
Eigen::TensorConversionOp::StorageKind
internal::traits< TensorConversionOp >::StorageKind StorageKind
Definition: TensorConversion.h:149
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 4, 1 >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const
Definition: TensorConversion.h:95
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 1, 2 >::PacketConverter
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketConverter(const TensorEvaluator &impl)
Definition: TensorConversion.h:113
Eigen::internal::unpacket_traits
Definition: XprHelper.h:158
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::nested< TensorConversionOp< TargetType, XprType >, 1, typename eval< TensorConversionOp< TargetType, XprType > >::type >::type
TensorConversionOp< TargetType, XprType > type
Definition: TensorConversion.h:46
Eigen::internal::Packet
Definition: ZVector/PacketMath.h:48
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 1, 2 >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TgtPacket packet(Index index) const
Definition: TensorConversion.h:117
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::TensorConversionOp
Tensor conversion class. This class makes it possible to vectorize type casting operations when the n...
Definition: TensorConversion.h:145
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 4, 1 >::PacketConverter
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketConverter(const TensorEvaluator &impl)
Definition: TensorConversion.h:91
Eigen::ConversionSubExprEval
Definition: TensorConversion.h:166
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::TensorConversionOp::Scalar
internal::traits< TensorConversionOp >::Scalar Scalar
Definition: TensorConversion.h:148
Eigen::internal::type_casting_traits
Definition: GenericPacketMath.h:122
Eigen::TensorSycl::run
void run(Expr &expr, Dev &dev)
Definition: TensorSyclRun.h:47
Eigen::ConversionSubExprEval::run
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool run(Eval &impl, Scalar *)
Definition: TensorConversion.h:167
Eigen::TensorEvaluator::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorEvaluator.h:66
Eigen::TensorConversionOp::Index
internal::traits< TensorConversionOp >::Index Index
Definition: TensorConversion.h:150
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::data
EIGEN_DEVICE_FUNC Scalar * data() const
Definition: TensorConversion.h:247
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
Definition: TensorConversion.h:225
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::Dimensions
TensorEvaluator< ArgType, Device >::Dimensions Dimensions
Definition: TensorConversion.h:186
Eigen::TensorConversionOp::m_xpr
XprType::Nested m_xpr
Definition: TensorConversion.h:163
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::PacketConv< LoadMode, true >::run
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType run(const TensorEvaluator< ArgType, Device > &impl, Index index)
Definition: TensorConversion.h:265
internal
Definition: BandTriangularSolver.h:13
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::SrcType
internal::remove_all< typename internal::traits< ArgType >::Scalar >::type SrcType
Definition: TensorConversion.h:189
Eigen::TensorConversionOp::Nested
internal::nested< TensorConversionOp >::type Nested
Definition: TensorConversion.h:151
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 1, 2 >::m_maxIndex
const TensorEvaluator::Index m_maxIndex
Definition: TensorConversion.h:141
Eigen::internal::traits< TensorConversionOp< TargetType, XprType > >::Scalar
TargetType Scalar
Definition: TensorConversion.h:27
Eigen::TensorConversionOp::RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: TensorConversion.h:153
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorEvaluator::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorEvaluator.h:33
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorConversion.h:190
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::PacketConverter
Definition: TensorConversion.h:53
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:150
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorConversion.h:206
Eigen::TensorEvaluator< const TensorConversionOp< TargetType, ArgType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorConversion.h:218
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::Dense
Definition: Constants.h:491
Eigen::PacketConverter< TensorEvaluator, SrcPacket, TgtPacket, 2, 1 >::m_impl
const TensorEvaluator & m_impl
Definition: TensorConversion.h:85


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