Intel® oneAPI Math Kernel Library Developer Reference - Fortran
Converts internal matrix representation to BSR format or changes BSR block size.
stat = mkl_sparse_convert_bsr (source, block_size, block_layout, operation, dest)
Themkl_sparse_convert_bsr routine converts internal matrix representation to BSR format or changes BSR block size.
SPARSE_MATRIX_T.
Handle containing internal data.
C_INT.
Size of the block in the output structure.
sparse_index_base_t.
Specifies layout of blocks:
SPARSE_LAYOUT_ROW_MAJOR |
Storage of elements of blocks uses row major layout. |
SPARSE_LAYOUT_COLUMN_MAJOR |
Storage of elements of blocks uses column major layout. |
C_INT.
Specifies operation op() on input matrix.
SPARSE_OPERATION_NON_TRANSPOSE |
Non-transpose, op(A) = A. |
SPARSE_OPERATION_TRANSPOSE |
Transpose, op(A) = AT. |
SPARSE_OPERATION_CONJUGATE_TRANSPOSE |
Conjugate transpose, op(A) = AH. |
dest |
SPARSE_MATRIX_T. Handle containing internal data. |
||||||||||||||
stat |
INTEGER Value indicating whether the operation was successful or not, and why:
|