Skip to content

Commit ccdcb43

Browse files
committed
update partition table for slurm workshop
1 parent 2af615c commit ccdcb43

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

content/notes/slurm-from-cli/section1.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ SLURM refers to queues as __partitions__ . We do not have a default partition;
4949
{{< table >}}
5050
| Queue Name | Purpose | Job Time Limit | Max Memory / Node / Job | Max Cores / Node |
5151
| :-: | :-: | :-: | :-: | :-: |
52-
| standard | For jobs on a single compute node | 7 days | 375 GB | 37 |
53-
| gpu | For jobs that can use general purpose GPU’s<br /> (A40,A100,A6000,V100,RTX3090) | 3 days | 1953 GB | 125 |
54-
| parallel | For large parallel jobs on up to 50 nodes (<= 1500 CPU cores) | 3 days | 375 GB | 40<br /> |
55-
| largemem | For memory intensive jobs | 4 days | 768 GB<br />1 TB | 45 |
56-
| interactive | For quick interactive sessions (up to two RTX2080 GPUs) | 12 hours | 216 GB | 37 |
52+
| standard | For jobs on a single compute node | 7 days | 375 GB | 96 |
53+
| gpu | For jobs that can use general purpose GPU’s<br /> (A40,A100,A6000,V100,RTX3090) | 3 days | 1953 GB | 128 |
54+
| parallel | For large parallel jobs on up to 50 nodes (<= 1500 CPU cores) | 3 days | 375 GB | 96<br /> |
55+
| interactive | For quick interactive sessions (up to two RTX2080 GPUs) | 12 hours | 216 GB | 96 |
5756
{{< /table >}}
5857

5958
To see an online list of available partitions, from a command line type

content/notes/slurm-from-cli/section4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ $sbatch --array=0-30
131131
```
132132
In your Slurm script you would use a command such as
133133
```bash
134-
python myscript.py myinput.${SLURM_ARRAY_TASK_ID}.in}
134+
python myscript.py myinput.${SLURM_ARRAY_TASK_ID}.in
135135
```
136136

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

0 commit comments

Comments
 (0)