From 5e4be6acaa5d930a9836b4a131fc9c46789ca134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 1 Mar 2024 15:38:44 +0100 Subject: [PATCH] Add missing equal sign in documentation --- docs/jobs/multinode.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/jobs/multinode.md b/docs/jobs/multinode.md index ae1e2716b..d2892f702 100644 --- a/docs/jobs/multinode.md +++ b/docs/jobs/multinode.md @@ -67,7 +67,7 @@ If you are running SLURM you should start the MPI program as follows: ``` #!/bin/sh -srun --nodefile $HQ_NODE_FILE --nodes=$HQ_NUM_NODES mpirun ... +srun --nodefile=$HQ_NODE_FILE --nodes=$HQ_NUM_NODES mpirun ... ``` -Note: It is important to set `--nodes` otherwise the node file will not be respected. \ No newline at end of file +Note: It is important to set `--nodes` otherwise the node file will not be respected.