Skip to content

Commit

Permalink
Fix an error in CudssMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Dec 12, 2024
1 parent 65f9c6f commit 3171047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ mutable struct CudssMatrix{T}
nrows = [size(Aᵢ,1) for Aᵢ in A]
ncols = [size(Aᵢ,2) for Aᵢ in A]
nnzA = [nnz(Aᵢ) for Aᵢ in A]
rowsPtrs = [Aᵢ.rowPtr for Aᵢ in A]
rowPtrs = [Aᵢ.rowPtr for Aᵢ in A]
colVals = [Aᵢ.colVal for Aᵢ in A]
nzVals = [Aᵢ.nzVal for Aᵢ in A]
PTR_CU_NULL = Ptr{CuPtr{Cvoid}}()
Expand Down

0 comments on commit 3171047

Please sign in to comment.