Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/cusparse/src/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ GPU.
Most CUSPARSE operations work with CSR formatted matrices, rather
than CSC.
"""
mutable struct CuSparseMatrixCSC{Tv, Ti} <: GPUArrays.AbstractGPUSparseMatrixCSC{Tv, Ti}
mutable struct CuSparseMatrixCSC{Tv, Ti} <: AbstractCuSparseMatrix{Tv, Ti}
colPtr::CuVector{Ti}
rowVal::CuVector{Ti}
nzVal::CuVector{Tv}
Expand Down Expand Up @@ -82,7 +82,7 @@ GPU.
!!! compat "CUDA 11"
Support of indices type rather than `Cint` (`Int32`) requires at least CUDA 11.
"""
mutable struct CuSparseMatrixCSR{Tv, Ti} <: GPUArrays.AbstractGPUSparseMatrixCSR{Tv, Ti}
mutable struct CuSparseMatrixCSR{Tv, Ti} <: AbstractCuSparseMatrix{Tv, Ti}
rowPtr::CuVector{Ti}
colVal::CuVector{Ti}
nzVal::CuVector{Tv}
Expand Down