Skip to content

Commit

Permalink
change mux instance as suggested by keyi
Browse files Browse the repository at this point in the history
  • Loading branch information
pohantw committed Nov 22, 2022
1 parent 61ec858 commit 597cbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/power_domain/pd_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def add_power_domain(interconnect: Interconnect):
for _, cb in tile.cbs.items():
old_mux = cb.mux
new_mux = AOIMuxWrapper(old_mux.height, cb.node.width,
AOIMuxType.Const, cb.instance_name)
AOIMuxType.Regular, cb.instance_name)
new_mux = flatten_mux(new_mux)
# replace it!
replace(cb, old_mux, new_mux)
Expand Down

0 comments on commit 597cbdf

Please sign in to comment.