From e7359ebeba0c47b6fc87b90b75440254a4f37046 Mon Sep 17 00:00:00 2001 From: Dustin Frisch Date: Wed, 23 Aug 2023 16:03:52 +0200 Subject: [PATCH] Reduce slots to real nr of cores --- machines/manager/mpi.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/manager/mpi.nix b/machines/manager/mpi.nix index 098fccc..dc37270 100644 --- a/machines/manager/mpi.nix +++ b/machines/manager/mpi.nix @@ -5,7 +5,7 @@ with lib; { environment.etc."mpi/hosts" = { text = concatMapStringsSep "\n" - (node: "${node.config.networking.hostName} max_slots=64") + (node: "${node.config.networking.hostName} max_slots=32") (filter (node: elem "node" node.config.deployment.tags) (attrValues nodes));