From e03d81c688e1070c16025c2a215ccb1a24ce2098 Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Thu, 22 Oct 2020 03:42:36 -0400 Subject: 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 --- run_all_tacle.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'run_all_tacle.sh') 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 echo "Usage $0 " exit fi +if [[ "$EUID" != 0 ]]; then + echo "You need to be root to enable spatial isolation!" + exit +fi date # Run the pairs baseline and some comparisons to examine the effect of less cache @@ -30,13 +34,13 @@ date cd ../all_pairs make all -j32 # No cache isolation -pairXI=all_pairs/$(date +"%b%d-%H")-c-xi-$runID.txt +pairXI=all_pairs/$(date +"%b%d-%H")-c-xi-$runID"-A.txt and -B.txt" echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I xi $runID # Shared L2, split L3 -pairI3=all_pairs/$(date +"%b%d-%H")-c-i3-$runID.txt +pairI3=all_pairs/$(date +"%b%d-%H")-c-i3-$runID"-A.txt and -B.txt" echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i3 $runID # Split L2, split L3 -pairI=all_pairs/$(date +"%b%d-%H")-c-i-$runID.txt +pairI=all_pairs/$(date +"%b%d-%H")-c-i-$runID"-A.txt and -B.txt" echo "" | ../run_bench.sh -m pair -p 15 -P 31 -l $maxJobs -b tacleNames.txt -B -I i $runID date -- cgit v1.2.2