Developer Reference for Intel® oneAPI Math Kernel Library for C
mkl_sparse_convert_coo
Out-of-place conversion of the source matrix to COO format in dest matrix handle.
Syntax
sparse_status_t mkl_sparse_convert_coo ( const sparse_matrix_t source,
const sparse_operation_t operation,
sparse_matrix_t *dest );
Include Files
mkl_spblas.h
Description
The mkl_sparse_convert_coo routine fills the internals of the dest sparse matrix handle with a COO matrix format representation of the matrix provided in source.
Input Parameters
source
Handle containing internal data.
operation
Specifies operation op() on input matrix, \(A\).
operation |
Description |
|---|---|
SPARSE_OPERATION_NON_TRANSPOSE |
\(op(A) = A\) |
SPARSE_OPERATION_TRANSPOSE |
\(op(A) = A^{T}\) |
SPARSE_OPERATION_CONJUGATE_TRANSPOSE |
\(op(A) = A^{H}\) |
Output Parameters
dest
Destination sparse matrix handle containing internal data in COO format.
Return Values
The function returns a value indicating whether the operation was successful or not, and 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. |