pub unsafe extern "C" fn cusparseZcsr2bsr(
handle: cusparseHandle_t,
dirA: cusparseDirection_t,
m: c_int,
n: c_int,
descrA: cusparseMatDescr_t,
csrSortedValA: *const cuDoubleComplex,
csrSortedRowPtrA: *const c_int,
csrSortedColIndA: *const c_int,
blockDim: c_int,
descrC: cusparseMatDescr_t,
bsrSortedValC: *mut cuDoubleComplex,
bsrSortedRowPtrC: *mut c_int,
bsrSortedColIndC: *mut c_int,
) -> cusparseStatus_t