From d3d0c5120c3ff07bfab1d1ad14447737c428e95f Mon Sep 17 00:00:00 2001 From: caubet_m Date: Fri, 21 Feb 2020 14:36:53 +0100 Subject: [PATCH] MPI examples with 3.1.5-1 instead of 3.1.5 --- pages/merlin6/03 Job Submission/slurm-examples.md | 2 +- pages/merlin6/03 Job Submission/using-modules.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/merlin6/03 Job Submission/slurm-examples.md b/pages/merlin6/03 Job Submission/slurm-examples.md index cc8f2e8..313f532 100644 --- a/pages/merlin6/03 Job Submission/slurm-examples.md +++ b/pages/merlin6/03 Job Submission/slurm-examples.md @@ -227,7 +227,7 @@ Copy-paste the following example in a file called myAdvancedTest.batch): #SBATCH --ntasks-per-core=1 # Request the max ntasks be invoked on each core #SBATCH --hint=nomultithread # Don't use extra threads with in-core multi-threading -module load gcc/9.2.0 openmpi/3.1.5_merlin6 +module load gcc/9.2.0 openmpi/3.1.5-1_merlin6 module list echo "Example no-MPI:" ; hostname # will print one hostname per node diff --git a/pages/merlin6/03 Job Submission/using-modules.md b/pages/merlin6/03 Job Submission/using-modules.md index 6c0c9a2..fc0a759 100644 --- a/pages/merlin6/03 Job Submission/using-modules.md +++ b/pages/merlin6/03 Job Submission/using-modules.md @@ -34,14 +34,14 @@ Also, you can load multiple packages at once. This can be useful for instance wh ```bash # Single line -module load gcc/9.2.0 openmpi/3.1.5_merlin6 +module load gcc/9.2.0 openmpi/3.1.5-1_merlin6 # Multiple line module load gcc/9.2.0 -module load openmpi/3.1.5_merlin6 +module load openmpi/3.1.5-1_merlin6 ``` -In the example above, we load ``openmpi/3.1.5_merlin6`` but we also specify ``gcc/9.2.0`` which is a strict dependency. The dependency must be +In the example above, we load ``openmpi/3.1.5-1_merlin6`` but we also specify ``gcc/9.2.0`` which is a strict dependency. The dependency must be loaded in advance. ---