creams: fix pure experiment
Use machine agnostic specification for resources
This commit is contained in:
parent
bcb9cf31a3
commit
fe0bd8b200
@ -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;
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user