Gwendolen changes

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

View File

@ -152,13 +152,13 @@ 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 --partition=gwendolen,gwendolen_long # Only for Gwendolen users
#SBATCH --gpus="<type>:<num_gpus>" # <type> is optional, <num_gpus> is mandatory #SBATCH --gpus="<type>:<num_gpus>" # <type> is optional, <num_gpus> is mandatory
#SBATCH --time=<D-HH:MM:SS> # Strongly recommended #SBATCH --time=<D-HH:MM:SS> # Strongly recommended
#SBATCH --output=<output_file> # Generate custom output file #SBATCH --output=<output_file> # Generate custom output file
#SBATCH --error=<error_file> # Generate custom error file #SBATCH --error=<error_file> # Generate custom error file
##SBATCH --exclusive # Uncomment if you need exclusive node usage ##SBATCH --exclusive # Uncomment if you need exclusive node usage
##SBATCH --account=gwendolen_public # Uncomment if you need to use gwendolen
## 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