bscpkgs/garlic/fig/index.nix

44 lines
886 B
Nix
Raw Normal View History

{
super
, self
, bsc
, garlic
, callPackage
}:
let
rPlot = garlic.pp.rPlot;
exp = garlic.exp;
pp = garlic.pp;
exptt = exlist: map (e: e.timetable) exlist;
rPlotExp = rScript: exp: rPlot {
script = rScript;
dataset = pp.mergeDatasets (exptt exp);
};
in
{
nbody = with exp.nbody; {
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 ];
};
hpcg = with exp.hpcg; {
oss = rPlotExp ./hpcg/oss.R [ oss ];
};
saiph = with exp.saiph; {
granularity = rPlotExp ./saiph/granularity.R [ granularity ];
};
heat = with exp.heat; {
test = rPlotExp ./heat/test.R [ test ];
};
2020-12-18 19:26:40 +08:00
creams = with exp.creams; {
ss = rPlotExp ./creams/ss.R [ ss.hybrid ss.pure ];
2020-12-18 19:26:40 +08:00
};
}