nbody: Remove test and use baseline

This commit is contained in:
Rodrigo Arias 2020-11-02 10:36:59 +01:00
parent 5eea48c5b0
commit 376ab9b32a

View File

@ -303,7 +303,6 @@ let
# Experiments # Experiments
exp = { exp = {
nbody = rec { nbody = rec {
test = callPackage ./garlic/exp/nbody/test.nix { };
tampi = callPackage ./garlic/exp/nbody/tampi.nix { }; tampi = callPackage ./garlic/exp/nbody/tampi.nix { };
# Experiment variants # Experiment variants
@ -336,7 +335,6 @@ let
# Datasets used in the figures # Datasets used in the figures
ds = with self.bsc.garlic; with pp; { ds = with self.bsc.garlic; with pp; {
nbody = with exp.nbody; { nbody = with exp.nbody; {
test = merge [ test ];
baseline = merge [ baseline ]; baseline = merge [ baseline ];
jemalloc = merge [ baseline jemalloc ]; jemalloc = merge [ baseline jemalloc ];
freeCpu = merge [ baseline freeCpu ]; freeCpu = merge [ baseline freeCpu ];
@ -347,9 +345,9 @@ let
fig = with self.bsc.garlic; { fig = with self.bsc.garlic; {
nbody = { nbody = {
test = pp.rPlot { baseline = pp.rPlot {
script = ./garlic/fig/nbody/test.R; script = ./garlic/fig/nbody/baseline.R;
dataset = ds.nbody.test; dataset = ds.nbody.baseline;
}; };
jemalloc = pp.rPlot { jemalloc = pp.rPlot {