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.
1 parent 506e666 commit 4dea5a5Copy full SHA for 4dea5a5
flow/scripts/load.tcl
@@ -103,7 +103,10 @@ proc write_eqy_script { } {
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"
+ puts $outfile "gate-nomatch net*"
107
+
108
+ # Necessary to avoid false positive after Yosys 0.49
109
+ puts $outfile "gate-nomatch clone*\n\n"
110
111
# Equivalence check recipe 1
112
puts $outfile "\[strategy basic]\nuse sat\ndepth 10\n\n"
0 commit comments