7 #ifndef LIN_CORE_TRAITS_TENSOR_HPP_ 8 #define LIN_CORE_TRAITS_TENSOR_HPP_ 12 #include <type_traits> 43 template <
class C,
typename =
void>
140 template <
class C,
typename =
void>
175 (_dims<C>::rows == _dims<C>::max_rows) && _dims<C>::rows
194 (_dims<C>::cols == _dims<C>::max_cols) && _dims<C>::cols
211 :
conjunction<has_fixed_rows<C>, has_fixed_cols<C>> { };
229 : std::integral_constant<bool, (!_dims<C>::rows && _dims<C>::max_rows)> { };
247 : std::integral_constant<bool, (!_dims<C>::cols && _dims<C>::max_cols)> { };
263 has_strictly_bounded_rows<C>, has_strictly_bounded_cols<C>
280 :
disjunction<has_fixed_rows<C>, has_strictly_bounded_rows<C>> { };
295 :
disjunction<has_fixed_cols<C>, has_strictly_bounded_cols<C>> { };
311 :
conjunction<has_bounded_rows<C>, has_bounded_cols<C>> { };
327 has_bounded_dimensions<C>,
328 std::is_trivial<typename _elem<C>::type>
348 struct is_tall : std::integral_constant<bool, (
349 _dims<C>::max_rows >= _dims<C>::max_cols
368 _dims<C>::max_rows <= _dims<C>::max_cols
389 struct is_square : conjunction<is_tall<C>, is_short<C>> { };
401 template <class... Cs>
402 struct have_same_elements;
404 template <class C, class... Cs>
405 struct have_same_elements<C, Cs...>
406 : conjunction<std::is_same<_elem_t<C>, _elem_t<Cs>>...> { };
409 struct have_same_elements<C> : std::true_type { };
412 struct have_same_elements<> : std::true_type { };
425 template <class... Cs>
426 struct have_floating_point_elements
427 : conjunction<std::is_floating_point<_elem_t<Cs>>...> { };
430 struct have_floating_point_elements<> : std::true_type { };
443 template <class... Cs>
444 struct have_integral_elements
445 : conjunction<std::is_integral<_elem_t<Cs>>...> { };
448 struct have_integral_elements<> : std::true_type { };
463 template <class... Cs>
464 struct have_same_rows;
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)
475 struct have_same_rows<C> : std::true_type { };
478 struct have_same_rows<> : std::true_type { };
493 template <class... Cs>
494 struct have_same_cols;
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)
505 struct have_same_cols<C> : std::true_type { };
508 struct have_same_cols<> : std::true_type { };
524 template <class... Cs>
525 struct have_same_dimensions
526 : conjunction<have_same_rows<Cs...>, have_same_cols<Cs...>> { };
542 template <class... Cs>
543 struct have_same_traits
544 : conjunction<have_same_dimensions<Cs...>, have_same_elements<Cs...>> { };
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'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'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'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's traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
_eval_t< C > eval_t
Tensor'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's compile time dimensions.
Definition: tensor.hpp:60
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115