Skip to content

Commit 8759053

Browse files
author
MohamedElgammal
committed
Revert "fix formatting"
This reverts commit ad22ecb.
1 parent b94bef3 commit 8759053

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

vtr_flow/scripts/python_libs/vtr/task.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def find_longest_task_description(configs):
293293

294294

295295
# pylint: disable=too-many-branches
296-
def create_jobs(args, configs, after_run=False):
296+
def create_jobs(args, configs, longest_name=0, longest_arch_circuit=0, after_run=False):
297297
"""
298298
Create the jobs to be executed depending on the configs.
299299
"""
@@ -409,6 +409,8 @@ def create_jobs(args, configs, after_run=False):
409409
qor_parse_command,
410410
work_dir,
411411
run_dir,
412+
longest_name,
413+
longest_arch_circuit,
412414
golden_results,
413415
)
414416
)
@@ -426,6 +428,8 @@ def create_jobs(args, configs, after_run=False):
426428
qor_parse_command,
427429
work_dir,
428430
run_dir,
431+
longest_name,
432+
longest_arch_circuit,
429433
golden_results,
430434
)
431435
)
@@ -445,6 +449,8 @@ def create_job(
445449
qor_parse_command,
446450
work_dir,
447451
run_dir,
452+
longest_name,
453+
longest_arch_circuit,
448454
golden_results,
449455
):
450456
"""

vtr_flow/scripts/run_vtr_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def run_tasks(
274274
start = datetime.now()
275275
num_failed = 0
276276

277-
jobs = create_jobs(args, configs)
277+
jobs = create_jobs(args, configs, longest_name, longest_arch_circuit)
278278

279279
run_dirs = {}
280280
for config in configs:

0 commit comments

Comments
 (0)