Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
2 changed files with 0 additions and 23 deletions
Showing only changes of commit 48a61dc292 - Show all commits

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 ];
};