Skip to content

Commit 8c8cf5e

Browse files
author
Will Kimmerer
authored
Update README.md
1 parent 7b66c93 commit 8c8cf5e

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

@@ -86,4 +86,4 @@ SuiteSparse author: Tim Davis
8686

8787
Mentors: Viral B Shah, Miha Zgubic, Tim Davis
8888

89-
Current maintainer: William Kimmerer
89+
Current maintainer: William Kimmerer

0 commit comments

Comments
 (0)