TensorArgMax.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 Eugene Brevdo <ebrevdo@gmail.com>
5 // Benoit Steiner <benoit.steiner.goog@gmail.com>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 #ifndef EIGEN_CXX11_TENSOR_TENSOR_ARG_MAX_H
12 #define EIGEN_CXX11_TENSOR_TENSOR_ARG_MAX_H
13 
14 namespace Eigen {
15 namespace internal {
16 
24 template<typename XprType>
25 struct traits<TensorIndexTupleOp<XprType> > : public traits<XprType>
26 {
28  typedef typename XprTraits::StorageKind StorageKind;
29  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 
37 template<typename XprType>
38 struct eval<TensorIndexTupleOp<XprType>, Eigen::Dense>
39 {
41 };
42 
43 template<typename XprType>
44 struct nested<TensorIndexTupleOp<XprType>, 1,
45  typename eval<TensorIndexTupleOp<XprType> >::type>
46 {
48 };
49 
50 } // end namespace internal
51 
52 template<typename XprType>
53 class TensorIndexTupleOp : public TensorBase<TensorIndexTupleOp<XprType>, ReadOnlyAccessors>
54 {
55  public:
62 
63  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorIndexTupleOp(const XprType& expr)
64  : m_xpr(expr) {}
65 
66  EIGEN_DEVICE_FUNC
68  expression() const { return m_xpr; }
69 
70  protected:
71  typename XprType::Nested m_xpr;
72 };
73 
74 // Eval as rvalue
75 template<typename ArgType, typename Device>
76 struct TensorEvaluator<const TensorIndexTupleOp<ArgType>, Device>
77 {
79  typedef typename XprType::Index Index;
80  typedef typename XprType::Scalar Scalar;
82 
84  static const int NumDims = internal::array_size<Dimensions>::value;
85 
86  enum {
87  IsAligned = /*TensorEvaluator<ArgType, Device>::IsAligned*/ false,
88  PacketAccess = /*TensorEvaluator<ArgType, Device>::PacketAccess*/ false,
89  BlockAccess = false,
91  CoordAccess = false, // to be implemented
92  RawAccess = false
93  };
94 
95  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
96  : m_impl(op.expression(), device) { }
97 
98  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const {
99  return m_impl.dimensions();
100  }
101 
102  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar* /*data*/) {
103  m_impl.evalSubExprsIfNeeded(NULL);
104  return true;
105  }
106  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
107  m_impl.cleanup();
108  }
109 
110  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
111  {
112  return CoeffReturnType(index, m_impl.coeff(index));
113  }
114 
115  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost
116  costPerCoeff(bool vectorized) const {
117  return m_impl.costPerCoeff(vectorized) + TensorOpCost(0, 0, 1);
118  }
119 
120  EIGEN_DEVICE_FUNC Scalar* data() const { return NULL; }
121 
122  protected:
124 };
125 
126 namespace internal {
127 
134 template<typename ReduceOp, typename Dims, typename XprType>
135 struct traits<TensorTupleReducerOp<ReduceOp, Dims, XprType> > : public traits<XprType>
136 {
138  typedef typename XprTraits::StorageKind StorageKind;
139  typedef typename XprTraits::Index Index;
140  typedef Index Scalar;
141  typedef typename XprType::Nested Nested;
143  static const int NumDimensions = XprTraits::NumDimensions - array_size<Dims>::value;
144  static const int Layout = XprTraits::Layout;
145 };
146 
147 template<typename ReduceOp, typename Dims, typename XprType>
148 struct eval<TensorTupleReducerOp<ReduceOp, Dims, XprType>, Eigen::Dense>
149 {
151 };
152 
153 template<typename ReduceOp, typename Dims, typename XprType>
154 struct nested<TensorTupleReducerOp<ReduceOp, Dims, XprType>, 1,
155  typename eval<TensorTupleReducerOp<ReduceOp, Dims, XprType> >::type>
156 {
158 };
159 
160 } // end namespace internal
161 
162 template<typename ReduceOp, typename Dims, typename XprType>
163 class TensorTupleReducerOp : public TensorBase<TensorTupleReducerOp<ReduceOp, Dims, XprType>, ReadOnlyAccessors>
164 {
165  public:
172 
173  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorTupleReducerOp(const XprType& expr,
174  const ReduceOp& reduce_op,
175  const int return_dim,
176  const Dims& reduce_dims)
178 
179  EIGEN_DEVICE_FUNC
181  expression() const { return m_xpr; }
182 
183  EIGEN_DEVICE_FUNC
184  const ReduceOp& reduce_op() const { return m_reduce_op; }
185 
186  EIGEN_DEVICE_FUNC
187  const Dims& reduce_dims() const { return m_reduce_dims; }
188 
189  EIGEN_DEVICE_FUNC
190  int return_dim() const { return m_return_dim; }
191 
192  protected:
193  typename XprType::Nested m_xpr;
194  const ReduceOp m_reduce_op;
195  const int m_return_dim;
196  const Dims m_reduce_dims;
197 };
198 
199 // Eval as rvalue
200 template<typename ReduceOp, typename Dims, typename ArgType, typename Device>
201 struct TensorEvaluator<const TensorTupleReducerOp<ReduceOp, Dims, ArgType>, Device>
202 {
204  typedef typename XprType::Index Index;
205  typedef typename XprType::Scalar Scalar;
212 
213  enum {
214  IsAligned = /*TensorEvaluator<ArgType, Device>::IsAligned*/ false,
215  PacketAccess = /*TensorEvaluator<ArgType, Device>::PacketAccess*/ false,
216  BlockAccess = false,
218  CoordAccess = false, // to be implemented
219  RawAccess = false
220  };
221 
222  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
223  : m_orig_impl(op.expression(), device),
224  m_impl(op.expression().index_tuples().reduce(op.reduce_dims(), op.reduce_op()), device),
225  m_return_dim(op.return_dim()) {
226 
227  gen_strides(m_orig_impl.dimensions(), m_strides);
228  if (Layout == static_cast<int>(ColMajor)) {
229  const Index total_size = internal::array_prod(m_orig_impl.dimensions());
230  m_stride_mod = (m_return_dim < NumDims - 1) ? m_strides[m_return_dim + 1] : total_size;
231  } else {
232  const Index total_size = internal::array_prod(m_orig_impl.dimensions());
233  m_stride_mod = (m_return_dim > 0) ? m_strides[m_return_dim - 1] : total_size;
234  }
235  m_stride_div = m_strides[m_return_dim];
236  }
237 
238  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const {
239  return m_impl.dimensions();
240  }
241 
242  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar* /*data*/) {
243  m_impl.evalSubExprsIfNeeded(NULL);
244  return true;
245  }
246  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup() {
247  m_impl.cleanup();
248  }
249 
250  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const {
251  const TupleType v = m_impl.coeff(index);
252  return (m_return_dim < 0) ? v.first : (v.first % m_stride_mod) / m_stride_div;
253  }
254 
255  EIGEN_DEVICE_FUNC Scalar* data() const { return NULL; }
256 
257  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost
258  costPerCoeff(bool vectorized) const {
259  const double compute_cost = 1.0 +
260  (m_return_dim < 0 ? 0.0 : (TensorOpCost::ModCost<Index>() + TensorOpCost::DivCost<Index>()));
261  return m_orig_impl.costPerCoeff(vectorized) +
262  m_impl.costPerCoeff(vectorized) + TensorOpCost(0, 0, compute_cost);
263  }
264 
265  private:
266  EIGEN_DEVICE_FUNC void gen_strides(const InputDimensions& dims, StrideDims& strides) {
267  if (m_return_dim < 0) {
268  return; // Won't be using the strides.
269  }
270  eigen_assert(m_return_dim < NumDims &&
271  "Asking to convert index to a dimension outside of the rank");
272 
273  // Calculate m_stride_div and m_stride_mod, which are used to
274  // calculate the value of an index w.r.t. the m_return_dim.
275  if (Layout == static_cast<int>(ColMajor)) {
276  strides[0] = 1;
277  for (int i = 1; i < NumDims; ++i) {
278  strides[i] = strides[i-1] * dims[i-1];
279  }
280  } else {
281  strides[NumDims-1] = 1;
282  for (int i = NumDims - 2; i >= 0; --i) {
283  strides[i] = strides[i+1] * dims[i+1];
284  }
285  }
286  }
287 
288  protected:
291  const int m_return_dim;
295 };
296 
297 } // end namespace Eigen
298 
299 #endif // EIGEN_CXX11_TENSOR_TENSOR_ARG_MAX_H
Eigen::TensorIndexTupleOp::StorageKind
Eigen::internal::traits< TensorIndexTupleOp >::StorageKind StorageKind
Definition: TensorArgMax.h:59
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_stride_div
Index m_stride_div
Definition: TensorArgMax.h:294
Eigen::TensorEvaluator::device
const Device & device() const
required by sycl in order to construct sycl buffer from raw pointer
Definition: TensorEvaluator.h:114
Eigen::TensorIndexTupleOp::Index
Eigen::internal::traits< TensorIndexTupleOp >::Index Index
Definition: TensorArgMax.h:60
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::Nested
XprType::Nested Nested
Definition: TensorArgMax.h:141
Eigen::TensorTupleReducerOp::m_reduce_dims
const Dims m_reduce_dims
Definition: TensorArgMax.h:196
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorArgMax.h:116
Eigen
Definition: common.h:73
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorArgMax.h:250
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::InputDimensions
TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::Dimensions InputDimensions
Definition: TensorArgMax.h:209
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorArgMax.h:80
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_orig_impl
TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device > m_orig_impl
Definition: TensorArgMax.h:289
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorArgMax.h:258
Eigen::TensorIndexTupleOp::Scalar
Eigen::internal::traits< TensorIndexTupleOp >::Scalar Scalar
Definition: TensorArgMax.h:56
Eigen::internal::nested< TensorTupleReducerOp< ReduceOp, Dims, XprType >, 1, typename eval< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::type >::type
TensorTupleReducerOp< ReduceOp, Dims, XprType > type
Definition: TensorArgMax.h:157
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::m_impl
TensorEvaluator< ArgType, Device > m_impl
Definition: TensorArgMax.h:123
Eigen::array< Index, NumDims >
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::Index
XprType::Index Index
Definition: TensorArgMax.h:204
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorArgMax.h:205
Eigen::TensorTupleReducerOp::m_xpr
XprType::Nested m_xpr
Definition: TensorArgMax.h:193
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::Dimensions
TensorEvaluator< const TensorReductionOp< ReduceOp, Dims, const TensorIndexTupleOp< ArgType > >, Device >::Dimensions Dimensions
Definition: TensorArgMax.h:208
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::Tuple
Definition: TensorMeta.h:110
Eigen::TensorTupleReducerOp::StorageKind
Eigen::internal::traits< TensorTupleReducerOp >::StorageKind StorageKind
Definition: TensorArgMax.h:169
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::data
EIGEN_DEVICE_FUNC Scalar * data() const
Definition: TensorArgMax.h:255
Eigen::TensorEvaluator::m_impl
const Derived & m_impl
Definition: TensorEvaluator.h:120
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorArgMax.h:98
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::Scalar
Tuple< Index, typename XprTraits::Scalar > Scalar
Definition: TensorArgMax.h:30
Eigen::TensorTupleReducerOp::Index
Eigen::internal::traits< TensorTupleReducerOp >::Index Index
Definition: TensorArgMax.h:170
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::XprType
TensorTupleReducerOp< ReduceOp, Dims, ArgType > XprType
Definition: TensorArgMax.h:203
Eigen::TensorTupleReducerOp::m_return_dim
const int m_return_dim
Definition: TensorArgMax.h:195
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_strides
StrideDims m_strides
Definition: TensorArgMax.h:292
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::Index
XprType::Index Index
Definition: TensorArgMax.h:79
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::StorageKind
XprTraits::StorageKind StorageKind
Definition: TensorArgMax.h:28
Eigen::TensorTupleReducerOp::CoeffReturnType
Index CoeffReturnType
Definition: TensorArgMax.h:171
Eigen::TensorIndexTupleOp::Nested
Eigen::internal::nested< TensorIndexTupleOp >::type Nested
Definition: TensorArgMax.h:58
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *)
Definition: TensorArgMax.h:102
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorArgMax.h:32
Eigen::TensorTupleReducerOp::return_dim
EIGEN_DEVICE_FUNC int return_dim() const
Definition: TensorArgMax.h:190
Eigen::TensorTupleReducerOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorArgMax.h:181
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_impl
TensorEvaluator< const TensorReductionOp< ReduceOp, Dims, const TensorIndexTupleOp< ArgType > >, Device > m_impl
Definition: TensorArgMax.h:290
Eigen::TensorTupleReducerOp::reduce_op
const EIGEN_DEVICE_FUNC ReduceOp & reduce_op() const
Definition: TensorArgMax.h:184
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::_Nested
remove_reference< Nested >::type _Nested
Definition: TensorArgMax.h:142
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorArgMax.h:238
Eigen::TensorTupleReducerOp::TensorTupleReducerOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorTupleReducerOp(const XprType &expr, const ReduceOp &reduce_op, const int return_dim, const Dims &reduce_dims)
Definition: TensorArgMax.h:173
Eigen::TensorIndexTupleOp::expression
const EIGEN_DEVICE_FUNC internal::remove_all< typename XprType::Nested >::type & expression() const
Definition: TensorArgMax.h:68
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorArgMax.h:246
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
Eigen::internal::eval< TensorIndexTupleOp< XprType >, Eigen::Dense >::type
const typedef TensorIndexTupleOp< XprType > & type
Definition: TensorArgMax.h:40
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::TupleType
TensorIndexTupleOp< ArgType >::CoeffReturnType TupleType
Definition: TensorArgMax.h:207
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::XprType
TensorIndexTupleOp< ArgType > XprType
Definition: TensorArgMax.h:78
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::XprTraits
traits< XprType > XprTraits
Definition: TensorArgMax.h:137
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorArgMax.h:222
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::Nested
XprType::Nested Nested
Definition: TensorArgMax.h:31
Eigen::TensorTupleReducerOp::Scalar
Eigen::internal::traits< TensorTupleReducerOp >::Scalar Scalar
Definition: TensorArgMax.h:166
Eigen::TensorIndexTupleOp::m_xpr
XprType::Nested m_xpr
Definition: TensorArgMax.h:71
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *)
Definition: TensorArgMax.h:242
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::StorageKind
XprTraits::StorageKind StorageKind
Definition: TensorArgMax.h:138
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorTupleReducerOp::Nested
Eigen::internal::nested< TensorTupleReducerOp >::type Nested
Definition: TensorArgMax.h:168
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::internal::array_prod
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE std::ptrdiff_t array_prod(const Sizes< Indices... > &)
Definition: TensorDimensions.h:138
Eigen::internal::array_size
Definition: EmulateArray.h:203
Eigen::TensorTupleReducerOp
Definition: TensorArgMax.h:163
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::Index
XprTraits::Index Index
Definition: TensorArgMax.h:29
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::gen_strides
EIGEN_DEVICE_FUNC void gen_strides(const InputDimensions &dims, StrideDims &strides)
Definition: TensorArgMax.h:266
Eigen::internal::nested< TensorIndexTupleOp< XprType >, 1, typename eval< TensorIndexTupleOp< XprType > >::type >::type
TensorIndexTupleOp< XprType > type
Definition: TensorArgMax.h:47
Eigen::TensorTupleReducerOp::reduce_dims
const EIGEN_DEVICE_FUNC Dims & reduce_dims() const
Definition: TensorArgMax.h:187
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::Scalar
Index Scalar
Definition: TensorArgMax.h:140
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorArgMax.h:206
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorArgMax.h:81
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::data
EIGEN_DEVICE_FUNC Scalar * data() const
Definition: TensorArgMax.h:120
Eigen::TensorIndexTupleOp::TensorIndexTupleOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorIndexTupleOp(const XprType &expr)
Definition: TensorArgMax.h:63
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_stride_mod
Index m_stride_mod
Definition: TensorArgMax.h:293
Eigen::internal::eval< TensorTupleReducerOp< ReduceOp, Dims, XprType >, Eigen::Dense >::type
const typedef TensorTupleReducerOp< ReduceOp, Dims, XprType > & type
Definition: TensorArgMax.h:150
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::StrideDims
array< Index, NumDims > StrideDims
Definition: TensorArgMax.h:211
Eigen::TensorTupleReducerOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorArgMax.h:167
internal
Definition: BandTriangularSolver.h:13
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorArgMax.h:110
Eigen::TensorEvaluator::CoeffReturnType
Derived::Scalar CoeffReturnType
Definition: TensorEvaluator.h:32
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorArgMax.h:95
Eigen::TensorEvaluator< const TensorTupleReducerOp< ReduceOp, Dims, ArgType >, Device >::m_return_dim
const int m_return_dim
Definition: TensorArgMax.h:291
Eigen::internal::traits< TensorTupleReducerOp< ReduceOp, Dims, XprType > >::Index
XprTraits::Index Index
Definition: TensorArgMax.h:139
Eigen::TensorIndexTupleOp::RealScalar
Eigen::NumTraits< Scalar >::Real RealScalar
Definition: TensorArgMax.h:57
Eigen::ColMajor
@ ColMajor
Definition: Constants.h:320
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::internal::traits< TensorIndexTupleOp< XprType > >::XprTraits
traits< XprType > XprTraits
Definition: TensorArgMax.h:27
Eigen::TensorIndexTupleOp::CoeffReturnType
Tuple< Index, typename XprType::CoeffReturnType > CoeffReturnType
Definition: TensorArgMax.h:61
Eigen::TensorIndexTupleOp
Definition: TensorArgMax.h:53
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorArgMax.h:106
Eigen::TensorEvaluator< const TensorIndexTupleOp< ArgType >, Device >::Dimensions
TensorEvaluator< ArgType, Device >::Dimensions Dimensions
Definition: TensorArgMax.h:83
Eigen::GenericNumTraits::Real
T Real
Definition: NumTraits.h:100
Eigen::TensorTupleReducerOp::m_reduce_op
const ReduceOp m_reduce_op
Definition: TensorArgMax.h:194
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:34