Skip to content

Commit 5475322

Browse files
Write_db is not required for non physical aware flow (ucb-bar#864)
* Fixing qrc tech file read bug in * write_db is not required for non phys flow
1 parent f22e154 commit 5475322

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hammer/synthesis/genus/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,8 @@ def write_outputs(self) -> bool:
472472
verbose_append("write_design -innovus {hier_flag} -gzip_files {top}".format(
473473
hier_flag="-hierarchical" if is_hier else "", top=top))
474474

475-
verbose_append("write_db -common")
475+
if self.get_setting("synthesis.genus.phys_flow_effort").lower() != "none":
476+
verbose_append("write_db -common")
476477
self.ran_write_outputs = True
477478

478479
return True

0 commit comments

Comments
 (0)