hpcg: avoid mismatching names for gen units

This commit is contained in:
Rodrigo Arias 2021-04-16 16:15:16 +02:00
parent d490ef2694
commit a71ae9c2c6

View File

@ -15,8 +15,10 @@ rec {
# Generate the complete configuration for each unit
genConf = c: targetMachine.config // rec {
expName = "${c.expName}.gen";
unitName = "${c.unitName}.gen";
expName = "hpcg-gen";
unitName = expName
+ "-nodes${toString nodes}"
+ "-spt.z${toString sizePerTask.z}";
inherit (targetMachine.config) hw;