Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wma/simpler ptr #602

Closed
wants to merge 13 commits into from
4 changes: 1 addition & 3 deletions benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,4 @@ for (key, mtx) in [
x = Tensor(Dense{Int64}(Element{0.0, Float64, Int64}()), rand(size(A)[2]))
SUITE["parallel"]["SpMV_serial"][key] = @benchmarkable spmv_serial($A, $x)
SUITE["parallel"]["SpMV_threaded"][key] = @benchmarkable spmv_threaded($A, $x)
end

SUITE = SUITE["parallel"]
end
2 changes: 1 addition & 1 deletion docs/src/reference/internals/tensor_interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ julia> A_fbr = Tensor(SparseCOO{2}(Element(0.0)), A)
![COO Format Index Tree](../../assets/levels-A-sc2-e.png)

The COO format is compact and straightforward, but doesn't support random
access. For random access, one should use the `SparseHash` format. A full listing
access. For random access, one should use the `SparseDict` or `SparseBytemap` format. A full listing
of supported formats is described after a rough description of shared common internals of level,
relating to types and storage.

Expand Down
2 changes: 1 addition & 1 deletion src/Finch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ include("tensors/levels/sparse_point_levels.jl")
include("tensors/levels/sparse_hash_levels.jl")
include("tensors/levels/sparse_coo_levels.jl")
include("tensors/levels/sparse_band_levels.jl")
include("tensors/levels/sparse_levels.jl")
include("tensors/levels/sparse_dict_levels.jl")
include("tensors/levels/sparse_bytemap_levels.jl")
include("tensors/levels/sparse_vbl_levels.jl")
include("tensors/levels/dense_levels.jl")
Expand Down
Loading
Loading