42 #ifndef STOKHOS_BLOCKCRSMATRIX_HPP
43 #define STOKHOS_BLOCKCRSMATRIX_HPP
48 #include "Kokkos_Core.hpp"
49 #include "Kokkos_StaticCrsGraph.hpp"
63 template <
typename BlockSpec,
typename ValueType,
class Device>
68 typedef typename execution_space::size_type
size_type;
71 typedef Kokkos::StaticCrsGraph< size_type , execution_space >
graph_type;
72 typedef Kokkos::View< value_type**, Kokkos::LayoutLeft, execution_space >
block_vector_type ;
79 template <
typename BlockSpec,
84 Kokkos::
View< VectorValue**, Kokkos::LayoutLeft, Device >,
85 Kokkos::View< VectorValue**, Kokkos::LayoutLeft, Device > >
112 KOKKOS_INLINE_FUNCTION
117 VectorValue *
const y = & m_y(0,iBlockRow);
119 const size_type iEntryBegin = m_A.graph.row_map[ iBlockRow ];
120 const size_type iEntryEnd = m_A.graph.row_map[ iBlockRow + 1 ];
123 for (
size_type j = 0 ;
j < m_A.block.dimension() ; ++
j ) { y[
j] = 0 ; }
125 for (
size_type iEntry = iEntryBegin ; iEntry < iEntryEnd ; ++iEntry ) {
126 const VectorValue *
const x = & m_x( 0 , m_A.graph.entries(iEntry) );
127 const MatrixValue *
const a = & m_A.values( 0 , iEntry );
138 const size_t row_count = A.
graph.row_map.extent(0) - 1;
139 Kokkos::parallel_for( row_count ,
Multiply(A,x,y) );
BlockCrsMatrix< BlockSpec, MatrixValue, Device > matrix_type
BlockSpec::size_type size_type
execution_space::size_type size_type
KOKKOS_INLINE_FUNCTION void operator()(const size_type iBlockRow) const
Kokkos::View< VectorValue **, Kokkos::LayoutLeft, Device > block_vector_type
Multiply(const matrix_type &A, const block_vector_type &x, block_vector_type &y)
Kokkos::View< value_type **, Kokkos::LayoutLeft, execution_space > block_vector_type
Kokkos::StaticCrsGraph< size_type, execution_space > graph_type
CRS matrix of dense blocks.
const block_vector_type m_x
static void apply(const matrix_type &A, const block_vector_type &x, block_vector_type &y)