Skip to content

Commit bd7e62d

Browse files
committed
[BUGFIX:slurm] Fix typos and syntax errors
1 parent 4ac102b commit bd7e62d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/slurm/commands.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The batch launcher script may contain `srun` commands to launch [job steps](). T
1414

1515
_Batch job scripts_ are submitted to the scheduler with the [`sbatch`](https://slurm.schedmd.com/sbatch.html) command.
1616

17-
- The command adds a resource allocation request to the scheduler job queue together with a _copy_ of a job luncher script to execute in the allocation. The command then exits.
18-
- When the requested resources are available, a job is lunched and the job script is executed in the first node of the allocated resources.
17+
- The command adds a resource allocation request to the scheduler job queue together with a _copy_ of a job launcher script to execute in the allocation. The command then exits.
18+
- When the requested resources are available, a job is launched and the job script is executed in the first node of the allocated resources.
1919
- The job allocation is freed when the job script finishes or the allocation times out.
2020

2121
The execution of the job script is thus asynchronous to the execution of the `sbatch` command.
@@ -45,10 +45,10 @@ The execution of the job script is thus asynchronous to the execution of the `sb
4545
_Interactive jobs_ are launched with the [`salloc`](https://slurm.schedmd.com/salloc.html) command.
4646

4747
- The command submits a resources allocation request to the scheduler job queue, and blocks until the resources are available.
48-
- When the requested resources are available, a job is lunched and a command is executed in the first node of the allocated resources.
48+
- When the requested resources are available, a job is launched and a command is executed in the first node of the allocated resources.
4949
- The allocation is freed when the interactive session terminates with and `exit` command, or the allocation times out.
5050

51-
The main difference of `salloc` from `sbatch` is that the `salloc` runs for the whole runtime of the command that is executed in the allocation, that it `salloc` is a blocking version of `sbatch`.
51+
The main difference of `salloc` from `sbatch` is that `salloc` runs for the whole runtime of the command being is executed in the allocation, that is `salloc` is a blocking version of `sbatch`.
5252

5353
!!! info "Typical `salloc` (interactive job) options"
5454
To start an interactive job scheduler use the following `salloc` command.

0 commit comments

Comments
 (0)