lin
stream_constants.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_GENERATORS_STREAM_CONSTANTS_HPP_
8 #define LIN_GENERATORS_STREAM_CONSTANTS_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
34 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
35 class StreamConstants : public Stream<StreamConstants<T, R, C, MR, MC>>,
36  public Dimensions<StreamConstants<T, R, C, MR, MC>> {
37  public:
43 
44  private:
47  typename Traits::elem_t const t;
48 
49  protected:
52 
53  public:
58 
59  constexpr StreamConstants() = delete;
60  constexpr StreamConstants(StreamConstants<T, R, C, MR, MC> const &) = default;
61  constexpr StreamConstants(StreamConstants<T, R, C, MR, MC> &&) = default;
62  constexpr StreamConstants<T, R, C, MR, MC> &operator=(StreamConstants<T, R, C, MR, MC> const &) = default;
63  constexpr StreamConstants<T, R, C, MR, MC> &operator=(StreamConstants<T, R, C, MR, MC> &&) = default;
64 
72  constexpr StreamConstants(T t, size_t r, size_t c) : t(t) {
73  resize(r, c);
74  }
75 
84  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
85  LIN_ASSERT(0 <= i && i <= rows());
86  LIN_ASSERT(0 <= j && j <= cols());
87 
88  return t;
89  }
90 
98  constexpr typename Traits::elem_t operator()(size_t i) const {
99  LIN_ASSERT(0 <= i && i <= size());
100 
101  return t;
102  }
103 };
104 
105 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
106 struct _elem<StreamConstants<T, R, C, MR, MC>> {
107  typedef T type;
108 };
109 
110 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
111 struct _dims<StreamConstants<T, R, C, MR, MC>> {
112  static constexpr size_t rows = R;
113  static constexpr size_t cols = C;
114  static constexpr size_t max_rows = MR;
115  static constexpr size_t max_cols = MC;
116 };
117 } // namespace internal
118 } // namespace lin
119 
120 #endif
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr Traits::elem_t operator()(size_t i) const
Retrieves the requested tensor elements value, which, in this case is a specified constant...
Definition: stream_constants.hpp:98
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Retrieves the requested tensor elements value, which, in this case is a specified constant...
Definition: stream_constants.hpp:84
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr StreamConstants< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
constexpr StreamConstants(T t, size_t r, size_t c)
Constructs a tensor constants stream of the requested size and value.
Definition: stream_constants.hpp:72
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tensor stream where all element accesses return the same constant value.
Definition: stream_constants.hpp:35
constexpr size_t rows() const
Definition: stream.hpp:76
Traits::elem_t const t
Constant value returned by element accesses.
Definition: stream_constants.hpp:47
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
traits< StreamConstants< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: stream_constants.hpp:42
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45
Provides a specific tensor type&#39;s compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157