diff options
| author | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
|---|---|---|
| committer | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
| commit | 386b7d3366f1359a265da207a9cafa3edf553b64 (patch) | |
| tree | c76120c2c138faed822e4ae386be6ef22a738a78 /run_everything.sh | |
| parent | 54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff) | |
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'run_everything.sh')
| -rwxr-xr-x | run_everything.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/run_everything.sh b/run_everything.sh new file mode 100755 index 0000000..8d46ad7 --- /dev/null +++ b/run_everything.sh | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | maxJobs=$1 | ||
| 4 | runID=$2 | ||
| 5 | |||
| 6 | if [ $# -lt 2 ]; then | ||
| 7 | echo "Usage $0 <number of iterations> <run ID>" | ||
| 8 | exit | ||
| 9 | fi | ||
| 10 | |||
| 11 | date | ||
| 12 | cd baseline | ||
| 13 | make all | ||
| 14 | ../interference-benchmark/deactivateCoresSMT.bash | ||
| 15 | ./run_baseline.sh 15 $maxJobs $runID | ||
| 16 | date | ||
| 17 | cd ../all_pairs | ||
| 18 | ../../interference-benchmark/activateCores.bash | ||
| 19 | make all | ||
| 20 | ./run_all_pairs.sh 15 31 $maxJobs $runID | ||
| 21 | date | ||
