From 1f510c2461c4f0d3c6cb336e7d49e194799c3762 Mon Sep 17 00:00:00 2001 From: caubet_m Date: Wed, 4 Aug 2021 14:06:39 +0200 Subject: [PATCH] Gwendolen changes --- .../running-jobs.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pages/merlin6/03-Slurm-General-Documentation/running-jobs.md b/pages/merlin6/03-Slurm-General-Documentation/running-jobs.md index 0227409..92ec876 100644 --- a/pages/merlin6/03-Slurm-General-Documentation/running-jobs.md +++ b/pages/merlin6/03-Slurm-General-Documentation/running-jobs.md @@ -151,23 +151,23 @@ The following template should be used by any user submitting jobs to GPU nodes: ```bash #!/bin/bash -#SBATCH --cluster=gmerlin6 # Cluster name -#SBATCH --partition=gpu,gpu-short,gwendolen # Specify one or multiple partitions -#SBATCH --gpus=":" # is optional, is mandatory -#SBATCH --time= # Strongly recommended -#SBATCH --output= # Generate custom output file -#SBATCH --error= # Generate custom error file -##SBATCH --exclusive # Uncomment if you need exclusive node usage -##SBATCH --account=gwendolen_public # Uncomment if you need to use gwendolen +#SBATCH --cluster=gmerlin6 # Cluster name +#SBATCH --partition=gpu,gpu-short # Specify one or multiple partitions, or +#SBATCH --partition=gwendolen,gwendolen_long # Only for Gwendolen users +#SBATCH --gpus=":" # is optional, is mandatory +#SBATCH --time= # Strongly recommended +#SBATCH --output= # Generate custom output file +#SBATCH --error= # Generate custom error file +##SBATCH --exclusive # Uncomment if you need exclusive node usage ## Advanced options example -##SBATCH --nodes=1 # Uncomment and specify number of nodes to use -##SBATCH --ntasks=1 # Uncomment and specify number of nodes to use -##SBATCH --cpus-per-gpu=5 # Uncomment and specify the number of cores per task -##SBATCH --mem-per-gpu=16000 # Uncomment and specify the number of cores per task -##SBATCH --gpus-per-node=:2 # Uncomment and specify the number of GPUs per node -##SBATCH --gpus-per-socket=:2 # Uncomment and specify the number of GPUs per socket -##SBATCH --gpus-per-task=:1 # Uncomment and specify the number of GPUs per task +##SBATCH --nodes=1 # Uncomment and specify number of nodes to use +##SBATCH --ntasks=1 # Uncomment and specify number of nodes to use +##SBATCH --cpus-per-gpu=5 # Uncomment and specify the number of cores per task +##SBATCH --mem-per-gpu=16000 # Uncomment and specify the number of cores per task +##SBATCH --gpus-per-node=:2 # Uncomment and specify the number of GPUs per node +##SBATCH --gpus-per-socket=:2 # Uncomment and specify the number of GPUs per socket +##SBATCH --gpus-per-task=:1 # Uncomment and specify the number of GPUs per task ``` ## Advanced configurations