Gwendolen changes

This commit is contained in:
2021-08-04 14:06:39 +02:00
parent a2ddf59412
commit 1f510c2461

View File

@ -151,23 +151,23 @@ The following template should be used by any user submitting jobs to GPU nodes:
```bash ```bash
#!/bin/bash #!/bin/bash
#SBATCH --cluster=gmerlin6 # Cluster name #SBATCH --cluster=gmerlin6 # Cluster name
#SBATCH --partition=gpu,gpu-short,gwendolen # Specify one or multiple partitions #SBATCH --partition=gpu,gpu-short # Specify one or multiple partitions, or
#SBATCH --gpus="<type>:<num_gpus>" # <type> is optional, <num_gpus> is mandatory #SBATCH --partition=gwendolen,gwendolen_long # Only for Gwendolen users
#SBATCH --time=<D-HH:MM:SS> # Strongly recommended #SBATCH --gpus="<type>:<num_gpus>" # <type> is optional, <num_gpus> is mandatory
#SBATCH --output=<output_file> # Generate custom output file #SBATCH --time=<D-HH:MM:SS> # Strongly recommended
#SBATCH --error=<error_file> # Generate custom error file #SBATCH --output=<output_file> # Generate custom output file
##SBATCH --exclusive # Uncomment if you need exclusive node usage #SBATCH --error=<error_file> # Generate custom error file
##SBATCH --account=gwendolen_public # Uncomment if you need to use gwendolen ##SBATCH --exclusive # Uncomment if you need exclusive node usage
## Advanced options example ## Advanced options example
##SBATCH --nodes=1 # Uncomment and specify number of nodes to use ##SBATCH --nodes=1 # Uncomment and specify number of nodes to use
##SBATCH --ntasks=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 --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 --mem-per-gpu=16000 # Uncomment and specify the number of cores per task
##SBATCH --gpus-per-node=<type>:2 # Uncomment and specify the number of GPUs per node ##SBATCH --gpus-per-node=<type>:2 # Uncomment and specify the number of GPUs per node
##SBATCH --gpus-per-socket=<type>:2 # Uncomment and specify the number of GPUs per socket ##SBATCH --gpus-per-socket=<type>:2 # Uncomment and specify the number of GPUs per socket
##SBATCH --gpus-per-task=<type>:1 # Uncomment and specify the number of GPUs per task ##SBATCH --gpus-per-task=<type>:1 # Uncomment and specify the number of GPUs per task
``` ```
## Advanced configurations ## Advanced configurations