Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit fe0bd8b200 - Show all commits

View File

@@ -37,7 +37,7 @@ let
mpi = impi;
inherit (c.input) granul;
inherit (c) gitBranch;
nprocz = hw.socketsPerNode * nodes;
nprocz = ntasksPerNode * nodes;
# Repeat the execution of each unit 30 times
loops = 30;

View File

@@ -30,16 +30,16 @@ let
mpi = impi;
granul = 0;
gitBranch = "garlic/mpi+send+seq";
nprocz = 48 * nodes;
nprocz = ntasksPerNode * nodes;
# Repeat the execution of each unit 30 times
loops = 30;
# Resources
qos = "debug";
ntasksPerNode = 48;
ntasksPerNode = hw.cpusPerNode;
inherit (c.input) time nodes;
cpusPerTask = hw.cpusPerSocket;
cpusPerTask = 1;
jobName = unitName;
};