File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,21 +21,21 @@ julia> @btime s * v
2121julia> s = GBMatrix (s); v = GBMatrix (v);
2222# Single-threaded
2323julia> @btime s * v
24- 241.806 s (26 allocations: 1.49 GiB)
24+ 54.649 s (26 allocations: 1.49 GiB)
2525# 2 threads
2626julia> @btime s * v
27- 126.153 s (26 allocations: 1.50 GiB)
27+ 30.258 s (26 allocations: 1.50 GiB)
2828# 4 threads
2929julia> @btime s * v
30- 64.622 s (26 allocations: 1.54 GiB)
30+ 21.738 s (26 allocations: 1.54 GiB)
3131
3232# Indexing
3333julia> s = sprand (Float64, 100000 , 100000 , 0.05 );
3434julia> @btime s[1 : 10 : end , end : - 10 : 1 ]
35- 947.438 ms (11 allocations: 76.34 MiB)
35+ 344.355 ms (11 allocations: 76.32 MiB)
3636julia> s = GBMatrix (s);
3737julia> @btime s[1 : 10 : end , end : - 10 : 1 ]
38- 626.943 ms (33 allocations: 1.14 KiB )
38+ 81.750 ms (39 allocations: 152.49 MiB )
3939```
4040## Citing SuiteSparse: GraphBLAS
4141
@@ -99,4 +99,4 @@ SuiteSparse author: Tim Davis
9999
100100Mentors: Viral B Shah, Miha Zgubic, Tim Davis
101101
102- Current maintainer: William Kimmerer
102+ Current maintainer: William Kimmerer
You can’t perform that action at this time.
0 commit comments