Skip to content

Commit 97071ff

Browse files
authored
Merge pull request #3837 from luarss/topic/at-custom-sdc-fr
Autotuner: enable custom sdc/fr files for sweep mode
2 parents d6bd222 + ef67553 commit 97071ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/AutoTuner/src/autotuner/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ def parse_config(
271271
print(f"[ERROR TUN-0017] Variable {key} is not tunable.")
272272
sys.exit(1)
273273
options += f" {key}={value}"
274-
if sdc:
274+
if sdc or sdc_original:
275275
write_sdc(sdc, path, sdc_original, constraints_sdc)
276276
options += f" SDC_FILE={path}/{constraints_sdc}"
277-
if fast_route:
277+
if fast_route or fr_original:
278278
write_fast_route(fast_route, path, platform, fr_original, fastroute_tcl)
279279
options += f" FASTROUTE_TCL={path}/{fastroute_tcl}"
280280
return options

0 commit comments

Comments
 (0)