7 #ifndef LIN_CORE_TYPES_DIMENSIONS_HPP_ 8 #define LIN_CORE_TYPES_DIMENSIONS_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 13 #include <type_traits> 44 template <
class D,
typename =
void>
56 constexpr
size_t rows()
const {
return 0; }
60 constexpr
size_t cols()
const {
return 0; }
75 constexpr
void resize(
size_t r,
size_t c) { }
81 class Dimensions<D, std::enable_if_t<has_fixed_dimensions<D>::value>> {
88 constexpr This &operator=(This
const &) =
default;
89 constexpr This &operator=(This &&) =
default;
91 inline constexpr
size_t rows()
const {
return D::Traits::rows; }
92 inline constexpr
size_t cols()
const {
return D::Traits::cols; }
93 constexpr
void resize(
size_t r,
size_t c) {
101 conjunction<has_fixed_rows<D>, has_strictly_bounded_cols<D>>::value>> {
109 constexpr
Dimensions() : _cols(D::Traits::max_cols) { }
110 constexpr Dimensions(This
const &) =
default;
111 constexpr Dimensions(This &&) =
default;
112 constexpr This &operator=(This
const &) =
default;
113 constexpr This &operator=(This &&) =
default;
115 inline constexpr
size_t rows()
const {
return D::Traits::rows; }
116 inline constexpr
size_t cols()
const {
return _cols; }
117 constexpr
void resize(
size_t r,
size_t c) {
119 LIN_ASSERT(c > 0 && c <= D::Traits::max_cols);
126 conjunction<has_strictly_bounded_rows<D>, has_fixed_cols<D>>::value>> {
134 constexpr
Dimensions() : _rows(D::Traits::max_rows) { }
135 constexpr Dimensions(This
const &) =
default;
136 constexpr Dimensions(This &&) =
default;
137 constexpr This &operator=(This
const &) =
default;
138 constexpr This &operator=(This &&) =
default;
140 inline constexpr
size_t rows()
const {
return _rows; }
141 inline constexpr
size_t cols()
const {
return D::Traits::cols; }
142 constexpr
void resize(
size_t r,
size_t c) {
143 LIN_ASSERT(r > 0 && r <= D::Traits::max_rows);
150 class Dimensions<D, std::enable_if_t<has_strictly_bounded_dimensions<D>::value>> {
157 constexpr
Dimensions() : _rows(D::Traits::max_rows), _cols(D::Traits::max_cols) { }
158 constexpr Dimensions(This
const &) =
default;
159 constexpr Dimensions(This &&) =
default;
160 constexpr This &operator=(This
const &) =
default;
161 constexpr This &operator=(This &&) =
default;
163 inline constexpr
size_t rows()
const {
return _rows; }
164 inline constexpr
size_t cols()
const {
return _cols; }
165 constexpr
void resize(
size_t r,
size_t c) {
166 LIN_ASSERT(r > 0 && r <= D::Traits::max_rows);
167 LIN_ASSERT(c > 0 && c <= D::Traits::max_cols);
Tests if a tensor type has a strictly bounded column count.
Definition: tensor.hpp:246
Definition: dimensions.hpp:100
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
Definition: dimensions.hpp:125
constexpr size_t cols() const
Definition: dimensions.hpp:60
constexpr size_t rows() const
Definition: dimensions.hpp:56
Definition: dimensions.hpp:150
Definition: dimensions.hpp:81
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests if a tensor type has a fixed column count.
Definition: tensor.hpp:193
Definition: config.hpp:27
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45