[ 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 16:06]
vodrazka [Batch mode]
slurm [2022/09/08 13:24]
vodrazka [Cluster info]
Line 90: Line 90:
 <code> <code>
 sinfo sinfo
 +</code>
 +
 +List detailed info about nodes:
 +<code>
 +sinfo -l -N
 </code>  </code> 
  
-List types of available GPUs:+List nodes with some info and their features:
 <code> <code>
-sinfo -o %G+sinfo -N -o "%N %P %.11T %.15f"
 </code> </code>
  
Line 113: Line 118:
 <code>srun -p cpu-troja --mem=64G --pty bash</code> <code>srun -p cpu-troja --mem=64G --pty bash</code>
  
-Where: 
   * ''-p cpu-troja'' explicitly requires partition ''cpu-troja''   * ''-p cpu-troja'' explicitly requires partition ''cpu-troja''
   * ''--mem=64G'' requires 64G of memory for the job   * ''--mem=64G'' requires 64G of memory for the job
 +
 +<code>srun -p gpu-troja --nodelist=tdll-3gpu1 --mem=64G --gres=gpu:2 --pty bash</code>
 +
 +  * ''--nodelist=tdll-3gpu1'' explicitly requires one specific node
 +  * ''--gres=gpu:2'' requires 2 GPUs
  
 To see all the available options type: To see all the available options type:

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