[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
slurm [2022/09/06 14:18]
vodrazka [Batch mode]
slurm [2022/09/06 15:50]
vodrazka [Cluster info]
Line 64: Line 64:
 </code> </code>
  
-filter jobs in specific state (e.g. ''RUNNING''see ''man squeue'' for list of valid job states)+filter jobs in specific state (see ''man squeue'' for list of valid job states):
 <code> <code>
 squeue -t RUNNING squeue -t RUNNING
 </code> </code>
 +
 +filter jobs running on a specific node:
 +<code>
 +squeue -w dll-3gpu1
 +</code>
 +
 +==== Cluster info ====
 +
 +The command ''sinfo'' can give you useful information about nodes available in the cluster. Here is a short list of some examples:
 +
 +List available partitions(queues). The default partition is marked with ''*'':
 +<code>
 +sinfo
 +</code> 
 +
 +List types of available GPUs:
 +<code>
 +sinfo -o %G
 +</code>
 +
 +
  
  

[ Back to the navigation ] [ Back to the content ]