Skip to content
G. E. Kenney edited this page Dec 1, 2023 · 1 revision

Working on the cluster

Connecting

ssh

VDI

???

Moving files

command line

samba

???

Cluster areas

Home directory

Holylabs

Holyscratch

Group server

Nodes

Login nodes
Test
GPU
etc

Slurm

Submitting a job via sbatch

Requesting resources
Formatting scripts
Managing jobs

Submitting a job via slurm:

%     sbatch yourScript.sh

Note: you'll get a notice involving your job number (NNNNNN). Make note of it, since you can use that to check on or cancel your job! Submitting an array of jobs via slurm:

%     sbatch --array=X-Y yourScript.sh

Submitting an array of batched jobs via slurm:

%     sbatch --array=X-Y%Z yourScript.sh

Checking on the status of a slurm job:

%     sacct -j NNNNNN

Cancelling a slurm job:

%     scancel NNNNNN

Running a job via salloc

Requesting resources

Clone this wiki locally