pub unsafe extern "C" fn cusparseCscGet(
spMatDescr: cusparseSpMatDescr_t,
rows: *mut i64,
cols: *mut i64,
nnz: *mut i64,
cscColOffsets: *mut *mut c_void,
cscRowInd: *mut *mut c_void,
cscValues: *mut *mut c_void,
cscColOffsetsType: *mut cusparseIndexType_t,
cscRowIndType: *mut cusparseIndexType_t,
idxBase: *mut cusparseIndexBase_t,
valueType: *mut cudaDataType,
) -> cusparseStatus_tExpand description
This function returns the fields of the sparse matrix descriptor spMatDescr stored in CSC format.
ยงParameters
spMatDescr: Sparse matrix descriptor.rows: Number of rows of the sparse matrix.cols: Number of columns of the sparse matrix.nnz: Number of non-zero entries of the sparse matrix.cscColOffsets: Col offsets of the sparse matrix. Array withcols + 1elements.cscRowInd: Row indices of the sparse matrix. Array withnnzelements.cscValues: Values of the sparse matrix. Array withnnzelements.cscColOffsetsType: Data type ofcscColOffsets.cscRowIndType: Data type ofcscRowInd.idxBase: Index base ofcscColOffsetsandcscRowInd.valueType: Datatype ofcscValues.