Remove garlic.ds attribute

Datasets are now handled directly when creating the figures, via the
timetable attribute.
This commit is contained in:
Rodrigo Arias Mallo 2021-02-03 15:31:19 +01:00
parent b65a442cb0
commit d4dfbb7501
3 changed files with 0 additions and 45 deletions

View File

@ -1,41 +0,0 @@
{
super
, self
, bsc
, garlic
, callPackage
}:
with garlic.pp;
let
exp = garlic.exp;
in
{
nbody = with exp.nbody; {
baseline = merge [ baseline ];
small = merge [ small ];
jemalloc = merge [ baseline jemalloc ];
#freeCpu = merge [ baseline freeCpu ];
ctf = merge [ ctf ];
};
hpcg = with exp.hpcg; {
oss = merge [ oss ];
};
saiph = with exp.saiph; {
numcomm = merge [ numcomm ];
granularity = merge [ granularity ];
};
heat = with exp.heat; {
test = merge [ test ];
};
creams = with exp.creams.ss; {
ss.hybrid = merge [ hybrid ];
ss.pure = merge [ pure ];
ss.all = merge [ hybrid pure ];
};
}

View File

@ -8,7 +8,6 @@
let
rPlot = garlic.pp.rPlot;
ds = garlic.ds;
exp = garlic.exp;
pp = garlic.pp;

View File

@ -130,9 +130,6 @@
# Experiments
exp = callPackage ./exp/index.nix { };
# Datasets used in the figures
ds = callPackage ./ds/index.nix { };
# Figures generated from the experiments
fig = callPackage ./fig/index.nix { };