Developer Reference for Intel® oneAPI Math Kernel Library for Fortran
mkl_sparse_copy
Out-of-place copy of the source matrix to the dest matrix handle.
Syntax
stat = mkl_sparse_copy( source, descr, dest )
Include Files
mkl_spblas.f90
Description
The mkl_sparse_copy routine creates a copy of the source matrix handle to the dest matrix handle.
Input Parameters
source
SPARSE_MATRIX_T .
Handle containing internal data.
descr
MATRIX_DESCR .
Descriptor specifying sparse matrix properties.
sparse_matrix_type_t type |
Specifies the type of a sparse matrix:
|
sparse_fill_mode_t mode |
Specifies the triangular matrix part for symmetric, Hermitian, triangular, and block-triangular matrices:
|
sparse_diag_type_t diag |
Specifies diagonal type for non-general matrices:
|
Output Parameters
dest
SPARSE_MATRIX_T.
Destination sparse matrix handle containing internal data in same format as source matrix handle.
stat
INTEGER
Value indicating whether the operation was successful, and if not, why:
SPARSE_STATUS_SUCCESS |
The operation was successful. |
SPARSE_STATUS_NOT_INITIALIZED |
The routine encountered an empty handle or matrix array. |
SPARSE_STATUS_ALLOC_FAILED |
Internal memory allocation failed. |
SPARSE_STATUS_INVALID_VALUE |
The input parameters contain an invalid value. |
SPARSE_STATUS_EXECUTION_FAILED |
Execution failed. |
SPARSE_STATUS_INTERNAL_ERROR |
An error in algorithm implementation occurred. |
SPARSE_STATUS_NOT_SUPPORTED |
The requested operation is not supported. |
Return Values
See Output Parameter, stat.