Updated merlin6 account request

This commit is contained in:
2019-06-18 09:45:31 +02:00
parent e8a60c28ff
commit 59e528d8d3
2 changed files with 62 additions and 9 deletions

View File

@ -29,6 +29,19 @@ sshare -a # to list shares of associations to a cluster
sprio -l # to view the factors that comprise a job's scheduling priority (add -u <username> for filtering user)
```
---
## Slurm CPU Template (Mandatory Settings)
The following Slurm template shows mandatory settings that must be included in your batch scripts:
```bash
#!/bin/sh
#SBATCH --partition=<general|daily|hourly> # name of slurm partition to submit. General is the 'default'.
#SBATCH --constraint=<mc|gpu> # For CPU, always set it to 'mc'. For GPU, set it to 'gpu' (only 'merlin6-gpu' accounts can submit there)
---
## Basic slurm example