We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8759053 commit aa3644aCopy full SHA for aa3644a
vtr_flow/scripts/python_libs/vtr/task.py
@@ -459,6 +459,9 @@ def create_job(
459
param_string = "common" + (("_" + param.replace(" ", "_")) if param else "")
460
if not param:
461
param = "common"
462
+ # determine spacing for nice output
463
+ num_spaces_before = int((longest_name - len(config.task_name))) + 8
464
+ num_spaces_after = int((longest_arch_circuit - len(work_dir + "/{}".format(param_string))))
465
466
expected_min_w = ret_expected_min_w(circuit, arch, golden_results, param)
467
expected_min_w = (
0 commit comments