You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am an expert user of a cluster with a Sun Grid Engine Scheduler and need to use a cluster with a SLURM Scheduler. Can someone help me get started by translating the following simple examples from SGE to SLURM?
What Jobs are currently running? qstat
What Jobs am I currently running? qstat -u username
Launch an interactive session on one node with 16 cores: qrsh -pe omp 16
Launch a batch job one node with 16 cores: qsub -pe omp 16 script.sh
I am an expert user of a cluster with a Sun Grid Engine Scheduler and need to use a cluster with a SLURM Scheduler. Can someone help me get started by translating the following simple examples from SGE to SLURM?
What Jobs are currently running?
qstat
What Jobs am I currently running?
qstat -u username
Launch an interactive session on one node with 16 cores:
qrsh -pe omp 16
Launch a batch job one node with 16 cores:
qsub -pe omp 16 script.sh
Cancel a batch job
qdel -j jobID
Cancel all my jobs
qdel -u username
CURATOR: John Goodhue
See Full Post
The text was updated successfully, but these errors were encountered: