Interactive Jobs
Interactive jobs can be run within the queuing system by using the command salloc
, e.g. a shell can be started with the following command:
salloc --partition=interactive --ntasks=1 --time=00:30:00 --mem=1000 --qos=standard
Interactive jobs can also be started in other partitions, but there are more likely to be free resources in interactive
.
For an interactive job with a GPU, the partition gpu
must be specified and a GPU requested via the option --gres
:
salloc --partition=gpu --gres=gpu:1 --ntasks=1 --time=00:30:00 --mem=1000 --qos=standard