bscpkgs/garlic/exp/nbody/granularity.nix

60 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-09 21:55:37 +08:00
{
stdenv
, stdexp
2020-10-09 22:32:28 +08:00
, bsc
2020-10-09 21:55:37 +08:00
, targetMachine
, stages
2021-03-24 17:12:05 +08:00
, garlicTools
, callPackage
2020-10-09 21:55:37 +08:00
}:
with stdenv.lib;
2021-03-24 17:12:05 +08:00
with garlicTools;
2020-10-09 21:55:37 +08:00
let
2020-10-10 01:33:06 +08:00
# Initial variable configuration
varConf = {
blocksize = range2 64 2048;
2021-03-24 17:12:05 +08:00
gitBranch = [
# "garlic/mpi+send+oss+task"
# "garlic/tampi+send+oss+task"
2021-03-24 17:12:05 +08:00
"garlic/tampi+isend+oss+task"
];
2020-10-09 21:55:37 +08:00
};
2020-10-10 01:33:06 +08:00
# Generate the complete configuration for each unit
2021-03-24 17:12:05 +08:00
genConf = c: targetMachine.config // rec {
hw = targetMachine.config.hw;
particles = 8 * 1024 * hw.cpusPerSocket;
2020-10-09 21:55:37 +08:00
timesteps = 10;
2021-03-24 17:12:05 +08:00
blocksize = c.blocksize;
gitBranch = c.gitBranch;
2020-10-09 21:55:37 +08:00
2021-03-24 17:12:05 +08:00
expName = "nbody-granularity";
unitName = expName +
"-${toString gitBranch}" +
"-bs${toString blocksize}";
2020-10-09 21:55:37 +08:00
loops = 10;
2020-10-27 02:43:02 +08:00
qos = "debug";
2021-03-24 17:12:05 +08:00
cpusPerTask = hw.cpusPerSocket;
ntasksPerNode = hw.socketsPerNode;
nodes = 1;
time = "02:00:00";
2021-03-24 17:12:05 +08:00
jobName = unitName;
2020-10-09 21:55:37 +08:00
};
common = callPackage ./common.nix {};
2020-10-09 21:55:37 +08:00
inherit (common) getConfigs pipeline;
2020-10-09 21:55:37 +08:00
configs = getConfigs {
inherit varConf genConf;
};
2020-10-09 21:55:37 +08:00
in
2020-10-09 23:19:00 +08:00
stdexp.genExperiment { inherit configs pipeline; }