-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.sh
executable file
·47 lines (37 loc) · 1.46 KB
/
Main.sh
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
40
41
42
43
44
45
#!/bin/bash
# Définir la variable qui indique si l'option --parallel a été passée
parallel=false
total_argument="$@"
# Récupérer les arguments
while [[ "$#" -gt 0 ]]; do
case $1 in
--i) i="$2"; shift ;;
--n1) n1="$2"; shift ;;
--n2) n2="$2"; shift ;;
--n3) n3="$2"; shift ;;
--nt) nt="$2"; shift ;;
--m) m="$2"; shift ;;
--n) n="$2"; shift ;;
--rho) rho="$2"; shift ;;
--alpha) alpha="$2"; shift ;;
--q) q="$2"; shift ;;
--parallel) parallel=true ;;
*) echo "Option invalide: $1" >&2; exit 1 ;;
esac
shift
done
#echo "total argument : "$total_argument
# Afficher "lili" si l'option --parallel a été passée
if [ "$parallel" = true ]; then
echo "executing /usr/bin/mpirun --hostfile hostfile --rank-by node --map-by ppr:1:node:PE=16 python3 parallel_ant_main.py $i $n $n1 $n2 $n3 $rho $alpha $q 30 "
sbatch main.sh $i $n $n1 $n2 $n3 $rho $alpha $q 30
else
#echo "executing srun -N 1 --exclusive -p cpu_tp python3 main.py $total_argument"
echo "#!/bin/bash" > tmp/script.sh
echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin" >> tmp/script.sh
echo "cd .." >> tmp/script.sh
echo "echo \"executing python3 main.py $total_argument\"" >> tmp/script.sh
echo "/opt/intel/oneapi/intelpython/latest/bin/python3 main.py $total_argument" >> tmp/script.sh
cd tmp
srun -N 1 -n 32 --exclusive -p cpu_tp --pty bash script.sh
fi