Skip to main content

cusparseZcsr2csr_compress

Function cusparseZcsr2csr_compress 

Source
pub unsafe extern "C" fn cusparseZcsr2csr_compress(
    handle: cusparseHandle_t,
    m: c_int,
    n: c_int,
    descrA: cusparseMatDescr_t,
    csrSortedValA: *const cuDoubleComplex,
    csrSortedColIndA: *const c_int,
    csrSortedRowPtrA: *const c_int,
    nnzA: c_int,
    nnzPerRow: *const c_int,
    csrSortedValC: *mut cuDoubleComplex,
    csrSortedColIndC: *mut c_int,
    csrSortedRowPtrC: *mut c_int,
    tol: cuDoubleComplex,
) -> cusparseStatus_t