diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-25 14:01:15 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-25 14:01:15 +0200 |
commit | 5c008581ebb873b04e68b38cdec619600b4bcb5d (patch) | |
tree | 07d23eb2b72da2f95df3de21c21524c7bc246874 | |
parent | 40e8a5eac49e91be407c36eef6fb326229945a22 (diff) |
Note that BFS only supports strong scaling
-rwxr-xr-x | BFS/baselines/cpu/run.sh | 2 | ||||
-rwxr-xr-x | BFS/run.sh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/BFS/baselines/cpu/run.sh b/BFS/baselines/cpu/run.sh index 1fe82e9..4174fc3 100755 --- a/BFS/baselines/cpu/run.sh +++ b/BFS/baselines/cpu/run.sh @@ -8,6 +8,8 @@ echo "Revision $(git describe --always)" # default threads: 4 +# input size depends on file -> strong scaling only + make for nr_threads in 1 2 4 6 8 12 16 20 24 32; do for f in loc-gowalla_edges roadNet-CA; do @@ -5,6 +5,8 @@ set -e # -f: input file (i.e., input size) # bin/host_code -f data/loc-gowalla_edges.txt +# input size depends on file -> strong scaling only + echo "prim-benchmarks BFS (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" |