Update 2.1 Batch job submission authored by Odunlami Marc's avatar Odunlami Marc
......@@ -7,11 +7,11 @@ The [Slurm](https://slurm.schedmd.com) scheduler manages the resource allocation
* The cluster nodes are put in **partitions**, depending on their hardware characteristics and the policy defined to use them.
* Partitions are accessible by **accounts**, representing group of users granted with some permissions.
A resource allocation must specify a partition, an account, and other parameters such as the maximal execution time, the number of cores and the maximal used memory of the job. These Slurm parameters are written in **job scripts** and submitted to Slurm with the `sbatch` command:
A resource request must specify a partition, an account, and other parameters such as the maximal execution time, the number of cores and the maximal memory of the job. These Slurm parameters are written in **job scripts** and submitted to Slurm with the `sbatch` command:
```
sbatch script.sh
```
where *script.sh* is the job script.
where `script.sh` is the job script.
## Job script examples
......
......