KokkosSparse::BsrMatrix¶
Defined in header KokkosSparse_BsrMatrix.hpp
template <class ScalarType, class OrdinalType, class Device, class MemoryTraits = void,
class SizeType = KokkosKernels::default_size_type>
class BsrMatrix;
KokkosSparse::BsrMatrix
provides a block compressed sparse row implementation of a sparse matrix, as described, for example, in Saad (2nd ed.).
Template Parameters¶
- ScalarType:
type of the values stored in the matrix.
- OrdinalType:
type of the indices storied in the matrix (column indices).
- Device:
type of the
Kokkos::Device
of the matrix- MemoryTraits:
type of memory traits used for the views of the matrix.
- SizeType:
type used to store row offsets.
Member Types¶
Memeber type |
Definition |
---|---|
execution_space |
Alias for Device::execution_space. |
memory_space |
Alias for Device::memory_space. |
device_type |
Device associated with the matrix. |
value_type |
Type of the values stored in the matrix, alias for ScalarType. |
ordinal_type |
Type of the indices stored in the matrix, alias for OrdinalType. |
size_type |
Type of the offsets stored in the matrix, alias for SizeType. |
memory_traits |
Alias for MemoryTraits. |
HostMirror |
CrsMatrix type templated on ScalarType, OrdinalType, host_mirror_space, MemoryTraits and SizeType. |
StaticCrsGraph |
Type of the underlying static crs graph. |
staticcsrgraph |
Alias for StaticCrsGraph. |
index_type |
Type of the view storing the column indices in the underlying static crs graph. |
const_ordinal_type |
Const variant for the type of the column indices stored in index_type. |
non_const_ordinal_type |
Non-const variant for the type of the column indices stored in index_type. |
row_map_type |
Type of the view storing the row offsets in the underlying static crs graph. |
const_size_type |
Const variant for the type of the offsets stored in row_map_type. |
non_const_size_type |
Non-const variant for the type of the offsets stored in row_map_type. |
values_type |
Type of the view storing the values stored in the matrix. |
const_value_type |
Const variant for the type of the values stored in values_type. |
non_const_value_type |
Non-const variant for the type of the values stored in values_type. |
block_layout_type |
The Kokkos layout used when extracting blocks from the matrix. It is an alias for |
block_type |
Type used to access of a view of a block as Kokkos::View or rank 2. |
const_block_type |
Type used to access of a const view of a block as Kokkos::View or rank 2. |
Data Members¶
Data Member |
Definition |
---|---|
staticcrsgraph_type graph |
The underlying static crs graph of the matrix storing its sparsity pattern. |
values_type values |
The values stored in the matrix. |
const ordinal blockDim_ |
The size of the blocks stored by the matrix. |
Member Functions¶
Name |
Definition |
---|---|
Construct a CrsMatrix from inputs, this can perform shallow or deep copies of input parameters depending on inputs and semantic. |
|
Assignment operator, will attempt to assign the data (graph and values) of the right hand side to the left hand side. If the assignment operator of graph or values fail, matrix assignment fails. |
|
Returns the number of rows in the matrix. |
|
Returns the number of columns in the matrix. |
|
Returns the dimension of the blocks stored in the matrix. |
|
Returns the number of structural non-zero values in the matrix (some of these might actually store zero). |
|
Returns a SparseRowView object from a row of the matrix. |
|
Returns a SparseRowViewConst object from a row of the matrix. |
|
Return a view of the i-th block in the matrix. |
|
Return a const view of the i-th block in the matrix. |
operator=¶
template <typename aScalarType, typename aOrdinalType, class aDevice, class aMemoryTraits, typename aSizeType>
BsrMatrix& operator=(const BsrMatrix<aScalarType, aOrdinalType, aDevice, aMemoryTraits, aSizeType>& mtx);
Attempts to assign the underlying graph
and values
of the input matrix mtx
to the matrix.
numRows¶
KOKKOS_INLINE_FUNCTION ordinal_type numRows() const;
Returns the number of rows in the matrix.
numCols¶
KOKKOS_INLINE_FUNCTION ordinal_type numCols() const;
Returns the number of columns in the matrix.
blockDim¶
KOKKOS_INLINE_FUNCTION ordinal_type blockDim() const;
Returns the dimension of the blocks stored by the matrix.
nnz¶
KOKKOS_INLINE_FUNCTION size_type nnz() const;
Returns the number of non-zero entries in the matrix.
block_row¶
KOKKOS_INLINE_FUNCTION
BsrRowView<BsrMatrix> block_row(const ordinal_type i) const;
Returns a view of the i-th block row of the matrix as a BsrRowView.
block_row_Const¶
KOKKOS_INLINE_FUNCTION
BsrRowViewConst<BsrMatrix> block_row_Const(const ordinal_type i) const;
Returns a view of the i-th block row of the matrix as a BsrRowViewConst.
unmanaged_block¶
KOKKOS_INLINE_FUNCTION
block_type unmanaged_block(const size_type i) const;
Return a view of the i-th block in the matrix.
unmanaged_block_const¶
KOKKOS_INLINE_FUNCTION
const_block_type unmanaged_block_const(const size_type i) const;
Return a const view of the i-th block in the matrix.
Example¶
// Namespaces / typedefs
using namespace KokkosSparse;
using namespace KokkosSparse::Experimental;
using Crs = CrsMatrix<scalar_t, lno_t, device, void, size_type>;
using Bsr = BsrMatrix<scalar_t, lno_t, device, void, size_type>;
//
// Convert a Crs to a Bsr
//
// Make a random Crs
constexpr auto nrows = 5000;
constexpr auto diagDominance = 2;
const size_type nnz = 10 * nrows;
auto A = KokkosSparse::Impl::kk_generate_diagonally_dominant_sparse_matrix<Crs>(nrows, nrows, nnz, 0, lno_t(0.01 * nrows), diagDominance);
// Convert it to Bsr with block_dim= 4
const size_type block_dim = 4;
Bsr bsr(A, block_size);