Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add varaible SKIP_LAST_GASP to control repair_setup #2481

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
1 change: 1 addition & 0 deletions flow/scripts/util.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ proc repair_timing_helper { {hold_margin 1} } {
append_env_var additional_args SKIP_PIN_SWAP -skip_pin_swap 0
append_env_var additional_args SKIP_GATE_CLONING -skip_gate_cloning 0
append_env_var additional_args SKIP_BUFFER_REMOVAL -skip_buffer_removal 0
append_env_var additional_args SKIP_LAST_GASP -skip_last_gasp 0
puts "repair_timing [join $additional_args " "]"
repair_timing {*}$additional_args
}
Expand Down
3 changes: 3 additions & 0 deletions flow/scripts/variables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,9 @@ SETUP_SLACK_MARGIN:
SKIP_GATE_CLONING:
description: >
Do not use gate cloning transform to fix timing violations (default: use gate cloning).
SKIP_LAST_GASP:
description: >
Do not use last gasp optimization to fix timing violations (default: use gate last gasp).
SKIP_PIN_SWAP:
description: >
Do not use pin swapping as a transform to fix timing violations (default: use pin swapping).
Expand Down
Loading