TensorCustomOp.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_CUSTOM_OP_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_CUSTOM_OP_H
12 
13 namespace Eigen {
14 
22 namespace internal {
23 template<typename CustomUnaryFunc, typename XprType>
24 struct traits<TensorCustomUnaryOp<CustomUnaryFunc, XprType> >
25 {
26  typedef typename XprType::Scalar Scalar;
27  typedef typename XprType::StorageKind StorageKind;
28  typedef typename XprType::Index Index;
29  typedef typename XprType::Nested Nested;
31  static const int NumDimensions = traits<XprType>::NumDimensions;
32  static const int Layout = traits<XprType>::Layout;
33 };
34 
35 template<typename CustomUnaryFunc, typename XprType>
36 struct eval<TensorCustomUnaryOp<CustomUnaryFunc, XprType>, Eigen::Dense>
37 {
39 };
40 
41 template<typename CustomUnaryFunc, typename XprType>
42 struct nested<TensorCustomUnaryOp<CustomUnaryFunc, XprType> >
43 {
45 };
46 
47 } // end namespace internal
48 
49 
50 
51 template<typename CustomUnaryFunc, typename XprType>
52 class TensorCustomUnaryOp : public TensorBase<TensorCustomUnaryOp<CustomUnaryFunc, XprType>, ReadOnlyAccessors>
53 {
54  public:
57  typedef typename XprType::CoeffReturnType CoeffReturnType;
61 
62  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCustomUnaryOp(const XprType& expr, const CustomUnaryFunc& func)
63  : m_expr(expr), m_func(func) {}
64 
65  EIGEN_DEVICE_FUNC
66  const CustomUnaryFunc& func() const { return m_func; }
67 
68  EIGEN_DEVICE_FUNC
70  expression() const { return m_expr; }
71 
72  protected:
73  typename XprType::Nested m_expr;
74  const CustomUnaryFunc m_func;
75 };
76 
77 
78 // Eval as rvalue
79 template<typename CustomUnaryFunc, typename XprType, typename Device>
80 struct TensorEvaluator<const TensorCustomUnaryOp<CustomUnaryFunc, XprType>, Device>
81 {
84  static const int NumDims = internal::traits<ArgType>::NumDimensions;
90 
91  enum {
92  IsAligned = false,
94  BlockAccess = false,
96  CoordAccess = false, // to be implemented
97  RawAccess = false
98  };
99 
100  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const ArgType& op, const Device& device)
101  : m_op(op), m_device(device), m_result(NULL)
102  {
103  m_dimensions = op.func().dimensions(op.expression());
104  }
105 
106  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; }
107 
109  if (data) {
110  evalTo(data);
111  return false;
112  } else {
113  m_result = static_cast<CoeffReturnType*>(
114  m_device.allocate(dimensions().TotalSize() * sizeof(Scalar)));
115  evalTo(m_result);
116  return true;
117  }
118  }
119 
120  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
121  if (m_result != NULL) {
122  m_device.deallocate(m_result);
123  m_result = NULL;
124  }
125  }
126 
127  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const {
128  return m_result[index];
129  }
130 
131  template<int LoadMode>
132  EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const {
133  return internal::ploadt<PacketReturnType, LoadMode>(m_result + index);
134  }
135 
136  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const {
137  // TODO(rmlarsen): Extend CustomOp API to return its cost estimate.
138  return TensorOpCost(sizeof(CoeffReturnType), 0, 0, vectorized, PacketSize);
139  }
140 
141  EIGEN_DEVICE_FUNC CoeffReturnType* data() const { return m_result; }
142 
143  protected:
144  EIGEN_DEVICE_FUNC void evalTo(Scalar* data) {
146  data, m_dimensions);
147  m_op.func().eval(m_op.expression(), result, m_device);
148  }
149 
151  const ArgType m_op;
152  const Device& m_device;
154 };
155 
156 
157 
165 namespace internal {
166 template<typename CustomBinaryFunc, typename LhsXprType, typename RhsXprType>
167 struct traits<TensorCustomBinaryOp<CustomBinaryFunc, LhsXprType, RhsXprType> >
168 {
169  typedef typename internal::promote_storage_type<typename LhsXprType::Scalar,
171  typedef typename internal::promote_storage_type<typename LhsXprType::CoeffReturnType,
172  typename RhsXprType::CoeffReturnType>::ret CoeffReturnType;
177  typedef typename LhsXprType::Nested LhsNested;
178  typedef typename RhsXprType::Nested RhsNested;
181  static const int NumDimensions = traits<LhsXprType>::NumDimensions;
182  static const int Layout = traits<LhsXprType>::Layout;
183 };
184 
185 template<typename CustomBinaryFunc, typename LhsXprType, typename RhsXprType>
186 struct eval<TensorCustomBinaryOp<CustomBinaryFunc, LhsXprType, RhsXprType>, Eigen::Dense>
187 {
189 };
190 
191 template<typename CustomBinaryFunc, typename LhsXprType, typename RhsXprType>
192 struct nested<TensorCustomBinaryOp<CustomBinaryFunc, LhsXprType, RhsXprType> >
193 {
195 };
196 
197 } // end namespace internal
198 
199 
200 
201 template<typename CustomBinaryFunc, typename LhsXprType, typename RhsXprType>
202 class TensorCustomBinaryOp : public TensorBase<TensorCustomBinaryOp<CustomBinaryFunc, LhsXprType, RhsXprType>, ReadOnlyAccessors>
203 {
204  public:
211 
212  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCustomBinaryOp(const LhsXprType& lhs, const RhsXprType& rhs, const CustomBinaryFunc& func)
213 
214  : m_lhs_xpr(lhs), m_rhs_xpr(rhs), m_func(func) {}
215 
216  EIGEN_DEVICE_FUNC
217  const CustomBinaryFunc& func() const { return m_func; }
218 
219  EIGEN_DEVICE_FUNC
221  lhsExpression() const { return m_lhs_xpr; }
222 
223  EIGEN_DEVICE_FUNC
225  rhsExpression() const { return m_rhs_xpr; }
226 
227  protected:
228  typename LhsXprType::Nested m_lhs_xpr;
229  typename RhsXprType::Nested m_rhs_xpr;
230  const CustomBinaryFunc m_func;
231 };
232 
233 
234 // Eval as rvalue
235 template<typename CustomBinaryFunc, typename LhsXprType, typename RhsXprType, typename Device>
236 struct TensorEvaluator<const TensorCustomBinaryOp<CustomBinaryFunc, LhsXprType, RhsXprType>, Device>
237 {
240  static const int NumDims = internal::traits<XprType>::NumDimensions;
242  typedef typename XprType::Scalar Scalar;
246 
247  enum {
248  IsAligned = false,
250  BlockAccess = false,
252  CoordAccess = false, // to be implemented
253  RawAccess = false
254  };
255 
256  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
257  : m_op(op), m_device(device), m_result(NULL)
258  {
259  m_dimensions = op.func().dimensions(op.lhsExpression(), op.rhsExpression());
260  }
261 
262  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; }
263 
265  if (data) {
266  evalTo(data);
267  return false;
268  } else {
269  m_result = static_cast<Scalar *>(m_device.allocate(dimensions().TotalSize() * sizeof(Scalar)));
270  evalTo(m_result);
271  return true;
272  }
273  }
274 
275  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
276  if (m_result != NULL) {
277  m_device.deallocate(m_result);
278  m_result = NULL;
279  }
280  }
281 
282  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const {
283  return m_result[index];
284  }
285 
286  template<int LoadMode>
287  EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const {
288  return internal::ploadt<PacketReturnType, LoadMode>(m_result + index);
289  }
290 
291  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const {
292  // TODO(rmlarsen): Extend CustomOp API to return its cost estimate.
293  return TensorOpCost(sizeof(CoeffReturnType), 0, 0, vectorized, PacketSize);
294  }
295 
296  EIGEN_DEVICE_FUNC CoeffReturnType* data() const { return m_result; }
297 
298  protected:
299  EIGEN_DEVICE_FUNC void evalTo(Scalar* data) {
300  TensorMap<Tensor<Scalar, NumDims, Layout> > result(data, m_dimensions);
301  m_op.func().eval(m_op.lhsExpression(), m_op.rhsExpression(), result, m_device);
302  }
303 
305  const XprType m_op;
306  const Device& m_device;
308 };
309 
310 
311 } // end namespace Eigen
312 
313 #endif // EIGEN_CXX11_TENSOR_TENSOR_CUSTOM_OP_H
Eigen::TensorEvaluator::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorEvaluator.h:54
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::packet
EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const
Definition: TensorCustomOp.h:287
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::ArgType
TensorCustomUnaryOp< CustomUnaryFunc, XprType > ArgType
Definition: TensorCustomOp.h:82
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::data
EIGEN_DEVICE_FUNC CoeffReturnType * data() const
Definition: TensorCustomOp.h:296
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::TensorCustomUnaryOp
Tensor custom class.
Definition: TensorCustomOp.h:52
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::CoeffReturnType
internal::promote_storage_type< typename LhsXprType::CoeffReturnType, typename RhsXprType::CoeffReturnType >::ret CoeffReturnType
Definition: TensorCustomOp.h:172
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorCustomOp.h:275
Eigen::TensorCustomUnaryOp::StorageKind
internal::traits< TensorCustomUnaryOp >::StorageKind StorageKind
Definition: TensorCustomOp.h:59
Eigen::TensorEvaluator::m_device
const Device & m_device
Definition: TensorEvaluator.h:119
Eigen::TensorCustomBinaryOp::m_rhs_xpr
RhsXprType::Nested m_rhs_xpr
Definition: TensorCustomOp.h:229
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::Index
promote_index_type< typename traits< LhsXprType >::Index, typename traits< RhsXprType >::Index >::type Index
Definition: TensorCustomOp.h:176
Eigen::TensorCustomBinaryOp::TensorCustomBinaryOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCustomBinaryOp(const LhsXprType &lhs, const RhsXprType &rhs, const CustomBinaryFunc &func)
Definition: TensorCustomOp.h:212
Eigen::internal::traits< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::StorageKind
XprType::StorageKind StorageKind
Definition: TensorCustomOp.h:27
Eigen::TensorCustomBinaryOp::Scalar
internal::traits< TensorCustomBinaryOp >::Scalar Scalar
Definition: TensorCustomOp.h:205
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::Scalar
internal::remove_const< typename ArgType::Scalar >::type Scalar
Definition: TensorCustomOp.h:86
Eigen::internal::packet_traits
Definition: GenericPacketMath.h:96
Eigen::internal::nested< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::type
TensorCustomUnaryOp< CustomUnaryFunc, XprType > type
Definition: TensorCustomOp.h:44
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::m_result
CoeffReturnType * m_result
Definition: TensorCustomOp.h:307
Eigen::internal::traits< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::Scalar
XprType::Scalar Scalar
Definition: TensorCustomOp.h:26
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::internal::nested< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::type
TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > type
Definition: TensorCustomOp.h:194
ret
DenseIndex ret
Definition: level1_impl.h:59
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorCustomOp.h:88
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::_LhsNested
remove_reference< LhsNested >::type _LhsNested
Definition: TensorCustomOp.h:179
Eigen::DSizes< Index, NumDims >
Eigen::TensorCustomBinaryOp::m_func
const CustomBinaryFunc m_func
Definition: TensorCustomOp.h:230
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::m_op
const ArgType m_op
Definition: TensorCustomOp.h:151
Eigen::TensorCustomUnaryOp::Index
internal::traits< TensorCustomUnaryOp >::Index Index
Definition: TensorCustomOp.h:60
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(CoeffReturnType *data)
Definition: TensorCustomOp.h:264
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::CoeffReturnType
internal::remove_const< typename XprType::CoeffReturnType >::type CoeffReturnType
Definition: TensorCustomOp.h:243
Eigen::TensorCustomBinaryOp::CoeffReturnType
internal::traits< TensorCustomBinaryOp >::CoeffReturnType CoeffReturnType
Definition: TensorCustomOp.h:207
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::evalTo
EIGEN_DEVICE_FUNC void evalTo(Scalar *data)
Definition: TensorCustomOp.h:144
Eigen::internal::traits< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::Nested
XprType::Nested Nested
Definition: TensorCustomOp.h:29
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::TensorCustomBinaryOp
Tensor custom class.
Definition: TensorCustomOp.h:202
Eigen::TensorCustomUnaryOp::Nested
internal::nested< TensorCustomUnaryOp >::type Nested
Definition: TensorCustomOp.h:58
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::Index
internal::traits< XprType >::Index Index
Definition: TensorCustomOp.h:239
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorCustomOp.h:106
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::_RhsNested
remove_reference< RhsNested >::type _RhsNested
Definition: TensorCustomOp.h:180
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorCustomOp.h:136
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::LhsNested
LhsXprType::Nested LhsNested
Definition: TensorCustomOp.h:177
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::data
EIGEN_DEVICE_FUNC CoeffReturnType * data() const
Definition: TensorCustomOp.h:141
Eigen::TensorCustomBinaryOp::rhsExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename RhsXprType::Nested >::type & rhsExpression() const
Definition: TensorCustomOp.h:225
Eigen::internal::unpacket_traits
Definition: XprHelper.h:158
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::Index
internal::traits< ArgType >::Index Index
Definition: TensorCustomOp.h:83
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(CoeffReturnType *data)
Definition: TensorCustomOp.h:108
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorCustomOp.h:242
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorCustomOp.h:282
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorCustomOp.h:244
Eigen::TensorMap
A tensor expression mapping an existing array of data.
Definition: TensorForwardDeclarations.h:25
Eigen::TensorCustomUnaryOp::func
const EIGEN_DEVICE_FUNC CustomUnaryFunc & func() const
Definition: TensorCustomOp.h:66
Eigen::TensorCustomUnaryOp::Scalar
internal::traits< TensorCustomUnaryOp >::Scalar Scalar
Definition: TensorCustomOp.h:55
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::StorageKind
promote_storage_type< typename traits< LhsXprType >::StorageKind, typename traits< RhsXprType >::StorageKind >::ret StorageKind
Definition: TensorCustomOp.h:174
Eigen::internal::promote_storage_type
Definition: XprHelper.h:498
Eigen::internal::traits< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorCustomOp.h:30
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorCustomOp.h:127
Eigen::TensorCustomUnaryOp::m_expr
XprType::Nested m_expr
Definition: TensorCustomOp.h:73
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorCustomOp.h:256
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::m_dimensions
Dimensions m_dimensions
Definition: TensorCustomOp.h:150
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::m_device
const Device & m_device
Definition: TensorCustomOp.h:152
Eigen::TensorCustomUnaryOp::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorCustomOp.h:57
Eigen::internal::remove_const::type
T type
Definition: Meta.h:73
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::m_op
const XprType m_op
Definition: TensorCustomOp.h:305
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::Dimensions
DSizes< Index, NumDims > Dimensions
Definition: TensorCustomOp.h:241
Eigen::internal::traits< TensorCustomUnaryOp< CustomUnaryFunc, XprType > >::Index
XprType::Index Index
Definition: TensorCustomOp.h:28
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::eval< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Eigen::Dense >::type
const typedef TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > & type
Definition: TensorCustomOp.h:188
Eigen::TensorCustomBinaryOp::lhsExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename LhsXprType::Nested >::type & lhsExpression() const
Definition: TensorCustomOp.h:221
Eigen::TensorCustomBinaryOp::Index
internal::traits< TensorCustomBinaryOp >::Index Index
Definition: TensorCustomOp.h:210
Eigen::TensorCustomBinaryOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorCustomOp.h:206
Eigen::TensorCustomUnaryOp::m_func
const CustomUnaryFunc m_func
Definition: TensorCustomOp.h:74
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorCustomOp.h:120
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::RhsNested
RhsXprType::Nested RhsNested
Definition: TensorCustomOp.h:178
Eigen::internal::traits< TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > >::Scalar
internal::promote_storage_type< typename LhsXprType::Scalar, typename RhsXprType::Scalar >::ret Scalar
Definition: TensorCustomOp.h:170
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::evalTo
EIGEN_DEVICE_FUNC void evalTo(Scalar *data)
Definition: TensorCustomOp.h:299
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::CoeffReturnType
internal::remove_const< typename XprType::CoeffReturnType >::type CoeffReturnType
Definition: TensorCustomOp.h:87
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::m_result
CoeffReturnType * m_result
Definition: TensorCustomOp.h:153
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::packet
EIGEN_DEVICE_FUNC PacketReturnType packet(Index index) const
Definition: TensorCustomOp.h:132
Eigen::TensorCustomBinaryOp::m_lhs_xpr
LhsXprType::Nested m_lhs_xpr
Definition: TensorCustomOp.h:228
Eigen::internal::eval< TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Eigen::Dense >::type
const typedef TensorCustomUnaryOp< CustomUnaryFunc, XprType > & type
Definition: TensorCustomOp.h:38
internal
Definition: BandTriangularSolver.h:13
Eigen::TensorCustomUnaryOp::TensorCustomUnaryOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCustomUnaryOp(const XprType &expr, const CustomUnaryFunc &func)
Definition: TensorCustomOp.h:62
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::m_device
const Device & m_device
Definition: TensorCustomOp.h:306
Eigen::internal::promote_index_type
Definition: XprHelper.h:97
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorCustomBinaryOp::func
const EIGEN_DEVICE_FUNC CustomBinaryFunc & func() const
Definition: TensorCustomOp.h:217
Eigen::TensorCustomBinaryOp::StorageKind
internal::traits< TensorCustomBinaryOp >::StorageKind StorageKind
Definition: TensorCustomOp.h:209
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorCustomOp.h:262
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::m_dimensions
Dimensions m_dimensions
Definition: TensorCustomOp.h:304
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorCustomOp.h:291
Eigen::TensorCustomBinaryOp::Nested
internal::nested< TensorCustomBinaryOp >::type Nested
Definition: TensorCustomOp.h:208
Eigen::TensorCustomUnaryOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorCustomOp.h:56
Eigen::GenericNumTraits::Real
T Real
Definition: NumTraits.h:100
Eigen::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::Dimensions
DSizes< Index, NumDims > Dimensions
Definition: TensorCustomOp.h:85
Eigen::TensorEvaluator< const TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType >, Device >::XprType
TensorCustomBinaryOp< CustomBinaryFunc, LhsXprType, RhsXprType > XprType
Definition: TensorCustomOp.h:238
Eigen::TensorCustomUnaryOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorCustomOp.h:70
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::TensorEvaluator< const TensorCustomUnaryOp< CustomUnaryFunc, XprType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const ArgType &op, const Device &device)
Definition: TensorCustomOp.h:100


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