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_TYPES_TENSOR_HPP_
8 #define LIN_CORE_TYPES_TENSOR_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "base.hpp"
13 
14 #include <initializer_list>
15 
16 namespace lin {
17 namespace internal {
18 
37 template <class D>
38 class Tensor : public Base<D> {
39  static_assert(has_valid_traits<D>::value,
40  "Derived types to Tensor<...> must have valid traits");
41 
42  public:
47  typedef traits<D> Traits;
48 
49  private:
50  typename Traits::elem_t elems[Traits::max_size] = { typename Traits::elem_t(0) };
51 
52  protected:
53  using Base<D>::derived;
54 
55  public:
56  using Base<D>::rows;
57  using Base<D>::cols;
58  using Base<D>::resize;
59  using Base<D>::size;
60  using Base<D>::operator=;
61  using Base<D>::operator();
62  using Base<D>::data;
63  using Base<D>::eval;
64 
65  constexpr Tensor(Tensor<D> const &) = default;
66  constexpr Tensor(Tensor<D> &&) = default;
67  constexpr Tensor<D> &operator=(Tensor<D> const &) = default;
68  constexpr Tensor<D> &operator=(Tensor<D> &&) = default;
69 
75  constexpr Tensor() {
77  }
78 
87  constexpr Tensor(size_t r, size_t c) {
88  resize(r, c);
89  }
90 
104  template <typename T>
105  constexpr Tensor(std::initializer_list<T> const &list) {
106  derived() = list;
107  }
108 
123  template <typename T>
124  constexpr Tensor(size_t r, size_t c, std::initializer_list<T> const &list) {
125  resize(r, c);
126  derived() = list;
127  }
128 
142  template <class C>
143  constexpr Tensor(Stream<C> const &s) {
144  resize(s.rows(), s.cols());
145  derived() = s;
146  }
147 
155  constexpr typename Traits::elem_t *data() {
156  return elems;
157  }
158 };
159 } // namespace internal
160 } // namespace lin
161 
162 #endif
Value backed tensor interface with resizing support.
Definition: base.hpp:40
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: tensor.hpp:155
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
constexpr Tensor(size_t r, size_t c, std::initializer_list< T > const &list)
Constructs a tensor with elements initialized from an initializer list and the requested dimensions...
Definition: tensor.hpp:124
traits< D > Traits
Traits information for this type.
Definition: tensor.hpp:40
constexpr Tensor()
Constructs a new tensor with zeros initialized elements and the largest allowable dimensions...
Definition: tensor.hpp:75
constexpr Tensor(size_t r, size_t c)
Constructs a tensor with zeros initialized elements and the requested dimensions. ...
Definition: tensor.hpp:87
Member array backed tensor.
Definition: tensor.hpp:38
constexpr size_t rows() const
Definition: stream.hpp:76
static constexpr size_t max_cols
Max column count.
Definition: tensor.hpp:121
constexpr size_t cols() const
Definition: stream.hpp:82
constexpr Tensor(std::initializer_list< T > const &list)
Constructs a tensor with elements initialized from an initializer list.
Definition: tensor.hpp:105
_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
constexpr Tensor(Stream< C > const &s)
Constructs a tensor by copying in dimensions and elements from another tensor stream.
Definition: tensor.hpp:143
Tests if a tensor type&#39;s traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
static constexpr size_t max_rows
Max row count.
Definition: tensor.hpp:115