Skip to content

Commit

Permalink
update partition table for slurm workshop
Browse files Browse the repository at this point in the history
  • Loading branch information
camdenduy committed Sep 12, 2024
1 parent 2af615c commit ccdcb43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions content/notes/slurm-from-cli/section1.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ SLURM refers to queues as __partitions__ . We do not have a default partition;
{{< table >}}
| Queue Name | Purpose | Job Time Limit | Max Memory / Node / Job | Max Cores / Node |
| :-: | :-: | :-: | :-: | :-: |
| standard | For jobs on a single compute node | 7 days | 375 GB | 37 |
| gpu | For jobs that can use general purpose GPU’s<br /> (A40,A100,A6000,V100,RTX3090) | 3 days | 1953 GB | 125 |
| parallel | For large parallel jobs on up to 50 nodes (<= 1500 CPU cores) | 3 days | 375 GB | 40<br /> |
| largemem | For memory intensive jobs | 4 days | 768 GB<br />1 TB | 45 |
| interactive | For quick interactive sessions (up to two RTX2080 GPUs) | 12 hours | 216 GB | 37 |
| standard | For jobs on a single compute node | 7 days | 375 GB | 96 |
| gpu | For jobs that can use general purpose GPU’s<br /> (A40,A100,A6000,V100,RTX3090) | 3 days | 1953 GB | 128 |
| parallel | For large parallel jobs on up to 50 nodes (<= 1500 CPU cores) | 3 days | 375 GB | 96<br /> |
| interactive | For quick interactive sessions (up to two RTX2080 GPUs) | 12 hours | 216 GB | 96 |
{{< /table >}}

To see an online list of available partitions, from a command line type
Expand Down
2 changes: 1 addition & 1 deletion content/notes/slurm-from-cli/section4.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ $sbatch --array=0-30
```
In your Slurm script you would use a command such as
```bash
python myscript.py myinput.${SLURM_ARRAY_TASK_ID}.in}
python myscript.py myinput.${SLURM_ARRAY_TASK_ID}.in
```

The script should be prepared to request resources for _one_ instance of your program.
Expand Down

0 comments on commit ccdcb43

Please sign in to comment.