Skip to content

Commit 8e496dd

Browse files
committed
add bypass to initial placement
1 parent daa7359 commit 8e496dd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scgallery/designs/dynamic_node/dynamic_node.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ def setup():
1919
return chip
2020

2121

22+
def setup_physical(chip):
23+
if chip.get('option', 'pdk') == 'skywater130':
24+
chip.set("tool", "openroad", "task", "global_placement", "var",
25+
"gpl_enable_skip_initial_place", True)
26+
27+
2228
if __name__ == '__main__':
2329
chip = setup()
2430
Gallery.design_commandline(chip, target=asap7_demo, module_path=__file__)

0 commit comments

Comments
 (0)