Skip to content

Commit a49f9fb

Browse files
committed
2 parents e0b1096 + 8c8cf5e commit a49f9fb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ julia> @btime s * v
2121
julia> s = GBMatrix(s); v = GBMatrix(v);
2222
# Single-threaded
2323
julia> @btime s * v
24-
241.806 s (26 allocations: 1.49 GiB)
24+
54.649 s (26 allocations: 1.49 GiB)
2525
# 2 threads
2626
julia> @btime s * v
27-
126.153 s (26 allocations: 1.50 GiB)
27+
30.258 s (26 allocations: 1.50 GiB)
2828
# 4 threads
2929
julia> @btime s * v
30-
64.622 s (26 allocations: 1.54 GiB)
30+
21.738 s (26 allocations: 1.54 GiB)
3131

3232
# Indexing
3333
julia> s = sprand(Float64, 100000, 100000, 0.05);
3434
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)
3636
julia> s = GBMatrix(s);
3737
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)
3939
```
4040
## Citing SuiteSparse:GraphBLAS
4141

@@ -99,4 +99,4 @@ SuiteSparse author: Tim Davis
9999

100100
Mentors: Viral B Shah, Miha Zgubic, Tim Davis
101101

102-
Current maintainer: William Kimmerer
102+
Current maintainer: William Kimmerer

0 commit comments

Comments
 (0)