-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add input arg option to automate block factor choice
- Loading branch information
Showing
15 changed files
with
106 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# Run GPU SRB (sense-reversing barrier) variant | ||
../../bin/bfs_gsrb -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/bfs_gsrb -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
# Run GPU SRB variant that uses CPU-style SRBs | ||
../../bin/bfs_gcpusrb -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/bfs_gcpusrb -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
# Run CUDA Cooperative Graphs (CCG) variant | ||
../../bin/bfs_ccg -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/bfs_ccg -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr |
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
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,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# Run GPU SRB (sense-reversing barrier) variant | ||
../../bin/pr_gsrb -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr | ||
../../bin/pr_gsrb -b 4 -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr | ||
# Run GPU SRB variant that uses CPU-style SRBs | ||
../../bin/pr_gcpusrb -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr | ||
../../bin/pr_gcpusrb -b 4 -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr | ||
# Run CUDA Cooperative Graphs (CCG) variant | ||
../../bin/pr_ccg -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr | ||
../../bin/pr_ccg -b 4 -o outfile.txt -x 1000000 ../../inputs/USA-road-d.W.gr |
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
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,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# Run GPU SRB (sense-reversing barrier) variant | ||
../../bin/sssp_gsrb -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/sssp_gsrb -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
# Run GPU SRB variant that uses CPU-style SRBs | ||
../../bin/sssp_gcpusrb -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/sssp_gcpusrb -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
# Run CUDA Cooperative Graphs (CCG) variant | ||
../../bin/sssp_ccg -s 0 -o outfile.txt ../../inputs/USA-road-d.W.gr | ||
../../bin/sssp_ccg -s 0 -b 4 -o outfile.txt ../../inputs/USA-road-d.W.gr |
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