heat: rename granul -> granularity experiment

This commit is contained in:
Rodrigo Arias 2021-04-06 18:42:49 +02:00
parent 63aa07dad5
commit 312656ce54
4 changed files with 4 additions and 4 deletions

View File

@ -64,9 +64,9 @@
}; };
heat = rec { heat = rec {
granul = callPackage ./heat/granul.nix { }; granularity = callPackage ./heat/granularity.nix { };
cache = granul.override { enablePerf = true; }; cache = granularity.override { enablePerf = true; };
ctf = granul.override { enableCTF = true; }; ctf = granularity.override { enableCTF = true; };
}; };
bigsort = rec { bigsort = rec {

View File

@ -47,7 +47,7 @@ in
}; };
heat = with exp.heat; { heat = with exp.heat; {
granul = stdPlot ./heat/granul.R [ granul ]; granularity = stdPlot ./heat/granularity.R [ granularity ];
cache = customPlot ./heat/cache.R (ds.perf.stat cache.result); cache = customPlot ./heat/cache.R (ds.perf.stat cache.result);
ctf = customPlot ./heat/mode.R (ds.ctf.mode ctf.result); ctf = customPlot ./heat/mode.R (ds.ctf.mode ctf.result);
}; };