Skip to content

Commit

Permalink
Implement cusparseXcoo2csr.
Browse files Browse the repository at this point in the history
  • Loading branch information
lshqqytiger committed Mar 20, 2024
1 parent f52edbd commit 4fab2af
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion zluda_sparse/src/cusparse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 4fab2af

Please sign in to comment.