From 502e1a6c609c1b475a580804b216d66dbc939348 Mon Sep 17 00:00:00 2001 From: Jack Luar Date: Tue, 24 Dec 2024 04:35:36 +0000 Subject: [PATCH] fix space Signed-off-by: Jack Luar --- tools/AutoTuner/src/autotuner/distributed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/AutoTuner/src/autotuner/distributed.py b/tools/AutoTuner/src/autotuner/distributed.py index 772cb2247d..631dc8a11b 100644 --- a/tools/AutoTuner/src/autotuner/distributed.py +++ b/tools/AutoTuner/src/autotuner/distributed.py @@ -410,7 +410,7 @@ def parse_config(config, path=os.getcwd()): # Sanity check: ignore all flow variables that are not tunable if key not in flow_variables: print(f"[ERROR TUN-0017] Variable {key} is not tunable.") - sys.exit(1) + sys.exit(1) options += f" {key}={value}" if bool(sdc): write_sdc(sdc, path)