Skip to content

Commit 8bc19dc

Browse files
committed
Disable SizeDown by default.
Signed-off-by: Matthew Guthaus <[email protected]>
1 parent 6a22213 commit 8bc19dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rsz/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ repair_timing
247247
| `-setup_margin` | Add additional setup slack margin. |
248248
| `-hold_margin` | Add additional hold slack margin. |
249249
| `-allow_setup_violations` | While repairing hold violations, buffers are not inserted that will cause setup violations unless `-allow_setup_violations` is specified. |
250-
| `-sequence` | Specify a particular order of setup timing optimizations. The default is "unbuffer,vt_swap,sizeup,sizedown,swap,buffer,clone,split". Obeys skip flags also. |
250+
| `-sequence` | Specify a particular order of setup timing optimizations. The default is "unbuffer,vt_swap,sizeup,swap,buffer,clone,split". Obeys skip flags also. |
251251
| `-skip_pin_swap` | Flag to skip pin swap. The default is to perform pin swap transform during setup fixing. |
252252
| `-skip_gate_cloning` | Flag to skip gate cloning. The default is to perform gate cloning transform during setup fixing. |
253253
| `-skip_size_down` | Flag to skip gate down sizing. The default is to perform non-critical fanout gate down sizing transform during setup fixing. |

src/rsz/src/RepairSetup.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ bool RepairSetup::repairSetup(const float setup_slack_margin,
173173
move_sequence.push_back(resizer_->size_up_move_.get());
174174
// Disabled by default for now
175175
if (!skip_size_down) {
176-
move_sequence.push_back(resizer_->size_down_move_.get());
176+
// move_sequence.push_back(resizer_->size_down_move_.get());
177177
}
178178
if (!skip_pin_swap) {
179179
move_sequence.push_back(resizer_->swap_pins_move_.get());

0 commit comments

Comments
 (0)