File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,12 @@ ifeq ($(SYNTH_HDL_FRONTEND),verific)
102102else
103103 # Reduce the amount of resizing done between GPL and DPL
104104 export EARLY_SIZING_CAP_RATIO = 6
105- export CORE_UTILIZATION = 55
105+ ifeq ($(TRACK_OPTION),6T)
106+ # Decrease the utilization so that the tall macros fit
107+ export CORE_UTILIZATION = 50
108+ else
109+ export CORE_UTILIZATION = 55
110+ endif
106111endif
107112
108113export CORE_MARGIN = 2
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ export SDC_FILE = $(DESIGN_HOME)/$(PLATFORM)/$(DESIGN_NAME)/prects
2222export SYNTH_HDL_FRONTEND = slang
2323export SYNTH_HIERARCHICAL ?= 0
2424
25- export CORE_UTILIZATION = 35
25+ ifeq ($(TRACK_OPTION ) , 6T)
26+ export CORE_UTILIZATION = 30
27+ else
28+ export CORE_UTILIZATION = 35
29+ endif
2630
2731export CORE_MARGIN = 2
2832export MACRO_PLACE_HALO = 2 2
You can’t perform that action at this time.
0 commit comments