pub unsafe extern "C" fn cusparseCscSetPointers(
spMatDescr: cusparseSpMatDescr_t,
cscColOffsets: *mut c_void,
cscRowInd: *mut c_void,
cscValues: *mut c_void,
) -> cusparseStatus_tExpand description
This function sets the pointers of the sparse matrix descriptor spMatDescr.
cusparseCscSetPointers has the following constraints:
cscColOffsets,cscRowInd, andcscValuesmust be aligned to the size of their corresponding datatypes specified inspMatDescr. See cudaDataType_t for the description of the datatypes.
ยงParameters
spMatDescr: Sparse matrix descriptor.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.