We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9bed2a + 6a2105d commit 6ae82a1Copy full SHA for 6ae82a1
flow/scripts/load.tcl
@@ -100,7 +100,10 @@ proc write_eqy_script { } {
100
puts $outfile "prep -top $top_cell -flatten\nmemory_map\n\n"
101
102
# Recommendation from eqy team on how to speed up a design
103
- puts $outfile "\[match *]\ngate-nomatch _*_.*\n\n"
+ 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"
107
108
# Equivalence check recipe 1
109
puts $outfile "\[strategy basic]\nuse sat\ndepth 10\n\n"
0 commit comments