11 lines
587 B
Bash
11 lines
587 B
Bash
#!/usr/bin/env bash
|
|
|
|
#SBATCH -N 4 # 4 nodes are requested
|
|
#SBATCH -t 00:03:00 # Walltime, 3 minutes
|
|
#SBATCH -n 8 # 8 processes are requested
|
|
#SBATCH --ntasks-per-socket=1 # 1 process per allocated socket
|
|
#SBATCH --hint=compute_bound # Use all cores in each socket, one thread per core
|
|
#SBATCH --exclusive # node should not be shared with other jobs
|
|
|
|
mpirun python3 ./examples/teleport_mpi.py # Execute program
|