Skip to content

Commit 6a2105d

Browse files
committed
eqy: Work around non-uniqueness of resizer nets
Signed-off-by: Martin Povišer <[email protected]>
1 parent a9bed2a commit 6a2105d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

flow/scripts/load.tcl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ proc write_eqy_script { } {
100100
puts $outfile "prep -top $top_cell -flatten\nmemory_map\n\n"
101101

102102
# Recommendation from eqy team on how to speed up a design
103-
puts $outfile "\[match *]\ngate-nomatch _*_.*\n\n"
103+
puts $outfile "\[match *]\ngate-nomatch _*_.*"
104+
105+
# See issue OpenROAD#6545 "Equivalence check failure due to non-unique resizer nets"
106+
puts $outfile "gate-nomatch net*\n\n"
104107

105108
# Equivalence check recipe 1
106109
puts $outfile "\[strategy basic]\nuse sat\ndepth 10\n\n"

0 commit comments

Comments
 (0)