2021-02-23 11:52:42 +01:00
|
|
|
{
|
|
|
|
stdenv
|
|
|
|
, stdexp
|
|
|
|
, bsc
|
|
|
|
, targetMachine
|
|
|
|
, stages
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
# Initial variable configuration
|
|
|
|
varConf = with bsc; {
|
2021-02-25 18:00:13 +01:00
|
|
|
nbl = [ 1 2 4 8 16 32 64 ];
|
|
|
|
nodes = [ 1 2 4 8 ];
|
|
|
|
#gitCommit = [ "3ecae7c209ec3e33d1108ae4783d7e733d54f2ca" "3b52a616d44f4b86880663e2d951ad89c1dcab4f" ];
|
2021-02-23 11:52:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Generate the complete configuration for each unit
|
|
|
|
genConf = with bsc; c: targetMachine.config // rec {
|
|
|
|
expName = "saiph";
|
2021-02-25 18:00:13 +01:00
|
|
|
unitName = "${expName}-N${toString nodes}" + "-nblx${toString nblx}-nbly${toString nbly}" + "-par-init-One-dimensionalDistribution";
|
|
|
|
# unitName = if (gitCommit == "3b52a616d44f4b86880663e2d951ad89c1dcab4f")
|
|
|
|
# then "${expName}-N${toString nodes}" + "-nblx${toString nblx}-nbly${toString nbly}" + "-par-init"
|
|
|
|
# else "${expName}-N${toString nodes}" + "-nblx${toString nblx}-nbly${toString nbly}" + "-seq-init";
|
2021-02-23 11:52:42 +01:00
|
|
|
|
|
|
|
inherit (targetMachine.config) hw;
|
|
|
|
|
|
|
|
# saiph options
|
2021-02-25 18:00:13 +01:00
|
|
|
manualDist = 1;
|
|
|
|
nbgx = 1;
|
|
|
|
nbgy = 1;
|
|
|
|
nbgz = nodes;
|
|
|
|
nblx = 1;
|
|
|
|
nbly = c.nbl;
|
|
|
|
nblz = c.nbl;
|
2021-02-23 11:52:42 +01:00
|
|
|
mpi = impi;
|
|
|
|
gitBranch = "garlic/tampi+isend+oss+task+simd";
|
2021-02-25 18:00:13 +01:00
|
|
|
#gitCommit = c.gitCommit; # if exp involves more than 1 commit
|
|
|
|
#inherit (c) gitCommit; # if exp fixes the commit
|
2021-02-23 11:52:42 +01:00
|
|
|
|
|
|
|
# Repeat the execution of each unit 50 times
|
|
|
|
loops = 10;
|
|
|
|
|
|
|
|
# Resources
|
|
|
|
qos = "bsc_cs";
|
|
|
|
ntasksPerNode = 1;
|
|
|
|
nodes = c.nodes;
|
|
|
|
cpusPerTask = hw.cpusPerSocket;
|
|
|
|
jobName = "${unitName}";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Compute the array of configurations
|
|
|
|
configs = stdexp.buildConfigs {
|
|
|
|
inherit varConf genConf;
|
|
|
|
};
|
2021-02-25 18:00:13 +01:00
|
|
|
#configs = filter (el: if el.nbly == 1 && el.nblz == 1 && el.nodes == 1 && el.gitCommit == "3b52a616d44f4b86880663e2d951ad89c1dcab4f" then false else true) configsAll;
|
|
|
|
|
2021-02-23 11:52:42 +01:00
|
|
|
|
|
|
|
exec = {nextStage, conf, ...}: with conf; stages.exec {
|
|
|
|
inherit nextStage;
|
|
|
|
env = ''
|
|
|
|
export OMP_NUM_THREADS=${toString hw.cpusPerSocket}
|
|
|
|
export ASAN_SYMBOLIZER_PATH=${bsc.clangOmpss2Unwrapped}/bin/llvm-symbolizer
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
program = {nextStage, conf, ...}:
|
|
|
|
let
|
|
|
|
customPkgs = stdexp.replaceMpi conf.mpi;
|
|
|
|
in
|
|
|
|
customPkgs.apps.saiph.override {
|
2021-02-25 18:00:13 +01:00
|
|
|
inherit (conf) manualDist nbgx nbgy nbgz nblx nbly nblz mpi gitBranch;
|
2021-02-23 11:52:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
pipeline = stdexp.stdPipeline ++ [ exec program ];
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdexp.genExperiment { inherit configs pipeline; }
|