2020-09-30 17:32:49 +02:00
|
|
|
{
|
|
|
|
stdenv
|
|
|
|
, nixpkgs
|
|
|
|
, pkgs
|
|
|
|
, genApp
|
|
|
|
, genConfigs
|
|
|
|
, runWrappers
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
bsc = pkgs.bsc;
|
|
|
|
|
|
|
|
# Set variable configuration for the experiment
|
|
|
|
varConfig = {
|
2020-10-01 16:48:35 +02:00
|
|
|
cc = [ bsc.icc ]; # [ bsc.icc pkgs.gfortran10 ];
|
2020-09-30 17:32:49 +02:00
|
|
|
|
2020-10-01 16:48:35 +02:00
|
|
|
mpi = [ bsc.impi ]; # [ bsc.impi bsc.openmpi-mn4 ];
|
|
|
|
|
|
|
|
input = [
|
2020-10-02 16:27:22 +02:00
|
|
|
{ nodes=1 ; nprocz=48 ; granul=0; time= "10:00:00"; }
|
|
|
|
{ nodes=2 ; nprocz=96 ; granul=0; time= "05:00:00"; }
|
|
|
|
{ nodes=4 ; nprocz=192; granul=0; time= "03:00:00"; }
|
|
|
|
{ nodes=8 ; nprocz=384; granul=0; time= "02:00:00"; }
|
|
|
|
{ nodes=16; nprocz=768; granul=0; time= "01:00:00"; }
|
2020-10-01 16:48:35 +02:00
|
|
|
];
|
2020-10-02 16:27:22 +02:00
|
|
|
|
|
|
|
gitBranch = [ "garlic/mpi+send+seq" ];
|
2020-09-30 17:32:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Common configuration
|
|
|
|
common = {
|
|
|
|
# Resources
|
|
|
|
ntasksPerNode = 48;
|
|
|
|
#ntasksPerSocket = 24; // Add this variable to nix
|
|
|
|
|
|
|
|
# Stage configuration
|
|
|
|
enableSbatch = true;
|
|
|
|
enableControl = true;
|
|
|
|
enableExtrae = false;
|
|
|
|
enablePerf = false;
|
|
|
|
enableCtf = false;
|
|
|
|
|
|
|
|
# MN4 path
|
|
|
|
nixPrefix = "/gpfs/projects/bsc15/nix";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Compute the cartesian product of all configurations
|
|
|
|
configs = map (conf: conf // common) (genConfigs varConfig);
|
|
|
|
|
|
|
|
stageProgram = stage:
|
|
|
|
if stage ? programPath
|
|
|
|
then "${stage}${stage.programPath}" else "${stage}";
|
|
|
|
|
|
|
|
w = runWrappers;
|
|
|
|
|
|
|
|
sbatch = {stage, conf, ...}: with conf; w.sbatch {
|
2020-10-02 16:27:22 +02:00
|
|
|
nodes = input.nodes;
|
2020-09-30 17:32:49 +02:00
|
|
|
program = stageProgram stage;
|
|
|
|
exclusive = true;
|
2020-10-02 16:27:22 +02:00
|
|
|
time = input.time;
|
|
|
|
#qos = "debug";
|
|
|
|
jobName = "creams-ss-${toString input.nodes}-${toString gitBranch}";
|
2020-10-01 16:48:35 +02:00
|
|
|
inherit nixPrefix ntasksPerNode;
|
2020-09-30 17:32:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
control = {stage, conf, ...}: with conf; w.control {
|
|
|
|
program = stageProgram stage;
|
|
|
|
};
|
|
|
|
|
|
|
|
srun = {stage, conf, ...}: with conf; w.srun {
|
|
|
|
program = stageProgram stage;
|
|
|
|
srunOptions = "--cpu-bind=verbose,rank";
|
|
|
|
inherit nixPrefix;
|
|
|
|
};
|
|
|
|
|
|
|
|
statspy = {stage, conf, ...}: with conf; w.statspy {
|
|
|
|
program = stageProgram stage;
|
|
|
|
};
|
|
|
|
|
|
|
|
perf = {stage, conf, ...}: with conf; w.perf {
|
|
|
|
program = stageProgram stage;
|
|
|
|
perfArgs = "sched record -a";
|
|
|
|
};
|
|
|
|
|
|
|
|
nixsetup = {stage, conf, ...}: with conf; w.nixsetup {
|
|
|
|
program = stageProgram stage;
|
|
|
|
nixsetup = "${nixPrefix}/bin/nix-setup";
|
|
|
|
};
|
|
|
|
|
|
|
|
extrae = {stage, conf, ...}: w.extrae {
|
|
|
|
program = stageProgram stage;
|
|
|
|
traceLib = "mpi"; # mpi -> libtracempi.so
|
|
|
|
configFile = ./extrae.xml;
|
|
|
|
};
|
|
|
|
|
|
|
|
ctf = {stage, conf, ...}: w.argv {
|
|
|
|
program = stageProgram stage;
|
|
|
|
env = ''
|
|
|
|
export NANOS6=ctf
|
|
|
|
export NANOS6_CTF2PRV=0
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
bscOverlay = import ../../../overlay.nix;
|
|
|
|
|
|
|
|
genPkgs = newOverlay: nixpkgs {
|
|
|
|
overlays = [
|
|
|
|
bscOverlay
|
|
|
|
newOverlay
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2020-10-01 16:48:35 +02:00
|
|
|
inputDataset = {stage, conf, ...}:
|
2020-09-30 17:32:49 +02:00
|
|
|
let
|
|
|
|
input = bsc.garlic.creamsInput.override {
|
2020-10-01 16:48:35 +02:00
|
|
|
gitBranch = conf.gitBranch;
|
|
|
|
granul = conf.input.granul;
|
|
|
|
nprocz = conf.input.nprocz;
|
2020-09-30 17:32:49 +02:00
|
|
|
};
|
|
|
|
in w.argv
|
|
|
|
{
|
|
|
|
program = stageProgram stage;
|
|
|
|
env = ''
|
|
|
|
cp -r ${input}/SodTubeBenchmark/* .
|
2020-10-01 16:48:35 +02:00
|
|
|
chmod +w -R .
|
2020-09-30 17:32:49 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# We may be able to use overlays by invoking the fix function directly, but we
|
|
|
|
# have to get the definition of the bsc packages and the garlic ones as
|
|
|
|
# overlays.
|
|
|
|
|
|
|
|
creamsFn = {stage, conf, ...}: with conf;
|
|
|
|
let
|
|
|
|
# We set the mpi implementation to the one specified in the conf, so all
|
|
|
|
# packages in bsc will use that one.
|
|
|
|
customPkgs = genPkgs (self: super: {
|
|
|
|
bsc = super.bsc // { mpi = conf.mpi; };
|
|
|
|
});
|
|
|
|
in
|
|
|
|
customPkgs.bsc.garlic.creams.override {
|
|
|
|
inherit cc mpi gitBranch;
|
|
|
|
};
|
|
|
|
|
|
|
|
stages = with common; []
|
|
|
|
# Use sbatch to request resources first
|
|
|
|
++ optional enableSbatch sbatch
|
|
|
|
|
|
|
|
# Repeats the next stages N times
|
|
|
|
++ optionals enableControl [ nixsetup control ]
|
|
|
|
|
|
|
|
# Executes srun to launch the program in the requested nodes, and
|
|
|
|
# immediately after enters the nix environment again, as slurmstepd launches
|
|
|
|
# the next stages from outside the namespace.
|
|
|
|
++ [ srun nixsetup ]
|
|
|
|
|
|
|
|
# Intrumentation with extrae
|
|
|
|
++ optional enableExtrae extrae
|
|
|
|
|
|
|
|
# Optionally profile the next stages with perf
|
|
|
|
++ optional enablePerf perf
|
|
|
|
|
|
|
|
# Optionally profile nanos6 with the new ctf
|
|
|
|
++ optional enableCtf ctf
|
|
|
|
|
2020-10-01 16:48:35 +02:00
|
|
|
# Execute the app with the argv and env vars
|
2020-09-30 17:32:49 +02:00
|
|
|
++ [ inputDataset creamsFn ];
|
|
|
|
|
|
|
|
# List of actual programs to be executed
|
|
|
|
jobs = map (conf: w.stagen { inherit conf stages; }) configs;
|
|
|
|
|
|
|
|
in
|
|
|
|
# We simply run each program one after another
|
|
|
|
w.launch jobs
|