Skip to content

Commit bca9002

Browse files
authored
Merge pull request #3802 from The-OpenROAD-Project-staging/pdk-0.3-util-56
Updated hercules_is_int utilization for PDK 0.3
2 parents 8c64471 + 7f4dccb commit bca9002

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

flow/designs/rapidus2hp/hercules_is_int/config.mk

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,11 @@ export SYNTH_HIERARCHICAL ?= 0
3434
# | non-0.3 | slang | 8T | 52 |
3535
# | all | verific | 6T | 30 |
3636
# | non-0.3 | verific | 8T | 54 |
37-
# | 0.3 | slang | 8T | 54 |
38-
# | 0.3 | verific | 8T | 55 |
37+
# | 0.3 | any | 8T | 56 |
3938

4039
export CORE_UTILIZATION = $(strip \
4140
$(if $(filter 0.3,$(RAPIDUS_PDK_VERSION)), \
42-
$(if $(filter slang,$(SYNTH_HDL_FRONTEND)), \
43-
54, \
44-
55 \
45-
), \
41+
56, \
4642
$(if $(filter slang,$(SYNTH_HDL_FRONTEND)), \
4743
$(if $(filter ra02h138_DST_45CPP SC6T,$(PLACE_SITE)), \
4844
30, \

flow/designs/rapidus2hp/hercules_is_int/test/test_params.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ def get_exp_util(self, place_site, front_end, pdk_version):
2525
"""Returns the expected value"""
2626

2727
if pdk_version == "0.3":
28-
if front_end == "verific":
29-
return 55
30-
return 54
28+
return 56
3129
if front_end == "verific":
3230
if place_site in ["SC6T", "ra02h138_DST_45CPP"]:
3331
return 30

0 commit comments

Comments
 (0)