From cee1e8de23493f7cf603913d3e40f74d0b66021c Mon Sep 17 00:00:00 2001
From: "tor@totoro" <tor.kjellsson@gmail.com>
Date: Wed, 25 Aug 2021 00:15:16 +0200
Subject: [PATCH] Changed srun to mpirun

---
 lab2/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lab2/README.md b/lab2/README.md
index df84236..8bbe1c7 100644
--- a/lab2/README.md
+++ b/lab2/README.md
@@ -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
-srun -n 2 ./mpi_latency.x
+mpirun -n 2 ./mpi_latency.x
 ```
 
 or on separate nodes, e.g.
 
 ```
 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.
-- 
GitLab