Skip to content

Commit 4fab2af

Browse files
committed
Implement cusparseXcoo2csr.
1 parent f52edbd commit 4fab2af

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

zluda_sparse/src/cusparse.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -5661,7 +5661,14 @@ pub unsafe extern "system" fn cusparseXcoo2csr(
56615661
csrSortedRowPtr: *mut ::std::os::raw::c_int,
56625662
idxBase: cusparseIndexBase_t,
56635663
) -> cusparseStatus_t {
5664-
crate::unsupported()
5664+
crate::xcoo2csr(
5665+
handle,
5666+
cooRowInd,
5667+
nnz,
5668+
m,
5669+
csrSortedRowPtr,
5670+
idxBase,
5671+
)
56655672
}
56665673

56675674
#[no_mangle]

0 commit comments

Comments
 (0)