Skip to content
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
17 changes: 11 additions & 6 deletions flow/designs/rapidus2hp/hercules_is_int/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export SYNTH_HDL_FRONTEND ?= slang
export SYNTH_HIERARCHICAL ?= 0

# Use $(if) to defer conditional eval until all makefiles are read

export CORE_UTILIZATION = $(strip \
$(if $(filter 0.3,$(RAPIDUS_PDK_VERSION)), \
$(if $(filter ra02h138_DST_45CPP,$(PLACE_SITE)), \
Expand All @@ -46,14 +45,20 @@ export CORE_UTILIZATION = $(strip \
), \
56 \
), \
$(if $(filter slang,$(SYNTH_HDL_FRONTEND)), \
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
$(if $(filter 0.15,$(RAPIDUS_PDK_VERSION)), \
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
30, \
52 \
), \
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
30, \
54 \
$(if $(filter slang,$(SYNTH_HDL_FRONTEND)), \
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
30, \
52 \
), \
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
30, \
54 \
) \
) \
) \
))
Expand Down
4 changes: 4 additions & 0 deletions flow/designs/rapidus2hp/hercules_is_int/test/test_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ def get_exp_util(self, place_site, front_end, pdk_version, layer_stack):
if layer_stack == "14LM":
return 50
return 56
if pdk_version in "0.15":
if place_site == "ra02h138_DST_45CPP":
return 30
return 52
if front_end == "verific":
if place_site in ["SC6T", "ra02h138_DST_45CPP"]:
return 30
Expand Down