Skip to content

Commit 7eba011

Browse files
committed
Add script to run all efficiency scripts.
1 parent 621e84d commit 7eba011

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
ANALYZER_DIR=$1
3+
4+
#Number of cores to be used
5+
NCORES=$2
6+
7+
echo "Starting run on figlet"
8+
python3 efficiency.py $ANALYZER_DIR figlet $NCORES
9+
mv result_efficiency result_efficiency_figlet
10+
11+
echo "Starting run on chrony"
12+
python3 efficiency.py $ANALYZER_DIR chrony $NCORES
13+
mv result_efficiency result_efficiency_chrony
14+
15+
echo "Starting run on zstd"
16+
python3 efficiency.py $ANALYZER_DIR zstd $NCORES
17+
mv result_efficiency result_efficiency_zstd

0 commit comments

Comments
 (0)