From 1efc9fbc65fee5c40e65ac5c37723cd84767566d Mon Sep 17 00:00:00 2001 From: Alonso Martinez Cisneros Date: Wed, 1 Apr 2026 08:17:02 +0200 Subject: [PATCH] Fixing Base.show for sparse device COO format matrices --- src/device/sparse.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/sparse.jl b/src/device/sparse.jl index b8346eaf..8c280d23 100644 --- a/src/device/sparse.jl +++ b/src/device/sparse.jl @@ -156,7 +156,7 @@ end function Base.show(io::IO, ::MIME"text/plain", A::GPUSparseDeviceMatrixCOO) println(io, "$(length(A))-element device sparse matrix COO at:") - println(io, " rowPtr: $(A.rowPtr)") + println(io, " rowInd: $(A.rowInd)") println(io, " colInd: $(A.colInd)") print(io, " nzVal: $(A.nzVal)") end