bscpkgs/garlic/exp/nbody/granularity.nix

64 lines
1.3 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
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 = with bsc; {
blocksize = [ 128 256 512 1024 2048 4096 ];
2021-03-24 17:12:05 +08:00
gitBranch = [
"garlic/mpi+send+oss+task"
"garlic/tampi+send+oss+task"
"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 = 4096 * 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
2021-03-24 17:12:05 +08:00
loops = 30;
2020-10-27 02:43:02 +08:00
2021-03-24 17:12:05 +08:00
qos = "bsc_cs";
ntasksPerNode = 1;
nodes = 1;
time = "04:00:00";
cpusPerTask = hw.cpusPerSocket;
jobName = unitName;
2020-10-09 21:55:37 +08:00
};
# Compute the array of configurations
configs = stdexp.buildConfigs {
2020-10-10 01:33:06 +08:00
inherit varConf genConf;
2020-10-09 21:55:37 +08:00
};
2021-03-24 17:12:05 +08:00
exec = {nextStage, conf, ...}: stages.exec {
2020-10-09 21:55:37 +08:00
inherit nextStage;
2021-03-24 17:12:05 +08:00
argv = [ "-t" conf.timesteps "-p" conf.particles ];
2020-10-09 21:55:37 +08:00
};
2021-03-24 17:12:05 +08:00
program = {nextStage, conf, ...}: with conf; bsc.garlic.apps.nbody.override {
inherit (conf) blocksize gitBranch;
2020-10-27 02:43:02 +08:00
};
2020-10-09 21:55:37 +08:00
2020-10-10 01:40:49 +08:00
pipeline = stdexp.stdPipeline ++ [ exec program ];
2020-10-09 21:55:37 +08:00
in
2020-10-09 23:19:00 +08:00
stdexp.genExperiment { inherit configs pipeline; }