TensorLayoutSwap.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_LAYOUT_SWAP_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_LAYOUT_SWAP_H
12 
13 namespace Eigen {
14 
37 namespace internal {
38 template<typename XprType>
39 struct traits<TensorLayoutSwapOp<XprType> > : public traits<XprType>
40 {
41  typedef typename XprType::Scalar Scalar;
43  typedef typename XprTraits::StorageKind StorageKind;
44  typedef typename XprTraits::Index Index;
45  typedef typename XprType::Nested Nested;
47  static const int NumDimensions = traits<XprType>::NumDimensions;
48  static const int Layout = (traits<XprType>::Layout == ColMajor) ? RowMajor : ColMajor;
49 };
50 
51 template<typename XprType>
52 struct eval<TensorLayoutSwapOp<XprType>, Eigen::Dense>
53 {
55 };
56 
57 template<typename XprType>
58 struct nested<TensorLayoutSwapOp<XprType>, 1, typename eval<TensorLayoutSwapOp<XprType> >::type>
59 {
61 };
62 
63 } // end namespace internal
64 
65 
66 
67 template<typename XprType>
68 class TensorLayoutSwapOp : public TensorBase<TensorLayoutSwapOp<XprType>, WriteAccessors>
69 {
70  public:
77 
78  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorLayoutSwapOp(const XprType& expr)
79  : m_xpr(expr) {}
80 
81  EIGEN_DEVICE_FUNC
83  expression() const { return m_xpr; }
84 
85  EIGEN_DEVICE_FUNC
87  {
89  Assign assign(*this, other);
91  return *this;
92  }
93 
94  template<typename OtherDerived>
95  EIGEN_DEVICE_FUNC
97  {
99  Assign assign(*this, other);
101  return *this;
102  }
103 
104  protected:
105  typename XprType::Nested m_xpr;
106 };
107 
108 
109 // Eval as rvalue
110 template<typename ArgType, typename Device>
111 struct TensorEvaluator<const TensorLayoutSwapOp<ArgType>, Device>
112 {
114  typedef typename XprType::Index Index;
117 
118  enum {
121  Layout = (static_cast<int>(TensorEvaluator<ArgType, Device>::Layout) == static_cast<int>(ColMajor)) ? RowMajor : ColMajor,
122  CoordAccess = false, // to be implemented
124  };
125 
126  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
127  : m_impl(op.expression(), device)
128  {
129  for(int i = 0; i < NumDims; ++i) {
130  m_dimensions[i] = m_impl.dimensions()[NumDims-1-i];
131  }
132  }
133 
134  typedef typename XprType::Scalar Scalar;
137 
138  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; }
139 
141  return m_impl.evalSubExprsIfNeeded(data);
142  }
143  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
144  m_impl.cleanup();
145  }
146 
147  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
148  {
149  return m_impl.coeff(index);
150  }
151 
152  template<int LoadMode>
153  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
154  {
155  return m_impl.template packet<LoadMode>(index);
156  }
157 
158  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const {
159  return m_impl.costPerCoeff(vectorized);
160  }
161 
162  EIGEN_DEVICE_FUNC Scalar* data() const { return m_impl.data(); }
163 
164  const TensorEvaluator<ArgType, Device>& impl() const { return m_impl; }
165 
166  protected:
169 };
170 
171 
172 // Eval as lvalue
173 template<typename ArgType, typename Device>
174  struct TensorEvaluator<TensorLayoutSwapOp<ArgType>, Device>
175  : public TensorEvaluator<const TensorLayoutSwapOp<ArgType>, Device>
176 {
179 
180  enum {
183  Layout = (static_cast<int>(TensorEvaluator<ArgType, Device>::Layout) == static_cast<int>(ColMajor)) ? RowMajor : ColMajor,
184  CoordAccess = false // to be implemented
185  };
186 
187  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
188  : Base(op, device)
189  { }
190 
191  typedef typename XprType::Index Index;
192  typedef typename XprType::Scalar Scalar;
195 
197  {
198  return this->m_impl.coeffRef(index);
199  }
200  template <int StoreMode> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
201  void writePacket(Index index, const PacketReturnType& x)
202  {
203  this->m_impl.template writePacket<StoreMode>(index, x);
204  }
205 };
206 
207 } // end namespace Eigen
208 
209 #endif // EIGEN_CXX11_TENSOR_TENSOR_LAYOUT_SWAP_H
Eigen::TensorLayoutSwapOp::operator=
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorLayoutSwapOp & operator=(const TensorLayoutSwapOp &other)
Definition: TensorLayoutSwap.h:86
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::XprType
TensorLayoutSwapOp< ArgType > XprType
Definition: TensorLayoutSwap.h:113
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::Nested
XprType::Nested Nested
Definition: TensorLayoutSwap.h:45
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::Base
TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device > Base
Definition: TensorLayoutSwap.h:177
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 TensorLayoutSwapOp< ArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(CoeffReturnType *data)
Definition: TensorLayoutSwap.h:140
Eigen
Definition: common.h:73
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
Definition: TensorLayoutSwap.h:153
Eigen::TensorLayoutSwapOp::TensorLayoutSwapOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorLayoutSwapOp(const XprType &expr)
Definition: TensorLayoutSwap.h:78
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::Scalar
XprType::Scalar Scalar
Definition: TensorLayoutSwap.h:41
Eigen::TensorLayoutSwapOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorLayoutSwap.h:72
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorLayoutSwap.h:147
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::impl
const TensorEvaluator< ArgType, Device > & impl() const
Definition: TensorLayoutSwap.h:164
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorLayoutSwap.h:143
Eigen::internal::nested< TensorLayoutSwapOp< XprType >, 1, typename eval< TensorLayoutSwapOp< XprType > >::type >::type
TensorLayoutSwapOp< XprType > type
Definition: TensorLayoutSwap.h:60
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::m_impl
TensorEvaluator< ArgType, Device > m_impl
Definition: TensorLayoutSwap.h:167
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorLayoutSwap.h:194
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorLayoutSwap.h:134
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::m_dimensions
Dimensions m_dimensions
Definition: TensorLayoutSwap.h:168
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::internal::remove_all::type
T type
Definition: Meta.h:78
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::RowMajor
@ RowMajor
Definition: Constants.h:322
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorLayoutSwap.h:136
Eigen::DSizes< Index, NumDims >
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >
Definition: TensorLayoutSwap.h:111
Eigen::DefaultDevice
Definition: TensorDeviceDefault.h:17
Eigen::TensorLayoutSwapOp::StorageKind
Eigen::internal::traits< TensorLayoutSwapOp >::StorageKind StorageKind
Definition: TensorLayoutSwap.h:75
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::writePacket
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void writePacket(Index index, const PacketReturnType &x)
Definition: TensorLayoutSwap.h:201
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorLayoutSwap.h:46
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::XprTraits
traits< XprType > XprTraits
Definition: TensorLayoutSwap.h:42
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
x
Scalar * x
Definition: level1_cplx_impl.h:89
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::StorageKind
XprTraits::StorageKind StorageKind
Definition: TensorLayoutSwap.h:43
Eigen::TensorLayoutSwapOp::m_xpr
XprType::Nested m_xpr
Definition: TensorLayoutSwap.h:105
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorLayoutSwap.h:138
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::XprType
TensorLayoutSwapOp< ArgType > XprType
Definition: TensorLayoutSwap.h:178
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorLayoutSwap.h:193
Eigen::internal::array_size
Definition: EmulateArray.h:203
Eigen::TensorLayoutSwapOp::Nested
Eigen::internal::nested< TensorLayoutSwapOp >::type Nested
Definition: TensorLayoutSwap.h:74
Eigen::internal::traits< TensorLayoutSwapOp< XprType > >::Index
XprTraits::Index Index
Definition: TensorLayoutSwap.h:44
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorLayoutSwap.h:158
Eigen::TensorLayoutSwapOp
Definition: TensorForwardDeclarations.h:50
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::coeffRef
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType & coeffRef(Index index)
Definition: TensorLayoutSwap.h:196
Eigen::internal::TensorExecutor::run
static EIGEN_DEVICE_FUNC void run(const Expression &expr, const Device &device=Device())
Definition: TensorExecutor.h:32
Eigen::TensorLayoutSwapOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorLayoutSwap.h:83
Eigen::TensorLayoutSwapOp::CoeffReturnType
internal::remove_const< typename XprType::CoeffReturnType >::type CoeffReturnType
Definition: TensorLayoutSwap.h:73
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::Index
XprType::Index Index
Definition: TensorLayoutSwap.h:114
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorLayoutSwap.h:187
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorLayoutSwap.h:135
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
internal
Definition: BandTriangularSolver.h:13
Eigen::internal::eval< TensorLayoutSwapOp< XprType >, Eigen::Dense >::type
const typedef TensorLayoutSwapOp< XprType > & type
Definition: TensorLayoutSwap.h:54
Eigen::ColMajor
@ ColMajor
Definition: Constants.h:320
Eigen::TensorLayoutSwapOp::Scalar
Eigen::internal::traits< TensorLayoutSwapOp >::Scalar Scalar
Definition: TensorLayoutSwap.h:71
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorAssignOp
Definition: TensorAssign.h:60
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorLayoutSwap.h:126
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorLayoutSwap.h:192
Eigen::TensorEvaluator< TensorLayoutSwapOp< ArgType >, Device >::Index
XprType::Index Index
Definition: TensorLayoutSwap.h:191
Eigen::TensorLayoutSwapOp::Index
Eigen::internal::traits< TensorLayoutSwapOp >::Index Index
Definition: TensorLayoutSwap.h:76
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::data
EIGEN_DEVICE_FUNC Scalar * data() const
Definition: TensorLayoutSwap.h:162
Eigen::GenericNumTraits::Real
T Real
Definition: NumTraits.h:100
Eigen::TensorEvaluator< const TensorLayoutSwapOp< ArgType >, Device >::Dimensions
DSizes< Index, NumDims > Dimensions
Definition: TensorLayoutSwap.h:116
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


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