MPI examples with 3.1.5-1 instead of 3.1.5

This commit is contained in:
caubet_m 2020-02-21 14:36:53 +01:00
parent ce66ca0b86
commit d3d0c5120c
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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.
---