This version is outdated by a newer approved version.DiffThis version (2022/11/04 10:45) was approved by goldenberg.The Previously approved version (2021/04/01 07:08) is available.Diff

This is an old revision of the document!


Sample job script to run two MPI tasks within one job script concurrently:

Sample Job when for running multiple mpi jobs on a VSC-4 node.

Note: The “mem_per_task” should be set such that

mem_per_task * mytasks < mem_per_node - 2Gb

The approx 2Gb reduction in available memory is due to operating system stored in memory. For a standard node with 96 Gb of Memory this would be eg.:

23 Gb * 4 = 92 Gb < 94 Gb
#!/bin/bash
#SBATCH -J many
#SBATCH -N 1

export SLURM_STEP_GRES=none

mytasks=4
cmd="stress -c 24"
mem_per_task=10G

for i in `seq 1 $mytasks`
do
        srun --mem=$mem_per_task --cpus-per-task=2 --ntasks=1 $cmd &
done
wait
  • doku/multimpi.1667558742.txt.gz
  • Last modified: 2022/11/04 10:45
  • by goldenberg