creams: fix pure experiment

Use machine agnostic specification for resources
This commit is contained in:
Rodrigo Arias Mallo 2020-11-17 12:31:03 +01:00
parent bcb9cf31a3
commit fe0bd8b200
2 changed files with 4 additions and 4 deletions

View File

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

View File

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