lin
stream_identity.hpp
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_GENERATORS_STREAM_IDENTITY_HPP_
8 #define LIN_GENERATORS_STREAM_IDENTITY_HPP_
9 
10 #include "../core.hpp"
11 
12 namespace lin {
13 namespace internal {
14 
32 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
33 class StreamIdentity : public Stream<StreamIdentity<T, R, C, MR, MC>>,
34  public Dimensions<StreamIdentity<T, R, C, MR, MC>> {
35  static_assert(is_square<StreamIdentity<T, R, C, MR, MC>>::value,
36  "StreamIdentity<...> must have square traits");
37 
38  public:
44 
45  protected:
48 
49  public:
54 
55  constexpr StreamIdentity() = delete;
56  constexpr StreamIdentity(StreamIdentity<T, R, C, MR, MC> const &) = default;
57  constexpr StreamIdentity(StreamIdentity<T, R, C, MR, MC> &&) = default;
58  constexpr StreamIdentity<T, R, C, MR, MC> &operator=(StreamIdentity<T, R, C, MR, MC> const &) = default;
59  constexpr StreamIdentity<T, R, C, MR, MC> &operator=(StreamIdentity<T, R, C, MR, MC> &&) = default;
60 
66  constexpr StreamIdentity(size_t r, size_t c) {
67  LIN_ASSERT(r == c);
68 
69  resize(r, c);
70  }
71 
80  constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
81  LIN_ASSERT(0 <= i && i <= rows());
82  LIN_ASSERT(0 <= j && j <= cols());
83 
84  return typename Traits::elem_t(i == j);
85  }
86 
94  constexpr typename Traits::elem_t operator()(size_t i) const {
95  LIN_ASSERT(0 <= i && i <= size());
96 
97  return (*this)(i / cols(), i % cols());
98  }
99 };
100 
101 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
102 struct _elem<StreamIdentity<T, R, C, MR, MC>> {
103  typedef T type;
104 };
105 
106 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
107 struct _dims<StreamIdentity<T, R, C, MR, MC>> {
108  static constexpr size_t rows = R;
109  static constexpr size_t cols = C;
110  static constexpr size_t max_rows = MR;
111  static constexpr size_t max_cols = MC;
112 };
113 } // namespace internal
114 } // namespace lin
115 
116 #endif
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
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
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr StreamIdentity< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tests if a tensor type is "square".
Definition: tensor.hpp:389
constexpr size_t rows() const
Definition: stream.hpp:76
traits< StreamIdentity< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: stream_identity.hpp:36
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Retrieves the requested tensor elements value, which, in this case is one when on the diagonal and ze...
Definition: stream_identity.hpp:80
Tensor stream where all element accesses specify an identity matrix.
Definition: stream_identity.hpp:33
Definition: config.hpp:27
constexpr Traits::elem_t operator()(size_t i) const
Retrieves the requested tensor elements value, which, in this case is one when on the diagonal and ze...
Definition: stream_identity.hpp:94
constexpr StreamIdentity(size_t r, size_t c)
Constructs a tensor stream that specifies the identity matrix.
Definition: stream_identity.hpp:66
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