Skip to content

Commit e6c257d

Browse files
committed
keep name consistency between flag/orfs variable and fix .yaml
Signed-off-by: Arthur Koucher <[email protected]>
1 parent 9dfe138 commit e6c257d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export ENABLE_DPO ?= 1
211211
export DPO_MAX_DISPLACEMENT ?= 5 1
212212

213213
# Settings for Sizing
214-
export HONOR_CELL_FOOTPRINT ?= 0
214+
export MATCH_CELL_FOOTPRINT ?= 0
215215

216216
# Setup working directories
217217
export DESIGN_NICKNAME ?= $(DESIGN_NAME)

flow/scripts/util.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ proc repair_timing_helper { {hold_margin 1} } {
2727
append_env_var additional_args SKIP_GATE_CLONING -skip_gate_cloning 0
2828
append_env_var additional_args SKIP_BUFFER_REMOVAL -skip_buffer_removal 0
2929
append_env_var additional_args SKIP_LAST_GASP -skip_last_gasp 0
30-
append_env_var additional_args HONOR_CELL_FOOTPRINT -match_cell_footprint 0
30+
append_env_var additional_args MATCH_CELL_FOOTPRINT -match_cell_footprint 0
3131
puts "repair_timing [join $additional_args " "]"
3232
repair_timing {*}$additional_args
3333
}
@@ -38,7 +38,7 @@ proc repair_design_helper {} {
3838
set additional_args ""
3939
append_env_var additional_args CAP_MARGIN -cap_margin 1
4040
append_env_var additional_args SLEW_MARGIN -slew_margin 1
41-
append_env_var additional_args HONOR_CELL_FOOTPRINT -match_cell_footprint 0
41+
append_env_var additional_args MATCH_CELL_FOOTPRINT -match_cell_footprint 0
4242
puts "repair_design [join $additional_args " "]"
4343

4444
repair_design {*}$additional_args
@@ -55,7 +55,7 @@ proc recover_power {} {
5555
report_power
5656
set additional_args ""
5757
append_env_var additional_args RECOVER_POWER -recover_power 1
58-
append_env_var additional_args HONOR_CELL_FOOTPRINT -match_cell_footprint 0
58+
append_env_var additional_args MATCH_CELL_FOOTPRINT -match_cell_footprint 0
5959
repair_timing {*}$additional_args
6060
report_tns
6161
report_wns

flow/scripts/variables.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,10 +622,11 @@ GLOBAL_ROUTE_ARGS:
622622
stages:
623623
- grt
624624
default: -congestion_iterations 30 -congestion_report_iter_step 5 -verbose
625-
HONOR_CELL_FOOTPRINT:
625+
MATCH_CELL_FOOTPRINT:
626626
description: >
627627
Enforce sizing operations to only swap cells that have the same layout boundary.
628628
stages:
629629
- floorplan
630630
- place
631631
- cts
632+
- route

0 commit comments

Comments
 (0)