[ 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/10/17 10:35]
fucik [Interactive mode]
slurm [2022/10/25 14:17]
vodrazka [cpu-troja]
Line 5: Line 5:
 Currently there are following partitions (queues) available for computing: Currently there are following partitions (queues) available for computing:
  
-**Partition name** **Nodes**  **Note** +===== Node list by partitions ===== 
-cpu-troja      7x CPU default partition + 
-gpu-troja      6x GPU featuresgpuram48G,gpuram40G +==== cpu-troja ==== 
-gpu-ms         7x GPU featuresgpuram48G,gpuram24G |+ 
 +Node name | Thread count Socket:Core:Thread | RAM (MB) 
 +achilles1 32 2:8:2 | 128810 
 +achilles2 32 2:8:2 | 128810 
 +achilles3 32 2:8:2 128810 | 
 +| achilles4 | 32 | 2:8:2 | 128810 | 
 +| achilles5 | 32 | 2:8:2 | 128810 | 
 +| achilles6 | 32 | 2:8:2 | 128810 | 
 +| achilles7 | 32 | 2:8:2 | 128810 | 
 +| achilles8 | 32 | 2:8:2 | 128810 | 
 +| hector1 | 32 | 2:8:2 | 128810 | 
 +| hector2 | 32 | 2:8:2 | 128810 | 
 +| hector3 | 32 | 2:8:2 | 128810 | 
 +| hector4 | 32 | 2:8:2 | 128810 | 
 +| hector5 | 32 | 2:8:2 | 128810 | 
 +| hector6 | 32 | 2:8:2 | 128810 | 
 +| hector7 | 32 | 2:8:2 | 128810 | 
 +| hector8 | 32 | 2:8:2 | 128810 | 
 +| helena1 | 32 | 2:8:2 | 128811 | 
 +| helena2 | 32 | 2:8:2 | 128811 | 
 +| helena3 | 32 | 2:8:2 | 128811 | 
 +| helena4 | 32 | 2:8:2 | 128811 | 
 +| helena5 | 32 | 2:8:2 | 128810 | 
 +| helena6 | 32 | 2:8:2 | 128811 | 
 +| helena7 | 32 | 2:8:2 | 128810 | 
 +| helena8 | 32 | 2:8:2 | 128811 | 
 +| paris1 | 32 | 2:8:2 | 128810 | 
 +| paris2 | 32 | 2:8:2 | 128810 | 
 +| paris3 | 32 | 2:8:2 | 128810 | 
 +| paris4 | 32 | 2:8:2 | 128810 | 
 +| paris5 | 32 | 2:8:2 | 128810 | 
 +| paris6 | 32 | 2:8:2 | 128810 | 
 +| paris7 | 32 | 2:8:2 | 128810 | 
 +| paris8 | 32 | 2:8:2 | 128810 | 
 +| hyperion2 | 64 | 2:16:2 | 257667 | 
 +| hyperion3 | 64 | 2:16:2 | 257667 | 
 +| hyperion4 | 64 | 2:16:2 | 257667 | 
 +| hyperion5 | 64 | 2:16:2 | 257667 | 
 +| hyperion6 | 64 | 2:16:2 | 257667 | 
 +| hyperion7 | 64 | 2:16:2 | 257667 | 
 +| hyperion8 | 64 | 2:16:2 | 257667 | 
 +==== cpu-ms ==== 
 + 
 +==== gpu-troja ==== 
 + 
 +==== gpu-ms ====
  
 In order to submit a job you need to login to one of the head nodes: In order to submit a job you need to login to one of the head nodes:
Line 157: Line 202:
 There are many more parameters available to use. For example: There are many more parameters available to use. For example:
  
-<code>srun -p cpu-troja --mem=64G --pty bash</code>+**To get an interactive CPU job with 64GB of reserved memory:** 
 +<code>srun -p cpu-troja,cpu-ms --mem=64G --pty bash</code>
  
   * ''-p cpu-troja'' explicitly requires partition ''cpu-troja''. If not specified slurm will use default partition.   * ''-p cpu-troja'' explicitly requires partition ''cpu-troja''. If not specified slurm will use default partition.
   * ''--mem=64G'' requires 64G of memory for the job   * ''--mem=64G'' requires 64G of memory for the job
 +
 +**To get interactive job with a single GPU of any kind:**
 +<code>srun -p gpu-troja,gpu-ms --gres=gpu:1 --pty bash</code>
 +  * ''-p gpu-troja,gpu-ms'' require only nodes from these two partitions
 +  * ''--gres=gpu:1'' requires 1 GPUs
  
 <code>srun -p gpu-troja,gpu-ms --nodelist=tdll-3gpu1 --mem=64G --gres=gpu:2 --pty bash</code> <code>srun -p gpu-troja,gpu-ms --nodelist=tdll-3gpu1 --mem=64G --gres=gpu:2 --pty bash</code>
Line 173: Line 224:
  
 <code>man srun</code> <code>man srun</code>
 +
 +===== See also =====
 +
 +https://www.msi.umn.edu/slurm/pbs-conversion
 +
  

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