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;
|
||||
inherit (c.input) granul;
|
||||
inherit (c) gitBranch;
|
||||
nprocz = hw.socketsPerNode * nodes;
|
||||
nprocz = ntasksPerNode * nodes;
|
||||
|
||||
# Repeat the execution of each unit 30 times
|
||||
loops = 30;
|
||||
|
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user