TensorConcatenation.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_CONCATENATION_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_CONCATENATION_H
12 
13 namespace Eigen {
14 
22 namespace internal {
23 template<typename Axis, typename LhsXprType, typename RhsXprType>
24 struct traits<TensorConcatenationOp<Axis, LhsXprType, RhsXprType> >
25 {
26  // Type promotion to handle the case where the types of the lhs and the rhs are different.
27  typedef typename promote_storage_type<typename LhsXprType::Scalar,
33  typedef typename LhsXprType::Nested LhsNested;
34  typedef typename RhsXprType::Nested RhsNested;
37  static const int NumDimensions = traits<LhsXprType>::NumDimensions;
38  static const int Layout = traits<LhsXprType>::Layout;
39  enum { Flags = 0 };
40 };
41 
42 template<typename Axis, typename LhsXprType, typename RhsXprType>
43 struct eval<TensorConcatenationOp<Axis, LhsXprType, RhsXprType>, Eigen::Dense>
44 {
46 };
47 
48 template<typename Axis, typename LhsXprType, typename RhsXprType>
49 struct nested<TensorConcatenationOp<Axis, LhsXprType, RhsXprType>, 1, typename eval<TensorConcatenationOp<Axis, LhsXprType, RhsXprType> >::type>
50 {
52 };
53 
54 } // end namespace internal
55 
56 
57 template<typename Axis, typename LhsXprType, typename RhsXprType>
58 class TensorConcatenationOp : public TensorBase<TensorConcatenationOp<Axis, LhsXprType, RhsXprType>, WriteAccessors>
59 {
60  public:
65  typedef typename internal::promote_storage_type<typename LhsXprType::CoeffReturnType,
66  typename RhsXprType::CoeffReturnType>::ret CoeffReturnType;
68 
69  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorConcatenationOp(const LhsXprType& lhs, const RhsXprType& rhs, Axis axis)
70  : m_lhs_xpr(lhs), m_rhs_xpr(rhs), m_axis(axis) {}
71 
72  EIGEN_DEVICE_FUNC
74  lhsExpression() const { return m_lhs_xpr; }
75 
76  EIGEN_DEVICE_FUNC
78  rhsExpression() const { return m_rhs_xpr; }
79 
80  EIGEN_DEVICE_FUNC const Axis& axis() const { return m_axis; }
81 
82  EIGEN_DEVICE_FUNC
84  {
86  Assign assign(*this, other);
88  return *this;
89  }
90 
91  template<typename OtherDerived>
92  EIGEN_DEVICE_FUNC
94  {
96  Assign assign(*this, other);
98  return *this;
99  }
100 
101  protected:
102  typename LhsXprType::Nested m_lhs_xpr;
103  typename RhsXprType::Nested m_rhs_xpr;
104  const Axis m_axis;
105 };
106 
107 
108 // Eval as rvalue
109 template<typename Axis, typename LeftArgType, typename RightArgType, typename Device>
110 struct TensorEvaluator<const TensorConcatenationOp<Axis, LeftArgType, RightArgType>, Device>
111 {
113  typedef typename XprType::Index Index;
117  typedef typename XprType::Scalar Scalar;
120  enum {
121  IsAligned = false,
124  RawAccess = false
125  };
126 
127  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
128  : m_leftImpl(op.lhsExpression(), device), m_rightImpl(op.rhsExpression(), device), m_axis(op.axis())
129  {
130  EIGEN_STATIC_ASSERT((static_cast<int>(TensorEvaluator<LeftArgType, Device>::Layout) == static_cast<int>(TensorEvaluator<RightArgType, Device>::Layout) || NumDims == 1), YOU_MADE_A_PROGRAMMING_MISTAKE);
131  EIGEN_STATIC_ASSERT((NumDims == RightNumDims), YOU_MADE_A_PROGRAMMING_MISTAKE);
132  EIGEN_STATIC_ASSERT((NumDims > 0), YOU_MADE_A_PROGRAMMING_MISTAKE);
133 
134  eigen_assert(0 <= m_axis && m_axis < NumDims);
135  const Dimensions& lhs_dims = m_leftImpl.dimensions();
136  const Dimensions& rhs_dims = m_rightImpl.dimensions();
137  {
138  int i = 0;
139  for (; i < m_axis; ++i) {
140  eigen_assert(lhs_dims[i] > 0);
141  eigen_assert(lhs_dims[i] == rhs_dims[i]);
142  m_dimensions[i] = lhs_dims[i];
143  }
144  eigen_assert(lhs_dims[i] > 0); // Now i == m_axis.
145  eigen_assert(rhs_dims[i] > 0);
146  m_dimensions[i] = lhs_dims[i] + rhs_dims[i];
147  for (++i; i < NumDims; ++i) {
148  eigen_assert(lhs_dims[i] > 0);
149  eigen_assert(lhs_dims[i] == rhs_dims[i]);
150  m_dimensions[i] = lhs_dims[i];
151  }
152  }
153 
154  if (static_cast<int>(Layout) == static_cast<int>(ColMajor)) {
155  m_leftStrides[0] = 1;
156  m_rightStrides[0] = 1;
157  m_outputStrides[0] = 1;
158 
159  for (int j = 1; j < NumDims; ++j) {
160  m_leftStrides[j] = m_leftStrides[j-1] * lhs_dims[j-1];
161  m_rightStrides[j] = m_rightStrides[j-1] * rhs_dims[j-1];
162  m_outputStrides[j] = m_outputStrides[j-1] * m_dimensions[j-1];
163  }
164  } else {
165  m_leftStrides[NumDims - 1] = 1;
166  m_rightStrides[NumDims - 1] = 1;
167  m_outputStrides[NumDims - 1] = 1;
168 
169  for (int j = NumDims - 2; j >= 0; --j) {
170  m_leftStrides[j] = m_leftStrides[j+1] * lhs_dims[j+1];
171  m_rightStrides[j] = m_rightStrides[j+1] * rhs_dims[j+1];
172  m_outputStrides[j] = m_outputStrides[j+1] * m_dimensions[j+1];
173  }
174  }
175  }
176 
177  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; }
178 
179  // TODO(phli): Add short-circuit memcpy evaluation if underlying data are linear?
180  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar* /*data*/)
181  {
182  m_leftImpl.evalSubExprsIfNeeded(NULL);
183  m_rightImpl.evalSubExprsIfNeeded(NULL);
184  return true;
185  }
186 
187  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
188  {
189  m_leftImpl.cleanup();
190  m_rightImpl.cleanup();
191  }
192 
193  // TODO(phli): attempt to speed this up. The integer divisions and modulo are slow.
194  // See CL/76180724 comments for more ideas.
195  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
196  {
197  // Collect dimension-wise indices (subs).
199  if (static_cast<int>(Layout) == static_cast<int>(ColMajor)) {
200  for (int i = NumDims - 1; i > 0; --i) {
201  subs[i] = index / m_outputStrides[i];
202  index -= subs[i] * m_outputStrides[i];
203  }
204  subs[0] = index;
205  } else {
206  for (int i = 0; i < NumDims - 1; ++i) {
207  subs[i] = index / m_outputStrides[i];
208  index -= subs[i] * m_outputStrides[i];
209  }
210  subs[NumDims - 1] = index;
211  }
212 
213  const Dimensions& left_dims = m_leftImpl.dimensions();
214  if (subs[m_axis] < left_dims[m_axis]) {
215  Index left_index;
216  if (static_cast<int>(Layout) == static_cast<int>(ColMajor)) {
217  left_index = subs[0];
218  for (int i = 1; i < NumDims; ++i) {
219  left_index += (subs[i] % left_dims[i]) * m_leftStrides[i];
220  }
221  } else {
222  left_index = subs[NumDims - 1];
223  for (int i = NumDims - 2; i >= 0; --i) {
224  left_index += (subs[i] % left_dims[i]) * m_leftStrides[i];
225  }
226  }
227  return m_leftImpl.coeff(left_index);
228  } else {
229  subs[m_axis] -= left_dims[m_axis];
230  const Dimensions& right_dims = m_rightImpl.dimensions();
231  Index right_index;
232  if (static_cast<int>(Layout) == static_cast<int>(ColMajor)) {
233  right_index = subs[0];
234  for (int i = 1; i < NumDims; ++i) {
235  right_index += (subs[i] % right_dims[i]) * m_rightStrides[i];
236  }
237  } else {
238  right_index = subs[NumDims - 1];
239  for (int i = NumDims - 2; i >= 0; --i) {
240  right_index += (subs[i] % right_dims[i]) * m_rightStrides[i];
241  }
242  }
243  return m_rightImpl.coeff(right_index);
244  }
245  }
246 
247  // TODO(phli): Add a real vectorization.
248  template<int LoadMode>
249  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
250  {
252  EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE)
253  eigen_assert(index + packetSize - 1 < dimensions().TotalSize());
254 
255  EIGEN_ALIGN_MAX CoeffReturnType values[packetSize];
256  for (int i = 0; i < packetSize; ++i) {
257  values[i] = coeff(index+i);
258  }
259  PacketReturnType rslt = internal::pload<PacketReturnType>(values);
260  return rslt;
261  }
262 
263  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost
264  costPerCoeff(bool vectorized) const {
265  const double compute_cost = NumDims * (2 * TensorOpCost::AddCost<Index>() +
266  2 * TensorOpCost::MulCost<Index>() +
267  TensorOpCost::DivCost<Index>() +
268  TensorOpCost::ModCost<Index>());
269  const double lhs_size = m_leftImpl.dimensions().TotalSize();
270  const double rhs_size = m_rightImpl.dimensions().TotalSize();
271  return (lhs_size / (lhs_size + rhs_size)) *
272  m_leftImpl.costPerCoeff(vectorized) +
273  (rhs_size / (lhs_size + rhs_size)) *
274  m_rightImpl.costPerCoeff(vectorized) +
275  TensorOpCost(0, 0, compute_cost);
276  }
277 
278  EIGEN_DEVICE_FUNC Scalar* data() const { return NULL; }
279 
280  protected:
287  const Axis m_axis;
288 };
289 
290 // Eval as lvalue
291 template<typename Axis, typename LeftArgType, typename RightArgType, typename Device>
292  struct TensorEvaluator<TensorConcatenationOp<Axis, LeftArgType, RightArgType>, Device>
293  : public TensorEvaluator<const TensorConcatenationOp<Axis, LeftArgType, RightArgType>, Device>
294 {
297  typedef typename Base::Dimensions Dimensions;
298  enum {
299  IsAligned = false,
302  RawAccess = false
303  };
304 
305  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(XprType& op, const Device& device)
306  : Base(op, device)
307  {
308  EIGEN_STATIC_ASSERT((static_cast<int>(Layout) == static_cast<int>(ColMajor)), YOU_MADE_A_PROGRAMMING_MISTAKE);
309  }
310 
311  typedef typename XprType::Index Index;
312  typedef typename XprType::Scalar Scalar;
315 
317  {
318  // Collect dimension-wise indices (subs).
320  for (int i = Base::NumDims - 1; i > 0; --i) {
321  subs[i] = index / this->m_outputStrides[i];
322  index -= subs[i] * this->m_outputStrides[i];
323  }
324  subs[0] = index;
325 
326  const Dimensions& left_dims = this->m_leftImpl.dimensions();
327  if (subs[this->m_axis] < left_dims[this->m_axis]) {
328  Index left_index = subs[0];
329  for (int i = 1; i < Base::NumDims; ++i) {
330  left_index += (subs[i] % left_dims[i]) * this->m_leftStrides[i];
331  }
332  return this->m_leftImpl.coeffRef(left_index);
333  } else {
334  subs[this->m_axis] -= left_dims[this->m_axis];
335  const Dimensions& right_dims = this->m_rightImpl.dimensions();
336  Index right_index = subs[0];
337  for (int i = 1; i < Base::NumDims; ++i) {
338  right_index += (subs[i] % right_dims[i]) * this->m_rightStrides[i];
339  }
340  return this->m_rightImpl.coeffRef(right_index);
341  }
342  }
343 
344  template <int StoreMode> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
345  void writePacket(Index index, const PacketReturnType& x)
346  {
348  EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE)
349  eigen_assert(index + packetSize - 1 < this->dimensions().TotalSize());
350 
351  EIGEN_ALIGN_MAX CoeffReturnType values[packetSize];
352  internal::pstore<CoeffReturnType, PacketReturnType>(values, x);
353  for (int i = 0; i < packetSize; ++i) {
354  coeffRef(index+i) = values[i];
355  }
356  }
357 };
358 
359 } // end namespace Eigen
360 
361 #endif // EIGEN_CXX11_TENSOR_TENSOR_CONCATENATION_H
Eigen::TensorEvaluator::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorEvaluator.h:54
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_outputStrides
array< Index, NumDims > m_outputStrides
Definition: TensorConcatenation.h:282
Eigen::TensorEvaluator::device
const Device & device() const
required by sycl in order to construct sycl buffer from raw pointer
Definition: TensorEvaluator.h:114
Eigen::TensorConcatenationOp::Nested
internal::nested< TensorConcatenationOp >::type Nested
Definition: TensorConcatenation.h:64
Eigen
Definition: common.h:73
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_axis
const Axis m_axis
Definition: TensorConcatenation.h:287
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_leftImpl
TensorEvaluator< LeftArgType, Device > m_leftImpl
Definition: TensorConcatenation.h:285
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_dimensions
Dimensions m_dimensions
Definition: TensorConcatenation.h:281
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::_RhsNested
remove_reference< RhsNested >::type _RhsNested
Definition: TensorConcatenation.h:36
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_leftStrides
array< Index, NumDims > m_leftStrides
Definition: TensorConcatenation.h:283
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::XprType
TensorConcatenationOp< Axis, LeftArgType, RightArgType > XprType
Definition: TensorConcatenation.h:112
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Dimensions
Base::Dimensions Dimensions
Definition: TensorConcatenation.h:297
Eigen::TensorConcatenationOp::Index
internal::traits< TensorConcatenationOp >::Index Index
Definition: TensorConcatenation.h:63
Eigen::array< Index, NumDims >
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(XprType &op, const Device &device)
Definition: TensorConcatenation.h:305
Eigen::internal::nested
Definition: TensorTraits.h:170
Eigen::TensorEvaluator::PacketAccess
@ PacketAccess
Definition: TensorEvaluator.h:42
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::_LhsNested
remove_reference< LhsNested >::type _LhsNested
Definition: TensorConcatenation.h:35
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_rightStrides
array< Index, NumDims > m_rightStrides
Definition: TensorConcatenation.h:284
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Eigen::TensorConcatenationOp::operator=
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorConcatenationOp & operator=(const TensorConcatenationOp &other)
Definition: TensorConcatenation.h:83
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Index
XprType::Index Index
Definition: TensorConcatenation.h:113
Scalar
SCALAR Scalar
Definition: common.h:84
ret
DenseIndex ret
Definition: level1_impl.h:59
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Dimensions
DSizes< Index, NumDims > Dimensions
Definition: TensorConcatenation.h:116
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >
Definition: TensorConcatenation.h:110
EIGEN_ALIGN_MAX
#define EIGEN_ALIGN_MAX
Definition: Macros.h:757
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::coeffRef
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType & coeffRef(Index index)
Definition: TensorConcatenation.h:316
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Index
XprType::Index Index
Definition: TensorConcatenation.h:311
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::TensorEvaluator
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType &op, const Device &device)
Definition: TensorConcatenation.h:127
Eigen::TensorEvaluator::coeffRef
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index index)
Definition: TensorEvaluator.h:71
Eigen::DSizes< Index, NumDims >
Eigen::DefaultDevice
Definition: TensorDeviceDefault.h:17
Eigen::TensorConcatenationOp
Tensor concatenation class.
Definition: TensorConcatenation.h:58
Eigen::TensorConcatenationOp::rhsExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename RhsXprType::Nested >::type & rhsExpression() const
Definition: TensorConcatenation.h:78
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::TensorConcatenationOp::CoeffReturnType
internal::promote_storage_type< typename LhsXprType::CoeffReturnType, typename RhsXprType::CoeffReturnType >::ret CoeffReturnType
Definition: TensorConcatenation.h:66
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::XprType
TensorConcatenationOp< Axis, LeftArgType, RightArgType > XprType
Definition: TensorConcatenation.h:296
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::Index
promote_index_type< typename traits< LhsXprType >::Index, typename traits< RhsXprType >::Index >::type Index
Definition: TensorConcatenation.h:32
Eigen::TensorConcatenationOp::m_rhs_xpr
RhsXprType::Nested m_rhs_xpr
Definition: TensorConcatenation.h:103
Eigen::TensorConcatenationOp::m_lhs_xpr
LhsXprType::Nested m_lhs_xpr
Definition: TensorConcatenation.h:102
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Base
TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device > Base
Definition: TensorConcatenation.h:295
Eigen::internal::unpacket_traits
Definition: XprHelper.h:158
Eigen::internal::nested< TensorConcatenationOp< Axis, LhsXprType, RhsXprType >, 1, typename eval< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::type >::type
TensorConcatenationOp< Axis, LhsXprType, RhsXprType > type
Definition: TensorConcatenation.h:51
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorConcatenation.h:195
Eigen::TensorEvaluator::IsAligned
@ IsAligned
Definition: TensorEvaluator.h:41
x
Scalar * x
Definition: level1_cplx_impl.h:89
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::Scalar
promote_storage_type< typename LhsXprType::Scalar, typename RhsXprType::Scalar >::ret Scalar
Definition: TensorConcatenation.h:28
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorConcatenation.h:117
Eigen::TensorConcatenationOp::lhsExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename LhsXprType::Nested >::type & lhsExpression() const
Definition: TensorConcatenation.h:74
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::StorageKind
promote_storage_type< typename traits< LhsXprType >::StorageKind, typename traits< RhsXprType >::StorageKind >::ret StorageKind
Definition: TensorConcatenation.h:30
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::cleanup
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void cleanup()
Definition: TensorConcatenation.h:187
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorConcatenation.h:313
Eigen::internal::promote_storage_type
Definition: XprHelper.h:498
Eigen::internal::eval< TensorConcatenationOp< Axis, LhsXprType, RhsXprType >, Eigen::Dense >::type
const typedef TensorConcatenationOp< Axis, LhsXprType, RhsXprType > & type
Definition: TensorConcatenation.h:45
Eigen::TensorBase
The tensor base class.
Definition: TensorBase.h:829
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::data
EIGEN_DEVICE_FUNC Scalar * data() const
Definition: TensorConcatenation.h:278
Eigen::TensorEvaluator::Layout
@ Layout
Definition: TensorEvaluator.h:43
Eigen::internal::array_size
Definition: EmulateArray.h:203
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::evalSubExprsIfNeeded
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool evalSubExprsIfNeeded(Scalar *)
Definition: TensorConcatenation.h:180
Eigen::TensorConcatenationOp::Scalar
internal::traits< TensorConcatenationOp >::Scalar Scalar
Definition: TensorConcatenation.h:61
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorConcatenation.h:314
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
EIGEN_STATIC_ASSERT
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:124
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::m_rightImpl
TensorEvaluator< RightArgType, Device > m_rightImpl
Definition: TensorConcatenation.h:286
Eigen::internal::TensorExecutor::run
static EIGEN_DEVICE_FUNC void run(const Expression &expr, const Device &device=Device())
Definition: TensorExecutor.h:32
Eigen::TensorEvaluator::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
Definition: TensorEvaluator.h:66
Eigen::TensorConcatenationOp::TensorConcatenationOp
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorConcatenationOp(const LhsXprType &lhs, const RhsXprType &rhs, Axis axis)
Definition: TensorConcatenation.h:69
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::packet
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) const
Definition: TensorConcatenation.h:249
Eigen::TensorEvaluator
A cost model used to limit the number of threads used for evaluating tensor expression.
Definition: TensorEvaluator.h:28
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::LhsNested
LhsXprType::Nested LhsNested
Definition: TensorConcatenation.h:33
Eigen::internal::traits< TensorConcatenationOp< Axis, LhsXprType, RhsXprType > >::RhsNested
RhsXprType::Nested RhsNested
Definition: TensorConcatenation.h:34
internal
Definition: BandTriangularSolver.h:13
Eigen::TensorConcatenationOp::RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: TensorConcatenation.h:67
Eigen::ColMajor
@ ColMajor
Definition: Constants.h:320
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::Scalar
XprType::Scalar Scalar
Definition: TensorConcatenation.h:312
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::costPerCoeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost costPerCoeff(bool vectorized) const
Definition: TensorConcatenation.h:264
Eigen::internal::promote_index_type
Definition: XprHelper.h:97
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::CoeffReturnType
XprType::CoeffReturnType CoeffReturnType
Definition: TensorConcatenation.h:118
Eigen::TensorConcatenationOp::axis
const EIGEN_DEVICE_FUNC Axis & axis() const
Definition: TensorConcatenation.h:80
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::TensorAssignOp
Definition: TensorAssign.h:60
Eigen::TensorConcatenationOp::StorageKind
internal::traits< TensorConcatenationOp >::StorageKind StorageKind
Definition: TensorConcatenation.h:62
Eigen::TensorConcatenationOp::m_axis
const Axis m_axis
Definition: TensorConcatenation.h:104
Eigen::TensorOpCost
Definition: TensorCostModel.h:25
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:150
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::dimensions
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Dimensions & dimensions() const
Definition: TensorConcatenation.h:177
Eigen::TensorEvaluator< TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::writePacket
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void writePacket(Index index, const PacketReturnType &x)
Definition: TensorConcatenation.h:345
Eigen::TensorEvaluator< const TensorConcatenationOp< Axis, LeftArgType, RightArgType >, Device >::PacketReturnType
PacketType< CoeffReturnType, Device >::type PacketReturnType
Definition: TensorConcatenation.h:119
Eigen::Dense
Definition: Constants.h:491


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