-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from DrTimothyAldenDavis/master
v3.2.1
- Loading branch information
Showing
38 changed files
with
1,312 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
% version of SuiteSparse:GraphBLAS | ||
\date{VERSION | ||
3.2.0, | ||
Feb 20, 2020} | ||
3.2.1, | ||
Mar 10, 2020} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
% GAP: GAP benchmark methods in MATLAB (in progress) | ||
% | ||
% Files | ||
% gap - run GAP benchmarks | ||
% gap_bfs - run bfs for the GAP benchmark | ||
% gap_pagerank - PageRank of a graph (GAP benchmark algorithm) | ||
% gap_pr - run pagerank for the GAP benchmark | ||
% gap_tc - run tricount for the GAP benchmark | ||
% tric - triangle countting tests | ||
% ttest - run triangle counting tests | ||
% gap - run 5 GAP benchmarks (BFS, PR, BC, TC, SSSP; not CC) | ||
% gap_bfs - run bfs for the GAP benchmark | ||
% gap_pr - run pagerank for the GAP benchmark | ||
% gap_pagerank - PageRank of a graph (GAP benchmark algorithm) | ||
% gap_tc - run tricount for the GAP benchmark | ||
% tric - triangle counting tests | ||
% ttest - run triangle counting tests | ||
% gap_bc - run centrality for the GAP benchmark | ||
% gap_centrality - batch betweenness centrality of a graph, via GraphBLAS | ||
% gap_sssp12c - single source shortest path, via delta stepping, for GAP | ||
% gap_sssp12 - single source shortest path, via delta stepping, for GAP | ||
% gap_sssp - run SSSP for the GAP benchmark | ||
|
||
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. | ||
% http://suitesparse.com See GraphBLAS/Doc/License.txt for license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
s = [20 34 14 51] ; | ||
Prob = ssget ('HB/west0067') ; | ||
A = GrB (Prob.A, 'by row') ; | ||
A = GrB (A, 'logical') | ||
|
||
c = gap_centrality (s, A) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
%%MatrixMarket matrix coordinate real general | ||
%%GraphBLAS GrB_INT32 | ||
% Matrix from the cover of "Graph Algorithms in the Language of Linear | ||
% Algebra", Kepner and Gilbert. Note that cover shows A'. This is A. | ||
7 7 12 | ||
4 1 4 | ||
1 2 2 | ||
4 3 1 | ||
6 3 5 | ||
7 3 9 | ||
1 4 7 | ||
7 4 1 | ||
2 5 5 | ||
7 5 1 | ||
3 6 1 | ||
5 6 7 | ||
2 7 8 |
Oops, something went wrong.