use named pimsim gui argument in comparisons

This commit is contained in:
NiccoloN
2026-07-27 17:23:35 +02:00
parent a73afd62a4
commit b53586003a
+1 -4
View File
@@ -817,7 +817,6 @@ def run_pimsim_nn(
label: str, label: str,
inst_path: Path, inst_path: Path,
config_path: Path, config_path: Path,
single_file: bool,
steps: list[StepRecord], steps: list[StepRecord],
args: argparse.Namespace, args: argparse.Namespace,
) -> dict[str, Any]: ) -> dict[str, Any]:
@@ -825,7 +824,7 @@ def run_pimsim_nn(
str(args.pimsim_nn_build_dir / "ChipTest"), str(args.pimsim_nn_build_dir / "ChipTest"),
str(inst_path), str(inst_path),
str(config_path), str(config_path),
"true" if single_file else "false", "--gui=false",
] ]
output = run_logged( output = run_logged(
label, label,
@@ -1478,7 +1477,6 @@ def main():
"pimsim-nn Raptor", "pimsim-nn Raptor",
raptor_pim_dir, raptor_pim_dir,
pimsim_config, pimsim_config,
False,
steps, steps,
args, args,
) )
@@ -1502,7 +1500,6 @@ def main():
"pimsim-nn PIMCOMP", "pimsim-nn PIMCOMP",
pimcomp_pimsim_dir, pimcomp_pimsim_dir,
pimsim_config, pimsim_config,
False,
steps, steps,
args, args,
) )