Skip to content

Commit ece5251

Browse files
committed
formatting tweak
1 parent 3050fae commit ece5251

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/hpc/05_submitting_jobs/01_slurm_submitting_jobs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ Applies separately to both GPU types: L40S first, then H200
3939

4040

4141
To allow jobs in both normal and preemption partitions:
42-
```sh
42+
```
4343
#SBATCH --comment="preemption=yes;requeue=true"
4444
```
4545
Jobs in stakeholder partitions will not be canceled, but those in preemption partitions may be. Canceled jobs will be re-queued automatically with `requeue=true`. To use only preemption partitions:
46-
```sh
46+
```
4747
#SBATCH --comment="preemption=yes;preemption_partitions_only=yes;requeue=true"
4848
```
4949
Jobs with preemption partitions only might be allowed to use more resources
5050

5151
## Enable GPU MPS
52-
Use GPU Multi-Process Service (MPS) to improve overall GPU utilization, allows multiple GPU jobs to share a single GPU concurrently
53-
```sh
52+
Use GPU Multi-Process Service (MPS) to improve overall GPU utilization, as this allows multiple GPU jobs to share a single GPU concurrently by:
53+
```
5454
#SBATCH --comment="gpu_mps=yes"
5555
```
5656
Mount Memory as Disk
5757
Create a small RAM disk for fast I/O operations
58-
```sh
58+
```
5959
#SBATCH --comment="ram_disk=1GB"
6060
```
6161
Example with preemption, GPU MPS, and RAM disk enabled:
62-
```sh
62+
```
6363
#SBATCH --comment="preemption=yes;preemption_partitions_only=yes;requeue=true;gpu_mps=yes;ram_disk=1GB"
6464
```

0 commit comments

Comments
 (0)