Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add a section on how to check avaialble GPUs on a specific node

...

Code Block
languagebash
titlesinfo
> sinfo
PARTITION AVAIL  TIMELIMIT  NODES STATE  NODELIST 
anagpu*      up   infinite      9  down* psanagpu[101-109] 
anagpu*      up   infinite      4   idle psanagpu[110-113] 

The * following the name means default partition (queue) is anagpu

Check available GPUs on a specific node


scontrol show node psanagpu116 -d | grep Gres=gpu

From the psana pool:

Gres=gpu:1080ti:1(S:0)

Job Submission

There are 2 ways to submit a job on the cluster. The main way is by using the sbatch command for later execution, and the other is to submit an interactive job via srun

...