TensorMeta.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_META_H
11 #define EIGEN_CXX11_TENSOR_TENSOR_META_H
12 
13 namespace Eigen {
14 
15 template<bool cond> struct Cond {};
16 
17 template<typename T1, typename T2> EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
18 const T1& choose(Cond<true>, const T1& first, const T2&) {
19  return first;
20 }
21 
22 template<typename T1, typename T2> EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
23 const T2& choose(Cond<false>, const T1&, const T2& second) {
24  return second;
25 }
26 
27 
28 template <typename T, typename X, typename Y>
29 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
30 T divup(const X x, const Y y) {
31  return static_cast<T>((x + y - 1) / y);
32 }
33 
34 template <typename T>
35 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
36 T divup(const T x, const T y) {
37  return static_cast<T>((x + y - 1) / y);
38 }
39 
40 template <size_t n> struct max_n_1 {
41  static const size_t size = n;
42 };
43 template <> struct max_n_1<0> {
44  static const size_t size = 1;
45 };
46 
47 
48 // Default packet types
49 template <typename Scalar, typename Device>
52 };
53 
54 // For CUDA packet types when using a GpuDevice
55 #if defined(EIGEN_USE_GPU) && defined(__CUDACC__) && defined(EIGEN_HAS_CUDA_FP16)
56 template <>
57 struct PacketType<half, GpuDevice> {
58  typedef half2 type;
59  static const int size = 2;
60  enum {
61  HasAdd = 1,
62  HasSub = 1,
63  HasMul = 1,
64  HasNegate = 1,
65  HasAbs = 1,
66  HasArg = 0,
67  HasAbs2 = 0,
68  HasMin = 1,
69  HasMax = 1,
70  HasConj = 0,
71  HasSetLinear = 0,
72  HasBlend = 0,
73 
74  HasDiv = 1,
75  HasSqrt = 1,
76  HasRsqrt = 1,
77  HasExp = 1,
78  HasLog = 1,
79  HasLog1p = 0,
80  HasLog10 = 0,
81  HasPow = 1,
82  };
83 };
84 #endif
85 
86 #if defined(EIGEN_USE_SYCL)
87 template <typename T>
88  struct PacketType<T, SyclDevice> {
89  typedef T type;
90  static const int size = 1;
91  enum {
92  HasAdd = 0,
93  HasSub = 0,
94  HasMul = 0,
95  HasNegate = 0,
96  HasAbs = 0,
97  HasArg = 0,
98  HasAbs2 = 0,
99  HasMin = 0,
100  HasMax = 0,
101  HasConj = 0,
102  HasSetLinear = 0,
103  HasBlend = 0
104  };
105 };
106 #endif
107 
108 
109 // Tuple mimics std::pair but works on e.g. nvcc.
110 template <typename U, typename V> struct Tuple {
111  public:
112  U first;
114 
115  typedef U first_type;
116  typedef V second_type;
117 
118  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
119  Tuple() : first(), second() {}
120 
121  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
122  Tuple(const U& f, const V& s) : first(f), second(s) {}
123 
124  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
125  Tuple& operator= (const Tuple& rhs) {
126  if (&rhs == this) return *this;
127  first = rhs.first;
128  second = rhs.second;
129  return *this;
130  }
131 
132  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
133  void swap(Tuple& rhs) {
134  using numext::swap;
135  swap(first, rhs.first);
136  swap(second, rhs.second);
137  }
138 };
139 
140 template <typename U, typename V>
141 EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
142 bool operator==(const Tuple<U, V>& x, const Tuple<U, V>& y) {
143  return (x.first == y.first && x.second == y.second);
144 }
145 
146 template <typename U, typename V>
147 EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
148 bool operator!=(const Tuple<U, V>& x, const Tuple<U, V>& y) {
149  return !(x == y);
150 }
151 
152 
153 // Can't use std::pairs on cuda devices
154 template <typename Idx> struct IndexPair {
155  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE IndexPair() : first(0), second(0) {}
156  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE IndexPair(Idx f, Idx s) : first(f), second(s) {}
157 
158  EIGEN_DEVICE_FUNC void set(IndexPair<Idx> val) {
159  first = val.first;
160  second = val.second;
161  }
162 
163  Idx first;
164  Idx second;
165 };
166 
167 
168 #ifdef EIGEN_HAS_SFINAE
169 namespace internal {
170 
171  template<typename IndexType, Index... Is>
172  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
173  array<Index, sizeof...(Is)> customIndices2Array(IndexType& idx, numeric_list<Index, Is...>) {
174  return { idx[Is]... };
175  }
176  template<typename IndexType>
177  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
178  array<Index, 0> customIndices2Array(IndexType&, numeric_list<Index>) {
179  return array<Index, 0>();
180  }
181 
183  template<typename Index, std::size_t NumIndices, typename IndexType>
184  EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
185  array<Index, NumIndices> customIndices2Array(IndexType& idx) {
186  return customIndices2Array(idx, typename gen_numeric_list<Index, NumIndices>::type{});
187  }
188 
189 
190  template <typename B, typename D>
191  struct is_base_of
192  {
193 
194  typedef char (&yes)[1];
195  typedef char (&no)[2];
196 
197  template <typename BB, typename DD>
198  struct Host
199  {
200  operator BB*() const;
201  operator DD*();
202  };
203 
204  template<typename T>
205  static yes check(D*, T);
206  static no check(B*, int);
207 
208  static const bool value = sizeof(check(Host<B,D>(), int())) == sizeof(yes);
209  };
210 
211 }
212 #endif
213 
214 
215 
216 } // namespace Eigen
217 
218 #endif // EIGEN_CXX11_TENSOR_TENSOR_META_H
Eigen::operator!=
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool operator!=(const Tuple< U, V > &x, const Tuple< U, V > &y)
Definition: TensorMeta.h:148
Eigen
Definition: common.h:73
s
RealScalar s
Definition: level1_cplx_impl.h:104
Eigen::IndexPair::IndexPair
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE IndexPair()
Definition: TensorMeta.h:155
Eigen::array
Definition: EmulateArray.h:21
Eigen::IndexPair::second
Idx second
Definition: TensorMeta.h:164
Eigen::Tuple
Definition: TensorMeta.h:110
Eigen::internal::default_packet_traits::HasBlend
@ HasBlend
Definition: GenericPacketMath.h:58
Eigen::internal::packet_traits
Definition: GenericPacketMath.h:96
Eigen::internal::packet_traits< Scalar >::HasMax
@ HasMax
Definition: GenericPacketMath.h:114
Eigen::PacketType::type
internal::packet_traits< Scalar >::type type
Definition: TensorMeta.h:51
Eigen::internal::packet_traits::type
T type
Definition: GenericPacketMath.h:98
Eigen::internal::packet_traits< Scalar >::HasMul
@ HasMul
Definition: GenericPacketMath.h:109
X
#define X
Definition: icosphere.cpp:20
Eigen::internal::default_packet_traits::HasArg
@ HasArg
Definition: GenericPacketMath.h:52
Eigen::internal::packet_traits< Scalar >::HasAbs
@ HasAbs
Definition: GenericPacketMath.h:111
Eigen::internal::default_packet_traits::HasLog1p
@ HasLog1p
Definition: GenericPacketMath.h:65
Eigen::internal::default_packet_traits::HasDiv
@ HasDiv
Definition: GenericPacketMath.h:60
Eigen::internal::default_packet_traits::HasPow
@ HasPow
Definition: GenericPacketMath.h:67
Eigen::IndexPair
Definition: TensorMeta.h:154
Eigen::IndexPair::set
EIGEN_DEVICE_FUNC void set(IndexPair< Idx > val)
Definition: TensorMeta.h:158
Eigen::Tuple::Tuple
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tuple()
Definition: TensorMeta.h:119
Eigen::internal::default_packet_traits::HasExp
@ HasExp
Definition: GenericPacketMath.h:63
Eigen::internal::packet_traits< Scalar >::HasConj
@ HasConj
Definition: GenericPacketMath.h:115
Eigen::internal::default_packet_traits::HasLog
@ HasLog
Definition: GenericPacketMath.h:64
Eigen::y
const T & y
Definition: AutoDiffScalar.h:549
Eigen::PacketType
Definition: TensorMeta.h:50
Eigen::Cond
Definition: TensorMeta.h:15
B
MatrixType B(b, *n, *nrhs, *ldb)
Eigen::Tuple::operator=
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tuple & operator=(const Tuple &rhs)
Definition: TensorMeta.h:125
Eigen::internal::packet_traits< Scalar >::HasMin
@ HasMin
Definition: GenericPacketMath.h:113
Eigen::IndexPair::first
Idx first
Definition: TensorMeta.h:163
Eigen::max_n_1
Definition: TensorMeta.h:40
x
Scalar * x
Definition: level1_cplx_impl.h:89
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::default_packet_traits::HasRsqrt
@ HasRsqrt
Definition: GenericPacketMath.h:62
Eigen::internal::packet_traits< Scalar >::HasAbs2
@ HasAbs2
Definition: GenericPacketMath.h:112
EIGEN_CONSTEXPR
#define EIGEN_CONSTEXPR
Definition: TensorMacros.h:50
EIGEN_ALWAYS_INLINE
#define EIGEN_ALWAYS_INLINE
Definition: Macros.h:509
Eigen::IndexPair::IndexPair
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE IndexPair(Idx f, Idx s)
Definition: TensorMeta.h:156
Eigen::Tuple::Tuple
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tuple(const U &f, const V &s)
Definition: TensorMeta.h:122
Eigen::Tuple::second_type
V second_type
Definition: TensorMeta.h:116
Eigen::internal::default_packet_traits::HasSqrt
@ HasSqrt
Definition: GenericPacketMath.h:61
Eigen::internal::packet_traits< Scalar >::HasNegate
@ HasNegate
Definition: GenericPacketMath.h:110
Eigen::internal::default_packet_traits::HasLog10
@ HasLog10
Definition: GenericPacketMath.h:66
Eigen::operator==
EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool operator==(const Tuple< U, V > &x, const Tuple< U, V > &y)
Definition: TensorMeta.h:142
Eigen::numext::swap
EIGEN_STRONG_INLINE void swap(T &a, T &b)
Definition: Meta.h:493
Eigen::max_n_1::size
static const size_t size
Definition: TensorMeta.h:41
Eigen::Tuple::first_type
U first_type
Definition: TensorMeta.h:115
Eigen::Tuple::swap
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void swap(Tuple &rhs)
Definition: TensorMeta.h:133
internal
Definition: BandTriangularSolver.h:13
n
PlainMatrixType mat * n
Definition: eigenvalues.cpp:41
Eigen::Tuple::first
U first
Definition: TensorMeta.h:112
Eigen::choose
EIGEN_DEVICE_FUNC const EIGEN_ALWAYS_INLINE T1 & choose(Cond< true >, const T1 &first, const T2 &)
Definition: TensorMeta.h:18
Eigen::divup
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE T divup(const X x, const Y y)
Definition: TensorMeta.h:30
Eigen::internal::packet_traits< Scalar >::HasSub
@ HasSub
Definition: GenericPacketMath.h:108
Eigen::half
Definition: Half.h:80
Eigen::Tuple::second
V second
Definition: TensorMeta.h:113
Eigen::internal::packet_traits< Scalar >::HasAdd
@ HasAdd
Definition: GenericPacketMath.h:107
Eigen::internal::packet_traits< Scalar >::HasSetLinear
@ HasSetLinear
Definition: GenericPacketMath.h:116
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::internal::packet_traits< Scalar >::size
@ size
Definition: GenericPacketMath.h:102


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