lin
mapping_transpose.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_OPERATIONS_MAPPING_TRANSPOSE_HPP_
8 #define LIN_CORE_OPERATIONS_MAPPING_TRANSPOSE_HPP_
9 
10 namespace lin {
11 namespace internal {
12 
21 template <class C>
22 class MappingTranspose : public Mapping<MappingTranspose<C>> {
23  private:
27 
28  public:
34 
35  protected:
37 
38  public:
41  using Mapping<MappingTranspose<C>>::operator();
42  using Mapping<MappingTranspose<C>>::operator=;
43 
44  constexpr MappingTranspose() = delete;
45  constexpr MappingTranspose(MappingTranspose<C> const &) = default;
46  constexpr MappingTranspose(MappingTranspose<C> &&) = default;
47  constexpr MappingTranspose<C> &operator=(MappingTranspose<C> const &) = default;
48  constexpr MappingTranspose<C> &operator=(MappingTranspose<C> &&) = default;
49 
55  : c(c) { }
56 
59  constexpr size_t rows() const {
60  return c.cols();
61  }
62 
65  constexpr size_t cols() const {
66  return c.rows();
67  }
68 
76  constexpr typename Traits::elem_t &operator()(size_t i, size_t j) {
77  return c(j, i);
78  }
79 
89  constexpr typename Traits::elem_t &operator()(size_t i) {
90  return (*this)(i / cols(), i % cols());
91  }
92 };
93 
94 template <class C>
95 struct _elem<MappingTranspose<C>> : _elem<C> { };
96 
97 template <class C>
98 struct _dims<MappingTranspose<C>> {
99  static constexpr size_t rows = _dims<C>::cols;
100  static constexpr size_t cols = _dims<C>::rows;
101  static constexpr size_t max_rows = _dims<C>::max_cols;
102  static constexpr size_t max_cols = _dims<C>::max_rows;
103 };
104 } // namespace internal
105 } // namespace lin
106 
107 #endif
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Read write access to the requested tensor element.
Definition: mapping_transpose.hpp:76
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
Mapping< C > & c
Mapping reference.
Definition: mapping_transpose.hpp:26
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 MappingTranspose< C > & derived()
Definition: stream.hpp:57
Proxy to a lazily evalutated transpose operation.
Definition: mapping_transpose.hpp:22
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr size_t cols() const
Definition: mapping_transpose.hpp:65
traits< MappingTranspose< C > > Traits
Traits information for this type.
Definition: mapping_transpose.hpp:33
constexpr MappingTranspose(Mapping< C > &c)
Constructs a proxy to a tensor transpose operation.
Definition: mapping_transpose.hpp:54
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
constexpr Traits::elem_t & operator()(size_t i)
Read write access to the requested tensor element.
Definition: mapping_transpose.hpp:89
constexpr size_t rows() const
Definition: mapping_transpose.hpp:59
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