jungle/m/common/slurm.nix

18 lines
356 B
Nix
Raw Normal View History

2023-04-26 13:35:06 +02:00
{ ... }:
{
services.slurm = {
client.enable = true;
2023-06-14 11:15:00 +02:00
controlMachine = "hut";
2023-04-26 13:35:06 +02:00
clusterName = "owl";
nodeName = [
"owl[1,2] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=owl"
"hut Sockets=2 CoresPerSocket=14 ThreadsPerCore=2"
2023-04-26 13:35:06 +02:00
];
2023-04-28 17:07:48 +02:00
extraConfig = ''
MpiDefault=pmix
ReturnToService=2
2023-04-28 17:07:48 +02:00
'';
2023-04-26 13:35:06 +02:00
};
}