Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
operator_tensor.h
Go to the documentation of this file.
1#pragma once
2
3#include <algorithm>
4
5#include "operator.h"
6
7namespace dg
8{
9
12
13
24template< class T>
26{
27 assert( op1.size() == op2.size());
28 unsigned n = op1.size();
29 SquareMatrix<T> prod( n*n);
30 for( unsigned i=0; i<n; i++)
31 for( unsigned j=0; j<n; j++)
32 for( unsigned k=0; k<n; k++)
33 for( unsigned l=0; l<n; l++)
34 prod(i*n+k, j*n+l) = op1(i,j)*op2(k,l);
35 return prod;
36}
37
38
57template< class T>
59{
60 assert( N>0);
61 unsigned n = op.size();
62 // allocate output matrix
63 thrust::host_vector<int> A_row_offsets(n*N+1), A_column_indices( N*n*n);
64 thrust::host_vector<T> A_values( N*n*n);
65 A_row_offsets[0] = 0;
66 for( unsigned k=0; k<N; k++)
67 for( unsigned i=0; i<n; i++)
68 {
69 A_row_offsets[k*n+i+1] = A_row_offsets[k*n+i] + n;
70 for( unsigned j=0; j<n; j++)
71 //if( op(i,j) != 0)
72 {
73 A_column_indices[(k*n+i)*n+j] = k*n+j;
74 A_values[(k*n+i)*n+j] = op(i,j);
75 }
76 }
77 return {n*N, n*N, A_row_offsets, A_column_indices, A_values};
78}
79
80
92template< class T>
94{
95 assert( left.size() == right.size());
96 unsigned n = left.size();
97 unsigned N = m.num_rows()/n;
98 return tensorproduct( N, left)*(m*tensorproduct( N, right));
99}
100
101
102
104
105
106}//namespace dg
107
108
A square nxn matrix.
Definition operator.h:31
unsigned size() const
Size n of the SquareMatrix.
Definition operator.h:110
SquareMatrix< T > tensorproduct(const SquareMatrix< T > &op1, const SquareMatrix< T > &op2)
Form the tensor product between two operators.
Definition operator_tensor.h:25
dg::SparseMatrix< int, T, thrust::host_vector > sandwich(const SquareMatrix< T > &left, const dg::SparseMatrix< int, T, thrust::host_vector > &m, const SquareMatrix< T > &right)
Multiply 1d matrices by diagonal block matrices from left and right.
Definition operator_tensor.h:93
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
A CSR formatted sparse matrix.
Definition sparsematrix.h:96
size_t num_rows() const
Number of rows in matrix.
Definition sparsematrix.h:274