nbody: update indexes

This commit is contained in:
Antoni Navarro 2021-03-24 10:16:54 +01:00 committed by Rodrigo Arias Mallo
parent 5815a9af09
commit 48a61dc292
2 changed files with 0 additions and 23 deletions

View File

@ -8,25 +8,7 @@
{
nbody = rec {
baseline = callPackage ./nbody/nblocks.nix { };
granularity = callPackage ./nbody/granularity-mpi.nix { };
scaling = callPackage ./nbody/scaling.nix { };
# Experiment variants
small = baseline.override {
particles = 12 * 4096;
};
# Some experiments with traces
trace = {
# Only one unit repeated 30 times
baseline = small.override {
enableCTF = true;
loops = 30;
steps = 1;
};
};
};
saiph = {

View File

@ -30,11 +30,6 @@ let
in
{
nbody = with exp.nbody; {
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 ];
scaling = stdPlot ./nbody/baseline.R [ scaling ];
granularity = stdPlot ./nbody/granularity.R [ granularity ];
};