Skip to content

Commit f54b1aa

Browse files
authored
Merge pull request #2372 from Pinata-Consulting/makefile-less-iffy-fill-code
makefile: less iffy, less surprising fillcell code
2 parents 5cae58d + fa77ff0 commit f54b1aa

File tree

17 files changed

+26
-28
lines changed

17 files changed

+26
-28
lines changed

flow/Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -900,13 +900,7 @@ elapsed:
900900
elapsed-all:
901901
@$(UTILS_DIR)/genElapsedTime.py -d $(shell find $(WORK_HOME)/logs/$(PLATFORM)/*/*/ -type d)
902902

903-
# ==============================================================================
904-
905-
ifeq ($(USE_FILL),1)
906903
$(eval $(call do-step,6_1_fill,$(RESULTS_DIR)/5_route.odb $(RESULTS_DIR)/5_route.sdc $(FILL_CONFIG),density_fill))
907-
else
908-
$(eval $(call do-copy,6_1_fill,5_route.odb))
909-
endif
910904

911905
$(eval $(call do-copy,6_1_fill,5_route.sdc,,.sdc))
912906

flow/designs/gf12/aes/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export CORE_MARGIN = 2
1212

1313
export PLACE_DENSITY = 0.80
1414

15-
ifneq ($(USE_FILL),)
15+
ifeq ($(USE_FILL),1)
1616
export DESIGN_TYPE = CELL
1717
else
1818
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/ariane/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export MACRO_PLACE_CHANNEL = 14 14
3030

3131
export MACRO_WRAPPERS = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)/wrappers.tcl
3232

33-
ifneq ($(USE_FILL),)
33+
ifeq ($(USE_FILL),1)
3434
export DESIGN_TYPE = CELL
3535
else
3636
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/ariane133/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export MACRO_PLACE_CHANNEL = 14 14
2727

2828
export PLACE_DENSITY_LB_ADDON = 0.05
2929

30-
ifneq ($(USE_FILL),)
30+
ifeq ($(USE_FILL),1)
3131
export DESIGN_TYPE = CELL
3232
else
3333
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/bp_single/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export MACRO_BLOCKAGE_HALO = 25
6363
export PDN_TCL = $(PLATFORM_DIR)/cfg/pdn_grid_strategy_13m_9T.top.tcl
6464
export FASTROUTE_TCL = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)/fastroute.tcl
6565

66-
ifneq ($(USE_FILL),)
66+
ifeq ($(USE_FILL),1)
6767
export DESIGN_TYPE = CHIP
6868
else
6969
export DESIGN_TYPE = CHIP_NODEN

flow/designs/gf12/ca53/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export MACRO_WRAPPERS = $(dir $(DESIGN_CONFIG))/wrappers.tcl
5959
#export MAX_ROUTING_LAYER = H2
6060
export FASTROUTE_TCL = $(dir $(DESIGN_CONFIG))/fastroute.tcl
6161
#
62-
ifneq ($(USE_FILL),)
62+
ifeq ($(USE_FILL),1)
6363
export DESIGN_TYPE = CELL
6464
else
6565
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/coyote/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export DIE_AREA = 0 0 752 752
3131
export CORE_AREA = 2 2 750 750
3232
export PLACE_PINS_ARGS = -exclude left:* -exclude right:* -exclude top:* -exclude bottom:0-20 -exclude bottom:450-750
3333

34-
ifneq ($(USE_FILL),)
34+
ifeq ($(USE_FILL),1)
3535
export DESIGN_TYPE = CELL
3636
else
3737
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/gcd/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export CORE_AREA = 9.996 10.08 89.964 90.048
1111

1212
export GLOBAL_PLACEMENT_ARGS = -skip_initial_place
1313

14-
ifneq ($(USE_FILL),)
14+
ifeq ($(USE_FILL),1)
1515
export DESIGN_TYPE = CELL
1616
else
1717
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/ibex/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export CORE_MARGIN = 2
5151

5252
export PLACE_DENSITY = 0.70
5353

54-
ifneq ($(USE_FILL),)
54+
ifeq ($(USE_FILL),1)
5555
export DESIGN_TYPE = CELL
5656
else
5757
export DESIGN_TYPE = CELL_NODEN

flow/designs/gf12/jpeg/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export CORE_MARGIN = 2
1414

1515
export PLACE_DENSITY = 0.75
1616

17-
ifneq ($(USE_FILL),)
17+
ifeq ($(USE_FILL),1)
1818
export DESIGN_TYPE = CELL
1919
else
2020
export DESIGN_TYPE = CELL_NODEN

0 commit comments

Comments
 (0)