bscpkgs/garlic/exp/nbody/weak-scaling-oss.nix

63 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
}:
with stdenv.lib;
let
2020-10-10 01:33:06 +08:00
# Initial variable configuration
varConf = with bsc; {
cpuMask = [ "0x1" "0x3" "0xf" "0xff" "0xffff" "0xffffffff" "0xffffffffffff" ];
2020-10-09 21:55:37 +08:00
};
2020-10-10 01:33:06 +08:00
# Generate the complete configuration for each unit
genConf = with bsc; c: targetMachine.config // rec {
2020-10-09 21:55:37 +08:00
# nbody options
particles = 1024 * 64;
2020-10-09 21:55:37 +08:00
timesteps = 10;
blocksize = 1024;
inherit (c) cpuMask;
2020-10-09 21:55:37 +08:00
cc = icc;
mpi = impi;
gitBranch = "garlic/oss+task";
2020-10-09 21:55:37 +08:00
# Repeat the execution of each unit 30 times
loops = 30;
# Resources
2020-10-10 01:33:06 +08:00
qos = "debug";
ntasksPerNode = 1;
2020-10-09 21:55:37 +08:00
nodes = 1;
2020-10-10 01:40:49 +08:00
time = "02:00:00";
cpuBind = "verbose,mask_cpu:${cpuMask}";
jobName = "nbody-bs-${cpuMask}-${gitBranch}";
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
};
exec = {nextStage, conf, ...}: with conf; stages.exec {
inherit nextStage;
argv = [ "-t" timesteps "-p" particles ];
};
program = {nextStage, conf, ...}: with conf;
let
2020-10-09 23:19:00 +08:00
customPkgs = stdexp.replaceMpi conf.mpi;
2020-10-09 21:55:37 +08:00
in
2020-10-09 23:19:00 +08:00
customPkgs.apps.nbody.override {
inherit cc blocksize mpi gitBranch;
};
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; }