Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Submit Interactive Job with "srun"

Note:

Code Block
srun --partition=debug --pty --nodes=1 \
--ntasks-per-node=8 --gres=gpu:v100:1 \
-t 01:30:00 --wait=0 \
--export=ALL /bin/bash

Submit Interactive Job with "salloc"

Code Block
saloc ...

Submit Batch Job

Code Block
sbatch [job_script]

Check Job Status

Code Block
squeue -u [username]

Cancel Running Job

Code Block
scancel -u [job_id]