Tutorial:Slurm and parallelization
0
1
Entering edit mode
2.9 years ago
Juke34 8.5k

Using parallelization in a proper way is not always straightforward. Here some help to better understand how it works with Slurm:

(Full part of this documentation is available here)

enter image description here

If the cluster has two type of nodes, e.g. 16 and 36 CPUs nodes. When asking for 36 CPU for a single job you must use the following syntax otherwise the job may be sent to a 16 CPU node:

srun -J jobName [-N 1] -n 1 -c 36 <command>

-N is optional because -c 36 means you need 36 cores in one node, since threads cannot span across nodes. But it doesn't hurt to be explicit and specify all three parameters.

slurm • 1.3k views
ADD COMMENT

Login before adding your answer.

Traffic: 2704 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6