28 unsigned n = op1.
size();
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);
61 unsigned n = op.
size();
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);
66 for(
unsigned k=0; k<N; k++)
67 for(
unsigned i=0; i<n; i++)
69 A_row_offsets[k*n+i+1] = A_row_offsets[k*n+i] + n;
70 for(
unsigned j=0; j<n; j++)
73 A_column_indices[(k*n+i)*n+j] = k*n+j;
74 A_values[(k*n+i)*n+j] = op(i,j);
77 return {n*N, n*N, A_row_offsets, A_column_indices, A_values};
95 assert( left.
size() == right.
size());
96 unsigned n = left.
size();
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