lin
matrix_mapping_reference.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_REFERENCES_MATRIX_MAPPING_REFERENCE_HPP_
8 #define LIN_REFERENCES_MATRIX_MAPPING_REFERENCE_HPP_
9 
10 #include "../core.hpp"
12 
13 namespace lin {
14 namespace internal {
15 
36 template <class E, size_t R, size_t C, size_t MR, size_t MC>
37 class MatrixMappingReference : public TensorMappingReference<MatrixMappingReference<E, R, C, MR, MC>, E> {
39  "Derived types to MatrixMappingReference<...> must have matrix traits");
40 
41  public:
47 
48  protected:
51 
52  public:
60 
61  constexpr MatrixMappingReference() = delete;
66 };
67 
68 template <class E, size_t R, size_t C, size_t MR, size_t MC>
69 struct _elem<MatrixMappingReference<E, R, C, MR, MC>> {
70  typedef _elem_t<E> type;
71 };
72 
73 template <class E, size_t R, size_t C, size_t MR, size_t MC>
74 struct _dims<MatrixMappingReference<E, R, C, MR, MC>> {
75  static constexpr size_t rows = R;
76  static constexpr size_t cols = C;
77  static constexpr size_t max_rows = MR;
78  static constexpr size_t max_cols = MC;
79 };
80 } // namespace internal
81 } // namespace lin
82 
83 #endif
traits< MatrixMappingReference< E, R, C, MR, MC > > Traits
Traits information for this type.
Definition: matrix_mapping_reference.hpp:39
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 size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr MatrixMappingReference< E, R, C, MR, MC > & derived()
Definition: stream.hpp:57
constexpr size_t rows() const
Definition: dimensions.hpp:56
Generic matrix reference with read and write access.
Definition: matrix_mapping_reference.hpp:37
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
Generic tensor reference with read and write access.
Definition: tensor_mapping_reference.hpp:36
Definition: config.hpp:27
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