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
21
21
julia> s = GBMatrix (s); v = GBMatrix (v);
22
22
# Single-threaded
23
23
julia> @btime s * v
24
- 241.806 s (26 allocations: 1.49 GiB)
24
+ 54.649 s (26 allocations: 1.49 GiB)
25
25
# 2 threads
26
26
julia> @btime s * v
27
- 126.153 s (26 allocations: 1.50 GiB)
27
+ 30.258 s (26 allocations: 1.50 GiB)
28
28
# 4 threads
29
29
julia> @btime s * v
30
- 64.622 s (26 allocations: 1.54 GiB)
30
+ 21.738 s (26 allocations: 1.54 GiB)
31
31
32
32
# Indexing
33
33
julia> s = sprand (Float64, 100000 , 100000 , 0.05 );
34
34
julia> @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)
36
36
julia> s = GBMatrix (s);
37
37
julia> @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 )
39
39
```
40
40
## Citing SuiteSparse: GraphBLAS
41
41
@@ -86,4 +86,4 @@ SuiteSparse author: Tim Davis
86
86
87
87
Mentors: Viral B Shah, Miha Zgubic, Tim Davis
88
88
89
- Current maintainer: William Kimmerer
89
+ Current maintainer: William Kimmerer
You can’t perform that action at this time.
0 commit comments