summaryrefslogtreecommitdiffstats
path: root/run_all_tacle.sh
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2020-10-22 03:42:36 -0400
committerJoshua Bakita <jbakita@cs.unc.edu>2020-10-22 03:49:48 -0400
commite03d81c688e1070c16025c2a215ccb1a24ce2098 (patch)
tree36253f0249be4f52799cabbdd3e36ae39bcd1894 /run_all_tacle.sh
parent163c440444c74a4e0bbe0a8db3d1ca725413994b (diff)
Get all the SD-VBS tests running and add a helper script + typo fix
- Add a run_all_sd-vbs.sh script - Fix a typo in run_all_tacle.sh - Fix an issue with reversed arguments for asynchronous task pairs in run_bench.sh
Diffstat (limited to 'run_all_tacle.sh')
-rwxr-xr-xrun_all_tacle.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/run_all_tacle.sh b/run_all_tacle.sh
index c0f07cc..51a9c24 100755
--- a/run_all_tacle.sh
+++ b/run_all_tacle.sh
@@ -10,6 +10,10 @@ if [ $# -lt 2 ]; then
10 echo "Usage $0 <number of iterations> <run ID>" 10 echo "Usage $0 <number of iterations> <run ID>"
11 exit 11 exit
12fi 12fi
13if [[ "$EUID" != 0 ]]; then
14 echo "You need to be root to enable spatial isolation!"
15 exit
16fi
13date 17date
14 18
15# Run the pairs baseline and some comparisons to examine the effect of less cache 19# Run the pairs baseline and some comparisons to examine the effect of less cache
@@ -30,13 +34,13 @@ date
30cd ../all_pairs 34cd ../all_pairs
31make all -j32 35make all -j32
32# No cache isolation 36# No cache isolation
33pairXI=all_pairs/$(date +"%b%d-%H")-c-xi-$runID.txt 37pairXI=all_pairs/$(date +"%b%d-%H")-c-xi-$runID"-A.txt and -B.txt"
34echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I xi $runID 38echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I xi $runID
35# Shared L2, split L3 39# Shared L2, split L3
36pairI3=all_pairs/$(date +"%b%d-%H")-c-i3-$runID.txt 40pairI3=all_pairs/$(date +"%b%d-%H")-c-i3-$runID"-A.txt and -B.txt"
37echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i3 $runID 41echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i3 $runID
38# Split L2, split L3 42# Split L2, split L3
39pairI=all_pairs/$(date +"%b%d-%H")-c-i-$runID.txt 43pairI=all_pairs/$(date +"%b%d-%H")-c-i-$runID"-A.txt and -B.txt"
40echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i $runID 44echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i $runID
41date 45date
42 46