Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
densematrix.h
Go to the documentation of this file.
1#pragma once
2#include <vector>
3#include "predicate.h"
4
5namespace dg
6{
8
9// The rationale for having this class is so that a std::vector of pointers
10// is recognised as a matrix type rather than a recursive vector
11// in blas2 functions
12
19template<class ContainerType>
20struct DenseMatrix
21{
22 using container_type = ContainerType;
23 DenseMatrix() = default;
24 DenseMatrix( const std::vector<const ContainerType*>& columns) :
25 m_matrix( columns), m_num_cols(columns.size()) {}
26 DenseMatrix( const std::vector<const ContainerType*>& columns, unsigned num_cols) :
27 m_matrix( columns), m_num_cols(num_cols) {}
28
29 unsigned num_cols() const{
30 return m_num_cols;
31 }
32 const ContainerType * operator[] ( unsigned idx) const
33 {
34 return m_matrix[idx];
35 }
36 const std::vector<const ContainerType*>& get() const{ return m_matrix;}
37 // Should we delte copy and assignment ?
38
39 private:
40 const std::vector<const ContainerType*>& m_matrix;
41 unsigned m_num_cols;
42};
43template <class Container>
44struct TensorTraits<DenseMatrix<Container> >
45{
48 using tensor_category = DenseMatrixTag;
49};
50
52
74template<class ContainerType>
75auto asDenseMatrix( const std::vector<const ContainerType*>& in)
76{
77 // TODO could be marked deprecated because with C++17 the compiler can figure out the type of DenseMatrix
78 return DenseMatrix<ContainerType>(in);
79}
80
81
86template<class ContainerType>
87auto asDenseMatrix( const std::vector<const ContainerType*>& in, unsigned size)
88{
89 // TODO could be marked deprecated because with C++17 the compiler can figure out the type of DenseMatrix
90 return DenseMatrix<ContainerType>(in, size);
91}
92
109template<class ContainerType>
110std::vector<const ContainerType*> asPointers( const std::vector<ContainerType>& in)
111{
112 std::vector<const ContainerType*> ptrs( in.size(), nullptr);
113 for( unsigned i=0; i<ptrs.size(); i++)
114 ptrs[i] = &in[i];
115 return ptrs;
116}
117
118} // namespace dg
std::vector< const ContainerType * > asPointers(const std::vector< ContainerType > &in)
Convert a vector of vectors to a vector of pointers.
Definition densematrix.h:110
auto asDenseMatrix(const std::vector< const ContainerType * > &in)
Lightweight DenseMatrix for dg::blas2::gemv.
Definition densematrix.h:75
typename TensorTraits< std::decay_t< Vector > >::execution_policy get_execution_policy
Definition tensor_traits.h:49
typename TensorTraits< std::decay_t< Vector > >::value_type get_value_type
Definition tensor_traits.h:45
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
NoPolicyTag execution_policy
Definition tensor_traits.h:41
NotATensorTag tensor_category
Definition tensor_traits.h:40
void value_type
Definition tensor_traits.h:39