runOFI.sh 1.32 KB
Newer Older
1
2
3
#!/bin/bash

dirM="/home/martini/SparseMatrix/"
4
dirCG="/home/martini/malleable_cg"
5
matrix="Queen_4147.rb"
6
#matrix="audikw_1.rb"
7
#matrix="bcsstk01.rsa"
8

9
10
procs=(2 10 20 40 80 120 160)
#procs=(2 4)
11
12
13
msm=(0 1)
mss=(1 2)
mrm=(0 1)
14
is_syncs=(1 0)
15
16
17
18
19
qty=1
if [ $# -ge 1 ]
then
  qty=$1
fi
20
21
22
23
24

echo $matrix
for proc in "${procs[@]}"
do
  echo "------------------------------------------run np=$proc next=0"
25
  for proc_c in "${procs[@]}"
26
  do
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    if [ $proc -ne $proc_c ]
    then

      max_numP=$proc
      if [ "$proc_c" -gt "$proc" ];
      then
        max_numP=$proc_c
      fi
      node_qty=$(($max_numP / 20))
      if [ $node_qty -eq 0 ]
      then
        node_qty=1
      fi

      for sm_type in "${msm[@]}"
42
      do
43
44
45
46
47
48
        for rm_type in "${mrm[@]}"
        do
          for is_sync in "${is_syncs[@]}"
          do
            if [ $is_sync -eq 1 ] # Matrix is send syncrhonously
            then
49
              sbatch -p P1 -N $node_qty $dirCG/generalRun.sh $proc $dirM$matrix $proc_c $sm_type 1 $rm_type 1 $is_sync $qty
50
51
52
  	    else # Matrix is send asyncrhonously
              for ss_type in "${mss[@]}"
              do
53
                sbatch -p P1 -N $node_qty $dirCG/generalRun.sh $proc $dirM$matrix $proc_c $sm_type $ss_type $rm_type $ss_type $is_sync $qty
54
55
56
57
	      done
 	    fi
          done
        done
58
      done
59
    fi
60
61
62
63
  done
done

echo "End"