From a840202f7d6871f6a656083e765e8a44375d7076 Mon Sep 17 00:00:00 2001 From: youngdae Date: Wed, 29 May 2024 20:58:08 -0500 Subject: [PATCH] Renames indices. --- README.md | 10 +++++----- figure7.sh => figure12.sh | 2 +- table5.sh => table2.sh | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename figure7.sh => figure12.sh (93%) rename table5.sh => table2.sh (93%) diff --git a/README.md b/README.md index 5d695d1..7d106d0 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Note that the following table shows correspondence between the casename and the | case13659pegase | 20K | | case19402_goc | 34K | -### Figure 5 +### Figure 10 To reproduce Figure 5, submit a job with each case file and its parameter values. For each case with name `casename`, it will generate `output_gpu1_casename.txt`. @@ -101,7 +101,7 @@ Branch/iter = 3.94 (millisecs) ``` Here `3.94` miiliseconds will be the input for the `34K` batch size in Figure 5. -### Figure 6 +### Figure 11 To reproduce Figure 6, submit a job with each case file, its parameter values, and different GPU number `N`. It will generate `output_gpu${N}_casename.txt` file for each `casename` where `N` represents the number of GPUs @@ -115,7 +115,7 @@ For example, in order to obtain timing results for `case19402_goc` with 6 GPUs, ``` The speedup is `3.94/0.79 = 4.98` in this case. In this way, you can reproduce Figure 6. -### Table 5 +### Table 2 ```bash $ ./table5.sh branch_time_file @@ -135,7 +135,7 @@ $ ./table5.sh br_time_gpu6_case13659pegase.txt ``` Similarly, you can reproduce load imbalance statistics for other case files. -### Figure 7 +### Figure 12 ```bash $ ./figure7.sh branch_time_file @@ -148,7 +148,7 @@ $ ./figure7.sh br_time_gpu6_case13659pegase.txt ``` It will generate `br_time_gpu6_case13659pegase.pdf`. The file should look similar to Figure 7. -### Figure 8 +### Figure 13 To reproduce Figure 8, we need to execute ExaTron with 40 CPU cores. For this, we replace the line starting with `jsrun` with the following: diff --git a/figure7.sh b/figure12.sh similarity index 93% rename from figure7.sh rename to figure12.sh index 2178e01..a70d478 100755 --- a/figure7.sh +++ b/figure12.sh @@ -9,7 +9,7 @@ # running figure6.sh. function usage() { - echo "Usage: ./figure7.sh case" + echo "Usage: ./figure12.sh case" echo " case: the case file containing branch computation time of each GPU" } diff --git a/table5.sh b/table2.sh similarity index 93% rename from table5.sh rename to table2.sh index 2ae1ec5..6a6363b 100755 --- a/table5.sh +++ b/table2.sh @@ -9,7 +9,7 @@ export JULIA_CUDA_VERBOSE=1 export JULIA_MPI_BINARY="system" function usage() { - echo "Usage: ./table5.sh case" + echo "Usage: ./table2.sh case" echo " case: the case file containing branch computation time of each GPU" }