Skip to content

Commit

Permalink
convert back to legacy names for plugging into backend
Browse files Browse the repository at this point in the history
  • Loading branch information
bdngo committed Jan 4, 2024
1 parent 6ca70a5 commit 4b2a1ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hammer/flowgraph/flowgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ def __run_single(node: Node) -> int:
'power_rundir': '',
'formal_rundir': '',
'timing_rundir': '',
'from_step': node.step_controls["from_step"],
'after_step': node.step_controls["after_step"],
'to_step': node.step_controls["to_step"],
'until_step': node.step_controls["until_step"],
"from_step": node.step_controls["start_before_step"],
"after_step": node.step_controls["start_after_step"],
"to_step": node.step_controls["stop_before_step"],
"until_step": node.step_controls["stop_after_step"],
'only_step': node.step_controls["only_step"],
'output': os.path.join(node.push_dir, node.required_outputs[0]), # TODO: fix this
'verilog': None,
Expand Down

0 comments on commit 4b2a1ae

Please sign in to comment.