Attention
ShARC will be decommissioned on the 30th of November 2023, after which time users will no longer be able to access that cluster and any jobs running or queueing at that time will be cancelled.
Please see our page of important info about ShARC’s decommissioning.
Department or research group-specific nodes in Bessemer
Running Slurm batch jobs or interactive sessions on private nodes
To run Slurm jobs on private nodes you will need to specify at least one of:
A Slurm Account
A Slurm Partition
A Slurm QoS (Quality of Service)
You will be told what to specify when you are granted access to the private nodes.
To start an interactive session on a private node you want something like the following:
srun --account=SOMEACCOUNT --partition=SOMEPARTITION --qos=SOMEQOS --pty /bin/bash -i
To submit a batch start that will run on private node(s) you want something like the following in your batch job submission script:
#!/bin/bash
#SBATCH --account=SOMEACCOUNT
#SBATCH --partition=SOMEPARTITION
#SBATCH --qos=SOMEQOS