lin
tensor.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TRAITS_TENSOR_HPP_
8 #define LIN_CORE_TRAITS_TENSOR_HPP_
9 
10 #include "utilities.hpp"
11 
12 #include <type_traits>
13 
14 namespace lin {
15 namespace internal {
16 
27 template <class C>
28 struct _elem;
29 
30 template <class C>
31 using _elem_t = typename _elem<C>::type;
32 
43 template <class C, typename = void>
44 struct _eval;
45 
46 template <class C>
47 using _eval_t = typename _eval<C>::type;
48 
59 template <class C>
60 struct _dims;
61 
74 template <class C>
75 struct traits {
81  typedef _elem_t<C> elem_t;
89  typedef _eval_t<C> eval_t;
96  static constexpr size_t rows = _dims<C>::rows;
103  static constexpr size_t cols = _dims<C>::cols;
109  static constexpr size_t size = rows * cols;
115  static constexpr size_t max_rows = _dims<C>::max_rows;
121  static constexpr size_t max_cols = _dims<C>::max_cols;
127  static constexpr size_t max_size = max_rows * max_cols;
128 };
129 
132 template <class C>
133 using traits_elem_t = typename traits<C>::elem_t;
134 
137 template <class C>
138 using traits_eval_t = typename traits<C>::eval_t;
139 
140 template <class C, typename = void>
141 struct _has_traits : std::false_type { };
142 
143 template <class C>
144 struct _has_traits<C, void_t<typename C::Traits>> : std::true_type { };
145 
157 template <class C>
158 struct has_traits : _has_traits<C> { };
159 
173 template <class C>
174 struct has_fixed_rows : std::integral_constant<bool, (
175  (_dims<C>::rows == _dims<C>::max_rows) && _dims<C>::rows
176  )> { };
177 
192 template <class C>
193 struct has_fixed_cols : std::integral_constant<bool, (
194  (_dims<C>::cols == _dims<C>::max_cols) && _dims<C>::cols
195  )> { };
196 
209 template <class C>
211  : conjunction<has_fixed_rows<C>, has_fixed_cols<C>> { };
212 
227 template <class C>
229  : std::integral_constant<bool, (!_dims<C>::rows && _dims<C>::max_rows)> { };
230 
245 template <class C>
247  : std::integral_constant<bool, (!_dims<C>::cols && _dims<C>::max_cols)> { };
248 
261 template <class C>
263  has_strictly_bounded_rows<C>, has_strictly_bounded_cols<C>
264  > { };
265 
278 template <class C>
280  : disjunction<has_fixed_rows<C>, has_strictly_bounded_rows<C>> { };
281 
293 template <class C>
295  : disjunction<has_fixed_cols<C>, has_strictly_bounded_cols<C>> { };
296 
309 template <class C>
311  : conjunction<has_bounded_rows<C>, has_bounded_cols<C>> { };
312 
325 template <class C>
327  has_bounded_dimensions<C>,
328  std::is_trivial<typename _elem<C>::type>
329  > { };
330 
347 template <class C>
348 struct is_tall : std::integral_constant<bool, (
349  _dims<C>::max_rows >= _dims<C>::max_cols
350  )> { };
351 
366 template <class C>
367 struct is_short : std::integral_constant<bool, (
368  _dims<C>::max_rows <= _dims<C>::max_cols
369  )> { };
370 
388 template <class C>
389 struct is_square : conjunction<is_tall<C>, is_short<C>> { };
390 
401 template <class... Cs>
402 struct have_same_elements;
403 
404 template <class C, class... Cs>
405 struct have_same_elements<C, Cs...>
406  : conjunction<std::is_same<_elem_t<C>, _elem_t<Cs>>...> { };
407 
408 template <class C>
409 struct have_same_elements<C> : std::true_type { };
410 
411 template <>
412 struct have_same_elements<> : std::true_type { };
413 
425 template <class... Cs>
426 struct have_floating_point_elements
427  : conjunction<std::is_floating_point<_elem_t<Cs>>...> { };
428 
429 template <>
430 struct have_floating_point_elements<> : std::true_type { };
431 
443 template <class... Cs>
444 struct have_integral_elements
445  : conjunction<std::is_integral<_elem_t<Cs>>...> { };
446 
447 template <>
448 struct have_integral_elements<> : std::true_type { };
449 
463 template <class... Cs>
464 struct have_same_rows;
465 
466 template <class C, class... Cs>
467 struct have_same_rows<C, Cs...> : conjunction<
468  std::integral_constant<bool, (
469  (_dims<C>::rows == _dims<Cs>::rows) &&
470  (_dims<C>::max_rows == _dims<Cs>::max_rows)
471  )>...
472  > { };
473 
474 template <class C>
475 struct have_same_rows<C> : std::true_type { };
476 
477 template <>
478 struct have_same_rows<> : std::true_type { };
479 
493 template <class... Cs>
494 struct have_same_cols;
495 
496 template <class C, class... Cs>
497 struct have_same_cols<C, Cs...> : conjunction<
498  std::integral_constant<bool, (
499  (_dims<C>::cols == _dims<Cs>::cols) &&
500  (_dims<C>::max_cols == _dims<Cs>::max_cols)
501  )>...
502  > { };
503 
504 template <class C>
505 struct have_same_cols<C> : std::true_type { };
506 
507 template <>
508 struct have_same_cols<> : std::true_type { };
509 
524 template <class... Cs>
525 struct have_same_dimensions
526  : conjunction<have_same_rows<Cs...>, have_same_cols<Cs...>> { };
527 
542 template <class... Cs>
543 struct have_same_traits
544  : conjunction<have_same_dimensions<Cs...>, have_same_elements<Cs...>> { };
545 
546 } // namespace internal
547 } // namespace lin
548 
549 #endif
Tests if a tensor type has a strictly bounded column count.
Definition: tensor.hpp:246
Logical OR operation for template metaprogramming.
Definition: utilities.hpp:74
Provides a specific tensor type&#39;s evaluation type.
Definition: tensor.hpp:44
static constexpr size_t rows
Row count.
Definition: tensor.hpp:96
Tests if a tensor type has fixed dimensions.
Definition: tensor.hpp:210
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
Tests if a tensor type has a bounded column count.
Definition: tensor.hpp:294
static constexpr size_t size
Total element count.
Definition: tensor.hpp:109
Definition: tensor.hpp:141
Tests if a tensor type is "short".
Definition: tensor.hpp:367
Tests if a tensor type has strictly bounded dimensions.
Definition: tensor.hpp:262
Tests if a tensor type is "tall".
Definition: tensor.hpp:348
Tests if a tensor type has a bounded row count.
Definition: tensor.hpp:279
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests is a tensor type has a strictly bounded row count.
Definition: tensor.hpp:228
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
Tests if a tensor type has a fixed row count.
Definition: tensor.hpp:174
void void_t
Template metaprogramming construct used to detect ill formed types.
Definition: utilities.hpp:18
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
static constexpr size_t max_size
Max total element count.
Definition: tensor.hpp:127
Tests if a tensor type has bounded dimensions.
Definition: tensor.hpp:310
Tests if a tensor type has a fixed column count.
Definition: tensor.hpp:193
Tests if a tensor type&#39;s traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
_eval_t< C > eval_t
Tensor&#39;s evalutation type.
Definition: tensor.hpp:89
static constexpr size_t cols
Column count.
Definition: tensor.hpp:103
Tests if a type has traits.
Definition: tensor.hpp:158
Provides a specific tensor type&#39;s compile time dimensions.
Definition: tensor.hpp:60
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115