Update slurm authored by Guillaume Dolle's avatar Guillaume Dolle
......@@ -38,14 +38,14 @@ If you want to keep accessing a node for a certain period of time, you can alloc
# --exclusive: You will have exclusive access to the node
salloc -t "02:00:00" -p K80 -w irma-atlas4 --exclusive
```
Info: This command only allocates the node exclusively for yourself.
> **INFO** This command only allocates the node exclusively for yourself.
You have to connect via ssh to the node `ssh irma-atlas4` before doing computations.
To automatically allocate and connect, you can use
```
salloc -t "03:00:00" -p public -J "jobname" --exclusive -N 1 srun --pty `basename ${SHELL}`
```
> *INFO:* A wrapper for this interactive command will soon be available `compute`.
> **INFO:** A wrapper for this interactive command will soon be available `compute`.
> **IMPORTANT NOTE:** Please be reasonable with your use of the `--exclusive` and `-t "XX:YY:ZZ"`, as it could prevent other users to access the node. You can cancel a job with `scancel`.
......
......