Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flow/designs/ihp-sg13g2/aes/rules-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"compare": "<="
},
"detailedroute__antenna_diodes_count": {
"value": 5,
"value": 12,
"compare": "<="
},
"finish__timing__setup__ws": {
Expand Down
2 changes: 1 addition & 1 deletion flow/designs/ihp-sg13g2/jpeg/rules-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"compare": "<="
},
"globalroute__antenna_diodes_count": {
"value": 4,
"value": 12,
"compare": "<="
},
"detailedroute__route__wirelength": {
Expand Down
2 changes: 2 additions & 0 deletions flow/designs/nangate45/bp_fe_top/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ export PLACE_DENSITY_MAX_POST_HOLD = 0.13
export TNS_END_PERCENT = 100

export FASTROUTE_TCL = $(DESIGN_HOME)/$(PLATFORM)/$(DESIGN_NAME)/fastroute.tcl

export GPL_KEEP_OVERFLOW = 0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is to work around placer divergence. I've opened #3282

2 changes: 1 addition & 1 deletion flow/designs/nangate45/bp_fe_top/rules-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"compare": "<="
},
"finish__timing__setup__ws": {
"value": -0.12,
"value": -0.21,
"compare": ">="
},
"finish__design__instance__area": {
Expand Down
4 changes: 2 additions & 2 deletions flow/designs/sky130hd/gcd/rules-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"compare": "<="
},
"detailedroute__route__wirelength": {
"value": 9752,
"value": 11675,
"compare": "<="
},
"detailedroute__route__drc_errors": {
Expand All @@ -56,7 +56,7 @@
"compare": "<="
},
"finish__timing__drv__setup_violation_count": {
"value": 81,
"value": 86,
"compare": "<="
},
"finish__timing__drv__hold_violation_count": {
Expand Down
2 changes: 1 addition & 1 deletion flow/designs/sky130hd/riscv32i/rules-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"compare": "<="
},
"globalroute__antenna_diodes_count": {
"value": 10,
"value": 20,
"compare": "<="
},
"detailedroute__route__wirelength": {
Expand Down
10 changes: 8 additions & 2 deletions flow/scripts/load.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,14 @@ proc write_eqy_script { } {
# See issue OpenROAD#6545 "Equivalence check failure due to non-unique resizer nets"
puts $outfile "gate-nomatch net*"

# Necessary to avoid false positive after Yosys 0.49
puts $outfile "gate-nomatch clone*\n\n"
# Forbid matching on buffer instances or cloned instances to make it less
# likely EQY will fail to prove equivalence because of its assuming structural
# similarity between gold and gate netlists. This doesn't remove coverage.
puts $outfile "gate-nomatch clone*"
puts $outfile "gate-nomatch place*"
puts $outfile "gate-nomatch rebuffer*"
puts $outfile "gate-nomatch wire*"
puts $outfile "gate-nomatch place*\n\n"

# Equivalence check recipe 1
puts $outfile "\[strategy basic]\nuse sat\ndepth 10\n\n"
Expand Down
2 changes: 1 addition & 1 deletion tools/OpenROAD
Submodule OpenROAD updated 693 files