Skip to content

Commit

Permalink
Fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Dec 5, 2023
1 parent 1b288d9 commit fe2b14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/CUDA/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ for (SparseMatrixType, BlasType) in ((:(CuSparseMatrixCSR{T}), :BlasFloat),
CUSPARSE.version() v"12.2" || error("This operation is only support by CUDA ≥ v12.3")
descB = CUSPARSE.CuSparseMatrixDescriptor(B, 'O')
A.descA = descB
CUSPARSE.cusparseSpSV_updateMatrix(CUSPARSE.handle(), A.descT, A.nzVal, 'G')
CUSPARSE.cusparseSpSV_updateMatrix(CUSPARSE.handle(), A.descT, B.nzVal, 'G')
return A
end

Expand Down

0 comments on commit fe2b14e

Please sign in to comment.