Skip to content
Snippets Groups Projects
Commit e3857f36 authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Lint and fix typos

parent 36b08214
No related branches found
No related tags found
2 merge requests!735Preview,!722WIP: Document ressource requirements for parallel make
...@@ -92,19 +92,19 @@ below. ...@@ -92,19 +92,19 @@ below.
echo "All parallel job steps completed!" echo "All parallel job steps completed!"
``` ```
### Request Ressources for Parallel Make ### Request Resources for Parallel Make
From time to time, you want to build and compile software and applications on a compute node. From time to time, you want to build and compile software and applications on a compute node.
But, do you need to request tasks or CPUs from Slurm in order to provide ressources for the parallel `make` command? But, do you need to request tasks or CPUs from Slurm in order to provide resources for the parallel
The answer is "CPUs". `make` command? The answer is "CPUs".
!!! example "Interactive allocation for parallel `make` command" !!! example "Interactive allocation for parallel `make` command"
```console ```console
marie@login $ srun --ntasks=1 --cpus-per-task=16 --mem=16G --time=01:00:00 --pty bash marie@login$ srun --ntasks=1 --cpus-per-task=16 --mem=16G --time=01:00:00 --pty bash
[...] [...]
marie@compute $ # prepare the source code for building using configure, cmake or so marie@compute$ # prepare the source code for building using configure, cmake or so
marie@compute $ make -j marie@compute$ make -j
``` ```
## Requesting GPUs ## Requesting GPUs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment