Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasyVR committed Aug 30, 2022
1 parent 5dde702 commit 777c5aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/test_build_cusm_from_coo.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
y.fill(0.0)

A = ti.linalg.SparseMatrix(n=4, m=4, dtype=ti.float32)
A.build_coo(d_coo_val, d_coo_col, d_coo_row)
A.build_coo(d_coo_row, d_coo_col, d_coo_val)

A.spmv(x, y)

Expand Down

0 comments on commit 777c5aa

Please sign in to comment.