2nd_Sem_Bogachev/2025.04.04/test/test13_mpi.sh
2025-04-08 14:29:26 +03:00

3 lines
197 B
Bash
Executable file

#!/bin/bash
# 3000 runs
for ((n=3; n<=30;n++)) ; do for ((m=3;m<=$n;m+=3)) ; do for ((k=1;k<=$n;k++)) ; do echo "n=$n m=$m k=$k ----------------" ; mpirun -np $k ./a.out $n $m ; done ; done ; done