runAll.sh 706 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
dir="/home/martini/malleability_benchmark"
partition="P1"
exclude="c00,c01,c02"
procs=(2 10 20 40 80 120 160)
cores=20


#====== Do not modify these values =======

codeDir="/Codes/build"
execDir="/Exec"
ResultsDir="/Results"
use_extrae=0

qty=1
outFileIndex=$2

if [ $# -ge 1 ]
then
  qty=$1
fi

for proc in "${procs[@]}"
do
  echo "------------------------------------------run np=$proc"
  node_qty=$(($proc / $cores))
  if [ $node_qty -eq 0 ]
  then
    node_qty=1
  fi

  config_file="test$proc"".ini"
  for ((i=0; i<qty; i++))
  do
    #Execute test
    sbatch -p $partition --exclude=$exclude -N $node_qty $dir$execDir/generalRun.sh $dir $config_file $use_extrae $outFileIndex
  done
done
echo "End"