Table of Contents

How can I see what resources are on each node/partition?

Option 1

View the HPC resources type table, this gives you detailed hardware specifications of each physical server node type:


Option 2

View the partition definitions, this shows what default values are available in each of the Slurm resource partitions.

View the Rocket partition definitions:

View the Comet partition definitions:


Option 3

Use sinfo to report on current partition resource availability. On Rocket you can see the list of CPU and GPU resources on the power partition as follows:

$ sinfo -o "%6N %8c %G" -p power
NODELI CPUS     GRES
pn001  128      gpu:Tesla-V100-SXM2-16GB:4
$

Repeat as needed for each partition type you are interested in; the same commands work for Comet.

Note that all our node types of the same category are identical - we don't have mixes of different GPU types within the same node type; all small GPU hosts have the same card, and all large GPU hosts have the same.


Back to FAQ index