From 637c57b3882309b666c23351a8b23808fe21428d Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 3 Mar 2021 18:29:21 +0100 Subject: [PATCH] nbody: improve unit name --- garlic/exp/nbody/scaling.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/garlic/exp/nbody/scaling.nix b/garlic/exp/nbody/scaling.nix index 20051a8..ad0e4f7 100644 --- a/garlic/exp/nbody/scaling.nix +++ b/garlic/exp/nbody/scaling.nix @@ -43,8 +43,10 @@ let # Generate the complete configuration for each unit genConf = var: fix (self: var // targetMachine.config // { - expName = "nbody-nblocks"; - unitName = "${self.expName}${toString self.nblocks}"; + expName = "nbody-scaling"; + unitName = self.expName + + "-nb${toString self.nblocks}"+ + "-nodes${toString self.nodes}"; inherit (machineConfig) hw;