Skip to content

Commit

Permalink
Write_db is not required for non physical aware flow (#864)
Browse files Browse the repository at this point in the history
* Fixing qrc tech file read bug in

* write_db is not required for non phys flow
  • Loading branch information
vikramjain236 authored Jun 11, 2024
1 parent f22e154 commit 5475322
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hammer/synthesis/genus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,8 @@ def write_outputs(self) -> bool:
verbose_append("write_design -innovus {hier_flag} -gzip_files {top}".format(
hier_flag="-hierarchical" if is_hier else "", top=top))

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

return True
Expand Down

0 comments on commit 5475322

Please sign in to comment.