You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Submit Interactive Job with "srun"

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"

salloc --account=[account_name] --partition=debug --nodes=1 --ntasks-per-node=8 --gres=gpu:v100:1 --time=12:00:00

ssh [username]@[allocated_machine_name]

Submit Batch Job

sbatch [job_script]

Check Job Status

squeue -u [username]

Cancel Running Job

scancel -u [job_id]
  • No labels