hpcg: avoid mismatching names for gen units
This commit is contained in:
parent
d490ef2694
commit
a71ae9c2c6
@ -15,8 +15,10 @@ rec {
|
|||||||
|
|
||||||
# Generate the complete configuration for each unit
|
# Generate the complete configuration for each unit
|
||||||
genConf = c: targetMachine.config // rec {
|
genConf = c: targetMachine.config // rec {
|
||||||
expName = "${c.expName}.gen";
|
expName = "hpcg-gen";
|
||||||
unitName = "${c.unitName}.gen";
|
unitName = expName
|
||||||
|
+ "-nodes${toString nodes}"
|
||||||
|
+ "-spt.z${toString sizePerTask.z}";
|
||||||
|
|
||||||
inherit (targetMachine.config) hw;
|
inherit (targetMachine.config) hw;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user