2020-12-07 13:33:42 +01:00
|
|
|
{
|
|
|
|
super
|
|
|
|
, self
|
|
|
|
, bsc
|
|
|
|
, garlic
|
|
|
|
, callPackage
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
rPlot = garlic.pp.rPlot;
|
|
|
|
ds = garlic.ds;
|
2021-02-03 12:39:44 +01:00
|
|
|
exp = garlic.exp;
|
|
|
|
pp = garlic.pp;
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
exptt = exlist: map (e: e.timetable) exlist;
|
|
|
|
rPlotExp = rScript: exp: rPlot {
|
|
|
|
script = rScript;
|
|
|
|
dataset = pp.mergeDatasets (exptt exp);
|
|
|
|
};
|
2020-12-07 13:33:42 +01:00
|
|
|
in
|
|
|
|
{
|
2021-02-03 12:39:44 +01:00
|
|
|
nbody = with exp.nbody; {
|
2021-02-03 13:02:18 +01:00
|
|
|
baseline = rPlotExp ./nbody/baseline.R [ baseline ];
|
|
|
|
small = rPlotExp ./nbody/baseline.R [ small ];
|
|
|
|
jemalloc = rPlotExp ./nbody/jemalloc.R [ baseline jemalloc ];
|
|
|
|
ctf = rPlotExp ./nbody/baseline.R [ ctf ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
hpcg = with exp.hpcg; {
|
|
|
|
oss = rPlotExp ./hpcg/oss.R [ oss ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
saiph = with exp.saiph; {
|
|
|
|
granularity = rPlotExp ./saiph/granularity.R [ granularity ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
heat = with exp.heat; {
|
|
|
|
test = rPlotExp ./heat/test.R [ test ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
2020-12-18 12:26:40 +01:00
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
creams = with exp.creams; {
|
|
|
|
ss = rPlotExp ./creams/ss.R [ ss.hybrid ss.pure ];
|
2020-12-18 12:26:40 +01:00
|
|
|
};
|
2020-12-07 13:33:42 +01:00
|
|
|
}
|