Difference between revisions of "FurtherTopics/Sinfo"

From HPC
Jump to: navigation , search
(Created page with "''sinfo'' shows the information on the partitions and nodes in the cluster. <pre style="background-color: #000000; color: white; border: 2px solid black; font-family: monospac...")
 
m
Line 34: Line 34:
 
| List of nodes in specific state/partition
 
| List of nodes in specific state/partition
 
|}
 
|}
 +
 +
 +
 +
 +
[[FurtherTopics/Further Topics| Back to Further Topics]]

Revision as of 15:39, 15 November 2022

sinfo shows the information on the partitions and nodes in the cluster.

[username@login01 ~]$ sinfo
PARTITION AVAIL  TIMELIMIT  NODES  STATE NODELIST
compute*     up 2-00:00:00      9    mix c[006,012,014,016,018-020,022,170]
compute*     up 2-00:00:00     11  alloc c[003-004,008,015,046,086,093,098,138,167-168]
compute*     up 2-00:00:00    156   idle c[001-002,005,007,009-011,013,017,021,023-045,047-085,087-092,094-097,099-137,139-166,169,171-176]
highmem      up 4-00:00:00      1    mix c230
highmem      up 4-00:00:00      2  alloc c[231-232]
highmem      up 4-00:00:00      1   idle c233
gpu          up 5-00:00:00      4   idle gpu[01-04]
Heading Description
PARTITION A group of nodes, on Viper partitions are organised by node type e.g compute, high memory and GPU
AVAIL Availability of a specific partition
TIMELIMIT Time limit for jobs running on a specific partition e.g. for the compute nodes the maximum time a job can run for is 2 days.
NODES Number of nodes in a specific state/partition
STATE The current status of a partition/group of nodes e.g. alloc (allocated)
NODELIST List of nodes in specific state/partition



Back to Further Topics