ACTION | SLURM | SGE | PBS | LSF |
---|---|---|---|---|
submit | sbatch (or srun) | qsub | qsub | bsub |
submit using script | sbatch scriptFile (srun scriptFile) | qsub | qsub scriptFile | bsub < scriptFile |
check output | (read files) | (read files) | (read files) | bpeek |
show my queued | squeue -u $USER | qstat | qstat -u $USER | bjobs |
show all queued | squeue | qstat -u \* | qstat | bjobs -u all |
cluster status | sinfo | qstat -g c | qstat -B | bqueues |
show queue names | sinfo | qconf -sql | qstat -Q | bqueues |
kill job | scancel | qdel | qdel | bkill |
release a held job | scontrol | qrls | qrls | |
job accounting | sacct | qacct | bhist | |
node info (may be long!) | sinfo | pbsnodes -a | ||
list nodes that are offline | sinfo | pbsnodes -l |
Please email us with additional suggestions
With thanks to Ian Kirker for spotting typo!