Pitzer expansion and slurm migration
OSC has expanded Pitzer Cluster approximately tripling the peak capacity.
This page documents the known issues for migrating jobs from Torque to Slurm.
Please be aware that $PBS_NODEFILE
is a file while $SLURM_JOB_NODELIST
is a string variable.
The analog on Slurm to cat $PBS_NODEFILE
is srun hostname | sort -n
Environment variables do not work in a slurm directive inside a job script.
There are different ways to submit interactive jobs.
sinteractive
You can use the custom tool sinteractive
as:
Use | Torque/Moab Command | Slurm Equivalent |
---|---|---|
Submit batch job | qsub <jobscript> |
sbatch <jobscript> |
Submit interactive job | qsub -I [options] |
|