Skip to content

Commit 4e7b7aa

Browse files
authored
Update 01_slurm_submitting_jobs.md
1 parent 2f44cc3 commit 4e7b7aa

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/hpc/05_submitting_jobs/01_slurm_submitting_jobs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can find the available types of GPUs at [Torch Spec Sheet](../10_spec_sheet.
5353
Do not specify partitions manually, except for preemption which is described later.
5454
:::
5555

56-
## Resource limits and restrictions
56+
## Resource Limits and Restrictions
5757
Jobs within the same partition cannot exceed their assigned resources (`QOSGrpGRES`). User GPU Quotas: Each user has a total GPU quota of 24 GPUs for jobs with wall time < 48 hours (`QOSMaxGRESPerUser`).
5858

5959
Non-stakeholders to temporarily use stakeholder resources (a stakeholder group to temporarily use another group’s resources). Stakeholders retain normal access to their own resources. If non-stakeholders (or other stakeholders) are using them, their jobs may be preempted (canceled) once stakeholders submit new jobs. Public users are allowed to use stakeholder resources only with preemption partitions. Refer to the section below for details on preemptible jobs.
@@ -81,7 +81,7 @@ Jobs with low GPU utilization will be automatically canceled:
8181
Enforcement will be very aggressive.
8282
:::
8383

84-
## Preemptible jobs on Torch
84+
## Preemptible Jobs on Torch
8585
On Torch, users may run "preemptible" jobs on stakeholder resources that their group does not own. This allows the stakeholder resources to be utilized by non-stakeholders which may otherwise be idle. To make the best use of these resources, you are encouraged to adopt checkpoint/restart to allow for resumption of the workload in subsequent jobs.
8686

8787
:::warning Preemption Policy
@@ -109,19 +109,19 @@ Jobs in stakeholder partitions will not be canceled, but those in preemption par
109109
```
110110
Jobs with preemption partitions only might be allowed to use more resources
111111

112-
## Advanced options
112+
## Advanced Options
113113

114114
### GPU MPS
115115
Use GPU Multi-Process Service (MPS) to improve overall GPU utilization, as this allows multiple GPU jobs to share a single GPU concurrently by:
116116
```
117117
#SBATCH --comment="gpu_mps=yes"
118118
```
119-
### RAM disk
119+
### RAM Disk
120120
A portion of the RAM available can be mounted as a disk for fast `I/O` operations:
121121
```
122122
#SBATCH --comment="ram_disk=1GB"
123123
```
124-
### GPU MPS & RAM Disk in a preemptible job
124+
### GPU MPS & RAM Disk in a Preemptible Job
125125
Both of these can be combined with preemption as shown:
126126
```
127127
#SBATCH --comment="preemption=yes;preemption_partitions_only=yes;requeue=true;gpu_mps=yes;ram_disk=1GB"

0 commit comments

Comments
 (0)