lin
dimensions.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_DIMENSIONS_HPP_
8 #define LIN_CORE_TYPES_DIMENSIONS_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 
13 #include <type_traits>
14 
15 namespace lin {
16 namespace internal {
17 
44 template <class D, typename = void>
46 #ifdef IN_DOXYGEN
47 {
48  public:
49  constexpr Dimensions() = default;
50  constexpr Dimensions(Dimensions<D> const &) = default;
51  constexpr Dimensions(Dimensions<D> &&) = default;
52  constexpr Dimensions<D> &operator=(Dimensions<D> const &) = default;
53  constexpr Dimensions<D> &operator=(Dimensions<D> &&) = default;
56  constexpr size_t rows() const { return 0; }
57 
60  constexpr size_t cols() const { return 0; }
61 
75  constexpr void resize(size_t r, size_t c) { }
76 }
77 #endif
78 ;
79 
80 template <class D>
81 class Dimensions<D, std::enable_if_t<has_fixed_dimensions<D>::value>> {
82  public:
84  /* Defaulted/deleted constructors and assignment operators. */
85  constexpr Dimensions() = default;
86  constexpr Dimensions(This const &) = default;
87  constexpr Dimensions(This &&) = default;
88  constexpr This &operator=(This const &) = default;
89  constexpr This &operator=(This &&) = default;
90  /* Getters and setters for tensor size. */
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) {
94  LIN_ASSERT(r == D::Traits::rows);
95  LIN_ASSERT(c == D::Traits::cols);
96  }
97 };
98 
99 template <class D>
100 class Dimensions<D, std::enable_if_t<
101  conjunction<has_fixed_rows<D>, has_strictly_bounded_cols<D>>::value>> {
102  private:
103  size_t _cols;
104 
105  public:
106  typedef Dimensions<D, std::enable_if_t<
108  /* Defaulted/deleted constructors and assignment operators. */
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;
114  /* Getters and setters for tensor size. */
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) {
118  LIN_ASSERT(r == D::Traits::rows);
119  LIN_ASSERT(c > 0 && c <= D::Traits::max_cols);
120  _cols = c;
121  }
122 };
123 
124 template <class D>
125 class Dimensions<D, std::enable_if_t<
126  conjunction<has_strictly_bounded_rows<D>, has_fixed_cols<D>>::value>> {
127  private:
128  size_t _rows;
129 
130  public:
131  typedef Dimensions<D, std::enable_if_t<
133  /* Defaulted/deleted constructors and assignment operators. */
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;
139  /* Getters and setters for tensor size. */
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);
144  LIN_ASSERT(c == D::Traits::cols);
145  _rows = r;
146  }
147 };
148 
149 template <class D>
150 class Dimensions<D, std::enable_if_t<has_strictly_bounded_dimensions<D>::value>> {
151  private:
152  size_t _rows, _cols;
153 
154  public:
156  /* Defaulted/deleted constructors and assignment operators. */
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;
162  /* Getters and setters for tensor size. */
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);
168  _rows = r;
169  _cols = c;
170  }
171 };
172 } // namespace internal
173 } // namespace lin
174 
175 #endif
Tests if a tensor type has a strictly bounded column count.
Definition: tensor.hpp:246
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
constexpr size_t cols() const
Definition: dimensions.hpp:60
constexpr size_t rows() const
Definition: dimensions.hpp:56
#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