Skip to content
Snippets Groups Projects
Commit cee1e8de authored by tor@totoro's avatar tor@totoro
Browse files

Changed srun to mpirun

parent 4229dd93
No related branches found
No related tags found
No related merge requests found
...@@ -50,14 +50,14 @@ For this exercise you should compare different setups where (a) both MPI ranks a ...@@ -50,14 +50,14 @@ For this exercise you should compare different setups where (a) both MPI ranks a
``` ```
salloc -N 1 --ntasks-per-node=2 -A <project> -t 00:05:00 salloc -N 1 --ntasks-per-node=2 -A <project> -t 00:05:00
srun -n 2 ./mpi_latency.x mpirun -n 2 ./mpi_latency.x
``` ```
or on separate nodes, e.g. or on separate nodes, e.g.
``` ```
salloc -N 2 --ntasks-per-node=1 -A <project> -t 00:05:00 salloc -N 2 --ntasks-per-node=1 -A <project> -t 00:05:00
srun -n 2 ./mpi_latency.x mpirun -n 2 ./mpi_latency.x
``` ```
Compare the different results and reason about the observed values. Compare the different results and reason about the observed values.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment