2020-12-07 13:33:42 +01:00
|
|
|
{
|
|
|
|
super
|
|
|
|
, self
|
|
|
|
, bsc
|
|
|
|
, garlic
|
|
|
|
, callPackage
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
rPlot = garlic.pp.rPlot;
|
2021-02-03 12:39:44 +01:00
|
|
|
exp = garlic.exp;
|
|
|
|
pp = garlic.pp;
|
2021-03-01 11:38:28 +01:00
|
|
|
ds = garlic.ds;
|
2021-02-03 12:39:44 +01:00
|
|
|
|
2021-03-01 11:38:28 +01:00
|
|
|
stdPlot = rScript: expList: rPlot {
|
2021-02-03 13:02:18 +01:00
|
|
|
script = rScript;
|
2021-03-01 11:38:28 +01:00
|
|
|
dataset = pp.mergeDatasets (map (e: ds.std.timetable e.result) expList);
|
2021-02-03 13:02:18 +01:00
|
|
|
};
|
2021-03-01 12:19:10 +01:00
|
|
|
|
|
|
|
customPlot = rScript: dataset: rPlot {
|
|
|
|
script = rScript;
|
|
|
|
dataset = dataset;
|
|
|
|
};
|
2020-12-07 13:33:42 +01:00
|
|
|
in
|
|
|
|
{
|
2021-02-03 12:39:44 +01:00
|
|
|
nbody = with exp.nbody; {
|
2021-03-01 11:38:28 +01:00
|
|
|
baseline = stdPlot ./nbody/baseline.R [ baseline ];
|
|
|
|
small = stdPlot ./nbody/baseline.R [ small ];
|
|
|
|
jemalloc = stdPlot ./nbody/jemalloc.R [ baseline jemalloc ];
|
|
|
|
ctf = stdPlot ./nbody/baseline.R [ ctf ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
hpcg = with exp.hpcg; {
|
2021-03-01 11:38:28 +01:00
|
|
|
oss = stdPlot ./hpcg/oss.R [ oss ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
saiph = with exp.saiph; {
|
2021-03-01 11:38:28 +01:00
|
|
|
granularity = stdPlot ./saiph/granularity.R [ granularity ];
|
2020-12-07 13:33:42 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 13:02:18 +01:00
|
|
|
heat = with exp.heat; {
|
2021-03-01 11:38:28 +01:00
|
|
|
test = stdPlot ./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; {
|
2021-03-01 11:38:28 +01:00
|
|
|
ss = stdPlot ./creams/ss.R [ ss.hybrid ss.pure ];
|
2020-12-18 12:26:40 +01:00
|
|
|
};
|
2021-02-23 17:52:48 +01:00
|
|
|
|
|
|
|
osu = with exp.osu; {
|
2021-03-01 12:19:10 +01:00
|
|
|
latency = customPlot ./osu/latency.R (ds.osu.latency latency.result);
|
|
|
|
latencyShm = customPlot ./osu/latency.R (ds.osu.latency latencyShm.result);
|
|
|
|
latencyMt = customPlot ./osu/latency.R (ds.osu.latency latencyMt.result);
|
|
|
|
latencyMtShm = customPlot ./osu/latency.R (ds.osu.latency latencyMtShm.result);
|
|
|
|
|
|
|
|
bw = customPlot ./osu/bw.R (ds.osu.bw bw.result);
|
|
|
|
bwShm = customPlot ./osu/bw.R (ds.osu.bw bwShm.result);
|
2021-02-23 17:52:48 +01:00
|
|
|
};
|
2020-12-07 13:33:42 +01:00
|
|
|
}
|