Skip to content

Commit 1bbb7e6

Browse files
authored
Merge pull request #226 from siliconcompiler/fix-ord
add bypass to initial placement
2 parents 8aa422a + 8e496dd commit 1bbb7e6

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)