You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
492 B
Bash
29 lines
492 B
Bash
#!/usr/bin/env bash
|
|
#SBATCH -J test_fftma
|
|
#SBATCH -N 4
|
|
#SBATCH --ntasks-per-node 32
|
|
#SBATCH --output %j_output.out
|
|
#SBATCH -p free-rider
|
|
#SBATCH -t 2-23:00:00
|
|
#source activate_env.sh
|
|
ulimit -v 115343360
|
|
|
|
|
|
|
|
|
|
k=0
|
|
|
|
for i in {1..4} # num de jobs totales divido num de cores (redondear para arriba)
|
|
do
|
|
|
|
for j in {1..1} #Numero de "carpetas" en donde resuelve simultanemente
|
|
do
|
|
mpirun -np 4 python ./tools/solver/Ndar.py $k 1 & # job, refinamiento
|
|
k=$(($k+1))
|
|
done
|
|
wait
|
|
|
|
done
|
|
|
|
wait
|