Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions src/DeviceSparseArrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import KernelAbstractions:
@localmem,
@synchronize,
@private,
@uniform
@uniform,
@print,
@Const
using AcceleratedKernels

import Adapt
Expand All @@ -29,13 +31,17 @@ export AbstractDeviceSparseArray,
AbstractDeviceSparseVector, AbstractDeviceSparseMatrix, AbstractDeviceSparseVecOrMat

export DeviceSparseVector,
DeviceSparseMatrixCSC, DeviceSparseMatrixCSR, DeviceSparseMatrixCOO
DeviceSparseMatrixCSC,
DeviceSparseMatrixCSR,
DeviceSparseMatrixCOO,
DeviceSparseMatrixSELL

include("core.jl")
include("helpers.jl")
include("vector.jl")
include("matrix_csc.jl")
include("matrix_csr.jl")
include("matrix_coo.jl")
include("matrix_sell.jl")

end # module
Loading
Loading