bscpkgs/garlic/exp/bigsort/mpi+omp.nix

80 lines
1.7 KiB
Nix
Raw Normal View History

2020-11-17 15:36:42 +01:00
{
stdenv
, stdexp
, bsc
, targetMachine
, stages
}:
with stdenv.lib;
let
# Initial variable configuration
varConf = with bsc; {
2020-11-17 16:00:53 +01:00
n = [ 134217728 ];
bs = [ 134217728 ];
2020-11-17 15:36:42 +01:00
};
# Generate the complete configuration for each unit
genConf = with bsc; c: targetMachine.config // rec {
expName = "bigsort.mpi+omp";
unitName = "${expName}.bs${toString bs}";
# hpcg options
n = c.n;
bs = c.bs;
cc = bsc.icc;
mpi = bsc.mpi; # TODO: Remove this for oss
gitBranch = "garlic/mpi+send+omp+task";
# Repeat the execution of each unit 30 times
loops = 1;
# Resources
qos = "debug";
ntasksPerNode = 1;
nodes = 1;
time = "01:00:00";
# task in one socket
cpuBind = "verbose,mask_cpu:0xffffff";
jobName = "bigsort-${toString n}-${toString bs}-${gitBranch}";
};
# Compute the array of configurations
configs = stdexp.buildConfigs {
inherit varConf genConf;
};
# input = genInput configs;
exec = {nextStage, conf, ...}: with conf; stages.exec {
inherit nextStage;
#env = "NANOS6_DEPENDENCIES=discrete";
argv = [
"${toString n}"
"${toString bs}"
2020-11-17 16:00:53 +01:00
"/gpfs/scratch/bsc15/bsc15065/BigSort/1g_unsorted.dat"
"/gpfs/scratch/bsc15/bsc15065/BigSort/1g_sorted.dat"
"/gpfs/scratch/bsc15/bsc15065/BigSort/tmp"
2020-11-17 15:36:42 +01:00
#"${toString inputFile}"
#"${toString outputFile}"
2020-11-17 16:00:53 +01:00
#"$TMPDIR"
2020-11-17 15:36:42 +01:00
"${toString (builtins.div bs 2)}"
];
};
program = {nextStage, conf, ...}: with conf;
let
customPkgs = stdexp.replaceMpi conf.mpi;
in
customPkgs.apps.bigsort.override {
inherit cc gitBranch;
};
pipeline = stdexp.stdPipeline ++ [ exec program ];
in
#{ inherit configs pipeline; }
stdexp.genExperiment { inherit configs pipeline; }