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