Tidy nbody experiment

This commit is contained in:
2020-08-10 15:27:46 +02:00
parent b777fbc6d5
commit 8db4ef2594
6 changed files with 52 additions and 176 deletions

View File

@@ -0,0 +1,38 @@
{
bsc
, nbody
, genApp
, genConfigs
, sbatch
, sbatchLauncher
}:
let
# Set the configuration for the experiment
config = {
cc = [ bsc.icc ];
blocksize = [ 1024 2048 4096 ];
};
# Compute the cartesian product of all configurations
configList = genConfigs config;
# Generate each app variant via override
appList = genApp nbody configList;
# Job generator helper function
genJobs = map (app:
sbatch {
app = app;
prefix = "/gpfs/projects/bsc15/nix";
exclusive = false;
ntasks = "1";
}
);
# Generate one job for each app variant
jobList = genJobs appList;
# And merge all jobs in a script to lauch them all with sbatch
launcher = sbatchLauncher jobList;
in
launcher