Implement cusparseXcoo2csr.

This commit is contained in:
Seunghoon Lee 2024-03-20 10:30:31 +09:00
parent f52edbd132
commit 4fab2af0f4
No known key found for this signature in database
GPG key ID: 91024D13C6CA4722

View file

@ -5661,7 +5661,14 @@ pub unsafe extern "system" fn cusparseXcoo2csr(
csrSortedRowPtr: *mut ::std::os::raw::c_int,
idxBase: cusparseIndexBase_t,
) -> cusparseStatus_t {
crate::unsupported()
crate::xcoo2csr(
handle,
cooRowInd,
nnz,
m,
csrSortedRowPtr,
idxBase,
)
}
#[no_mangle]