Skip to content

Commit

Permalink
Fixing qrc tech file read bug in (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikramjain236 authored Jun 10, 2024
1 parent 5277152 commit f22e154
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hammer/synthesis/genus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def init_environment(self) -> bool:
hammer_tech.filters.qrc_tech_filter
], hammer_tech.HammerTechnologyUtils.to_plain_item)
verbose_append("set_db qrc_tech_file {{ {files} }}".format(
files=" ".join(qrc_files)
files=qrc_files[0]
))

# Quit when ispatial is used with sky130
Expand Down
2 changes: 1 addition & 1 deletion hammer/synthesis/genus/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ synthesis.genus:
# High effort: Provides the best QoR at the cost of runtime. Requires Genus_Physical_Opt license.
# Medium effort: Offers the best trade-off between the runtime and QoR and turns legalization off by default.
# None: Will result in the best runtime. Works with all base Genus products.
phys_flow_effort: "medium"
phys_flow_effort: "none"

# Generate the TCL file but do not run it yet.
generate_only: false

0 comments on commit f22e154

Please sign in to comment.