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
procs=(2 10 20 40 80 120 160)
10
11
12
msm=(0 1)
mss=(1 2)
mrm=(0 1)
13
is_syncs=(1 0)
14
15
16
17
18
qty=1
if [ $# -ge 1 ]
then
  qty=$1
fi
19
20
21
22
23

echo $matrix
for proc in "${procs[@]}"
do
  echo "------------------------------------------run np=$proc next=0"
24
  for proc_c in "${procs[@]}"
25
  do
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    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[@]}"
41
      do
42
43
44
45
46
47
        for rm_type in "${mrm[@]}"
        do
          for is_sync in "${is_syncs[@]}"
          do
            if [ $is_sync -eq 1 ] # Matrix is send syncrhonously
            then
48
              sbatch -p P1 -N $node_qty $dirCG/Exec/generalRun.sh $proc $dirM$matrix $proc_c $sm_type 1 $rm_type 1 $is_sync $qty
49
50
51
  	    else # Matrix is send asyncrhonously
              for ss_type in "${mss[@]}"
              do
52
                sbatch -p P1 -N $node_qty $dirCG/Exec/generalRun.sh $proc $dirM$matrix $proc_c $sm_type $ss_type $rm_type $ss_type $is_sync $qty
53
54
55
56
	      done
 	    fi
          done
        done
57
      done
58
    fi
59
60
61
62
  done
done

echo "End"