Skip to content

Commit f3d7136

Browse files
committed
Merge remote-tracking branch 'origin/master' into secure-opt-hier-test
2 parents 6073b91 + c8bdbc9 commit f3d7136

File tree

90 files changed

+3103
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+3103
-372
lines changed

docs/user/FlowVariables.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ configuration file.
114114
| <a name="CTS_ARGS"></a>CTS_ARGS| Override `clock_tree_synthesis` arguments.| |
115115
| <a name="CTS_BUF_DISTANCE"></a>CTS_BUF_DISTANCE| Distance (in microns) between buffers.| |
116116
| <a name="CTS_BUF_LIST"></a>CTS_BUF_LIST| List of cells used to construct the clock tree. Overrides buffer inference.| |
117-
| <a name="CTS_CLUSTER_DIAMETER"></a>CTS_CLUSTER_DIAMETER| Maximum diameter (in microns) of sink cluster.| 20|
118-
| <a name="CTS_CLUSTER_SIZE"></a>CTS_CLUSTER_SIZE| Maximum number of sinks per cluster.| 50|
117+
| <a name="CTS_CLUSTER_DIAMETER"></a>CTS_CLUSTER_DIAMETER| Maximum diameter (in microns) of sink cluster.| |
118+
| <a name="CTS_CLUSTER_SIZE"></a>CTS_CLUSTER_SIZE| Maximum number of sinks per cluster.| |
119119
| <a name="CTS_LIB_NAME"></a>CTS_LIB_NAME| Name of the Liberty library to use in selecting the clock buffers.| |
120120
| <a name="CTS_SNAPSHOT"></a>CTS_SNAPSHOT| Creates ODB/SDC files prior to clock net and setup/hold repair.| |
121121
| <a name="DESIGN_NAME"></a>DESIGN_NAME| The name of the top-level module of the design.| |
@@ -146,7 +146,7 @@ configuration file.
146146
| <a name="GPL_TIMING_DRIVEN"></a>GPL_TIMING_DRIVEN| Specifies whether the placer should use timing driven placement.| 1|
147147
| <a name="GUI_TIMING"></a>GUI_TIMING| Load timing information when opening GUI. For large designs, this can be quite time consuming. Useful to disable when investigating non-timing aspects like floorplan, placement, routing, etc.| 1|
148148
| <a name="HOLD_SLACK_MARGIN"></a>HOLD_SLACK_MARGIN| Specifies a time margin for the slack when fixing hold violations. This option allows you to overfix or underfix (negative value, terminate retiming before 0 or positive slack). floorplan.tcl uses min of HOLD_SLACK_MARGIN and 0 (default hold slack margin). This avoids overrepair in floorplan for hold by default, but allows skipping hold repair using a negative HOLD_SLACK_MARGIN. Exiting timing repair early is useful in exploration where the .sdc has a fixed clock period at the design's target clock period and where HOLD/SETUP_SLACK_MARGIN is used to avoid overrepair (extremely long running times) when exploring different parameter settings. When an ideal clock is used, that is before CTS, a clock insertion delay of 0 is used in timing paths. This creates a mismatch between macros that have a .lib file from after CTS, when the clock is propagated. To mitigate this, OpenSTA will use subtract the clock insertion delay of macros when calculating timing with ideal clock. Provided that min_clock_tree_path and max_clock_tree_path are in the .lib file, which is the case for macros built with OpenROAD. This is less accurate than if OpenROAD had created a placeholder clock tree for timing estimation purposes prior to CTS. There will inevitably be inaccuracies in the timing calculation prior to CTS. Use a slack margin that is low enough, even negative, to avoid overrepair. Inaccuracies in the timing prior to CTS can also lead to underrepair, but there no obvious and simple way to avoid underrapir in these cases. Overrepair can lead to excessive runtimes in repair or too much buffering being added, which can present itself as congestion of hold cells or buffer cells. Another use of SETUP/HOLD_SLACK_MARGIN is design parameter exploration when trying to find the minimum clock period for a design. The SDC_FILE for a design can be quite complicated and instead of modifying the clock period in the SDC_FILE, which can be non-trivial, the clock period can be fixed at the target frequency and the SETUP/HOLD_SLACK_MARGIN can be swept to find a plausible current minimum clock period.| 0|
149-
| <a name="IO_CONSTRAINTS"></a>IO_CONSTRAINTS| File path to the IO constraints .tcl file.| |
149+
| <a name="IO_CONSTRAINTS"></a>IO_CONSTRAINTS| File path to the IO constraints .tcl file. Also used for manual placement.| |
150150
| <a name="IO_PLACER_H"></a>IO_PLACER_H| A list of metal layers on which the I/O pins are placed horizontally (top and bottom of the die).| |
151151
| <a name="IO_PLACER_V"></a>IO_PLACER_V| A list of metal layers on which the I/O pins are placed vertically (sides of the die).| |
152152
| <a name="IR_DROP_LAYER"></a>IR_DROP_LAYER| Default metal layer to report IR drop.| |
@@ -239,7 +239,7 @@ configuration file.
239239
| <a name="SYNTH_MINIMUM_KEEP_SIZE"></a>SYNTH_MINIMUM_KEEP_SIZE| For hierarchical synthesis, we keep modules of larger area than given by this variable and flatten smaller modules. The area unit used is the size of a basic nand2 gate from the platform's standard cell library. The default value is platform specific.| 0|
240240
| <a name="SYNTH_NETLIST_FILES"></a>SYNTH_NETLIST_FILES| Skips synthesis and uses the supplied netlist files. If the netlist files contains duplicate modules, which can happen when using hierarchical synthesis on indvidual netlist files and combining here, subsequent modules are silently ignored and only the first module is used.| |
241241
| <a name="SYNTH_OPT_HIER"></a>SYNTH_OPT_HIER| Optimize constants across hierarchical boundaries.| |
242-
| <a name="SYNTH_RETIME_MODULES"></a>SYNTH_RETIME_MODULES| List of modules to apply retiming to. These modules must not get dissolved and as such they should either be the top module or be included in SYNTH_KEEP_MODULES. This is an experimental option and may cause adverse effects.| |
242+
| <a name="SYNTH_RETIME_MODULES"></a>SYNTH_RETIME_MODULES| *This is an experimental option and may cause adverse effects.* *No effort has been made to check if the retimed RTL is logically equivalent to the non-retimed RTL.* List of modules to apply automatic retiming to. These modules must not get dissolved and as such they should either be the top module or be included in SYNTH_KEEP_MODULES. The main use case is to quickly identify if performance can be improved by manually retiming the input RTL. Retiming will treat module ports like register endpoints/startpoints. The objective function of retiming isn't informed by SDC, even the clock period is ignored. As such, retiming will optimize for best delay at potentially high register number cost. Automatic retiming can produce suboptimal results as its timing model is crude and it doesn't find the optimal distribution of registers on long pipelines. See OR discussion #8080.| |
243243
| <a name="SYNTH_WRAPPED_OPERATORS"></a>SYNTH_WRAPPED_OPERATORS| Synthesize multiple architectural options for each arithmetic operator in the design. These options are available for switching among in later stages of the flow.| |
244244
| <a name="TAPCELL_TCL"></a>TAPCELL_TCL| Path to Endcap and Welltie cells file.| |
245245
| <a name="TAP_CELL_NAME"></a>TAP_CELL_NAME| Name of the cell to use in tap cell insertion.| |
@@ -307,11 +307,14 @@ configuration file.
307307
- [MACRO_WRAPPERS](#MACRO_WRAPPERS)
308308
- [MAKE_TRACKS](#MAKE_TRACKS)
309309
- [MATCH_CELL_FOOTPRINT](#MATCH_CELL_FOOTPRINT)
310+
- [MAX_ROUTING_LAYER](#MAX_ROUTING_LAYER)
311+
- [MIN_ROUTING_LAYER](#MIN_ROUTING_LAYER)
310312
- [PDN_TCL](#PDN_TCL)
311313
- [PLACE_DENSITY](#PLACE_DENSITY)
312314
- [PLACE_DENSITY_LB_ADDON](#PLACE_DENSITY_LB_ADDON)
313315
- [PLACE_SITE](#PLACE_SITE)
314316
- [REMOVE_ABC_BUFFERS](#REMOVE_ABC_BUFFERS)
317+
- [ROUTING_LAYER_ADJUSTMENT](#ROUTING_LAYER_ADJUSTMENT)
315318
- [RTLMP_AREA_WT](#RTLMP_AREA_WT)
316319
- [RTLMP_ARGS](#RTLMP_ARGS)
317320
- [RTLMP_BOUNDARY_WT](#RTLMP_BOUNDARY_WT)
@@ -355,7 +358,6 @@ configuration file.
355358
- [FLOORPLAN_DEF](#FLOORPLAN_DEF)
356359
- [GPL_ROUTABILITY_DRIVEN](#GPL_ROUTABILITY_DRIVEN)
357360
- [GPL_TIMING_DRIVEN](#GPL_TIMING_DRIVEN)
358-
- [IO_CONSTRAINTS](#IO_CONSTRAINTS)
359361
- [IO_PLACER_H](#IO_PLACER_H)
360362
- [IO_PLACER_V](#IO_PLACER_V)
361363
- [MATCH_CELL_FOOTPRINT](#MATCH_CELL_FOOTPRINT)

flow/Makefile

Lines changed: 27 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ MAKEFLAGS += --no-builtin-rules
132132

133133
#-------------------------------------------------------------------------------
134134
# Default target when invoking without specific target.
135-
.DEFAULT_GOAL := finish
135+
.DEFAULT_GOAL := all
136136

137137
#-------------------------------------------------------------------------------
138138
# Proper way to initiate SHELL for make
@@ -179,15 +179,6 @@ build_macros: $(BLOCK_LEFS) $(BLOCK_TYP_LIBS)
179179
$(foreach block,$(BLOCKS),$(eval $(call GENERATE_ABSTRACT_RULE,$(WORK_HOME)/results/$(PLATFORM)/$(DESIGN_NICKNAME)_$(block)/$(FLOW_VARIANT)/${block}.lef,$(WORK_HOME)/results/$(PLATFORM)/$(DESIGN_NICKNAME)_$(block)/$(FLOW_VARIANT)/${block}_typ.lib,$(shell dirname $(DESIGN_CONFIG))/${block}/config.mk)))
180180
$(foreach block,$(BLOCKS),$(eval $(WORK_HOME)/results/$(PLATFORM)/$(DESIGN_NICKNAME)_$(block)/$(FLOW_VARIANT)/6_final.gds: $(WORK_HOME)/results/$(PLATFORM)/$(DESIGN_NICKNAME)_$(block)/$(FLOW_VARIANT)/${block}.lef))
181181

182-
# Utility to print tool version information
183-
#-------------------------------------------------------------------------------
184-
.PHONY: versions.txt
185-
versions.txt:
186-
mkdir -p $(OBJECTS_DIR)
187-
@echo "yosys $(shell $(YOSYS_EXE) -V 2>&1)" > $(OBJECTS_DIR)/$@
188-
@echo "openroad $(shell $(OPENROAD_EXE) -version 2>&1)" >> $(OBJECTS_DIR)/$@
189-
@echo "klayout $(shell $(KLAYOUT_CMD) -zz -v 2>&1)" >> $(OBJECTS_DIR)/$@
190-
191182
# Pre-process libraries
192183
# ==============================================================================
193184

@@ -309,8 +300,6 @@ clean_synth:
309300
rm -f $(LOG_DIR)/1_*
310301
rm -f $(SYNTH_STATS)
311302
rm -f $(SDC_FILE_CLOCK_PERIOD)
312-
rm -rf _tmp_yosys-abc-*
313-
314303

315304
# ==============================================================================
316305
# _____ _ ___ ___ ____ ____ _ _ _ _
@@ -416,7 +405,7 @@ endef
416405

417406
$(eval $(call do-step,1_3_synth,$(RESULTS_DIR)/1_synth.v $(RESULTS_DIR)/1_synth.sdc,synth_odb))
418407

419-
$(eval $(call do-step,2_1_floorplan,$(RESULTS_DIR)/1_synth.v $(RESULTS_DIR)/1_synth.sdc $(TECH_LEF) $(SC_LEF) $(ADDITIONAL_LEFS) $(FOOTPRINT) $(SIG_MAP_FILE) $(FOOTPRINT_TCL) $(DONT_USE_SC_LIB),floorplan))
408+
$(eval $(call do-step,2_1_floorplan,$(RESULTS_DIR)/1_synth.v $(RESULTS_DIR)/1_synth.sdc $(TECH_LEF) $(SC_LEF) $(ADDITIONAL_LEFS) $(FOOTPRINT) $(SIG_MAP_FILE) $(FOOTPRINT_TCL) $(DONT_USE_SC_LIB) $(IO_CONSTRAINTS),floorplan))
420409

421410
$(eval $(call do-copy,2_floorplan,2_1_floorplan.sdc,,.sdc))
422411

@@ -461,7 +450,7 @@ place: $(RESULTS_DIR)/3_place.odb \
461450
#-------------------------------------------------------------------------------
462451
$(eval $(call do-step,3_1_place_gp_skip_io,$(RESULTS_DIR)/2_floorplan.odb $(RESULTS_DIR)/2_floorplan.sdc $(LIB_FILES),global_place_skip_io))
463452

464-
$(eval $(call do-step,3_2_place_iop,$(RESULTS_DIR)/3_1_place_gp_skip_io.odb $(IO_CONSTRAINTS),io_placement))
453+
$(eval $(call do-step,3_2_place_iop,$(RESULTS_DIR)/3_1_place_gp_skip_io.odb,io_placement))
465454

466455
# STEP 3: Global placement with placed IOs, timing-driven, and routability-driven.
467456
#-------------------------------------------------------------------------------
@@ -571,25 +560,21 @@ do-grt:
571560

572561
.PHONY: clean_route
573562
clean_route:
574-
rm -rf output*/ results*.out.dmp layer_*.mps
575-
rm -rf *.gdid *.log *.met *.sav *.res.dmp
576563
rm -rf $(RESULTS_DIR)/route.guide $(RESULTS_DIR)/output_guide.mod $(RESULTS_DIR)/updated_clks.sdc
577564
rm -rf $(RESULTS_DIR)/5_*.odb $(RESULTS_DIR)/5_route.sdc $(RESULTS_DIR)/5_*.def $(RESULTS_DIR)/5_*.v
578565
rm -f $(REPORTS_DIR)/5_*
579566
rm -f $(LOG_DIR)/5_*
580567

581568
.PHONY: klayout_tr_rpt
582569
klayout_tr_rpt: $(RESULTS_DIR)/5_route.def $(OBJECTS_DIR)/klayout.lyt
583-
$(call KLAYOUT_FOUND)
584-
$(KLAYOUT_CMD) -rd in_drc="$(REPORTS_DIR)/5_route_drc.rpt" \
570+
$(SCRIPTS_DIR)/klayout.sh -rd in_drc="$(REPORTS_DIR)/5_route_drc.rpt" \
585571
-rd in_def="$<" \
586572
-rd tech_file=$(OBJECTS_DIR)/klayout.lyt \
587573
-rm $(UTILS_DIR)/viewDrc.py
588574

589575
.PHONY: klayout_guides
590576
klayout_guides: $(RESULTS_DIR)/5_route.def $(OBJECTS_DIR)/klayout.lyt
591-
$(call KLAYOUT_FOUND)
592-
$(KLAYOUT_CMD) -rd in_guide="$(RESULTS_DIR)/route.guide" \
577+
$(SCRIPTS_DIR)/klayout.sh -rd in_guide="$(RESULTS_DIR)/route.guide" \
593578
-rd in_def="$<" \
594579
-rd net_name=$(GUIDE_NET) \
595580
-rd tech_file=$(OBJECTS_DIR)/klayout.lyt \
@@ -657,8 +642,7 @@ clean_abstract:
657642
# Merge wrapped macros using Klayout
658643
#-------------------------------------------------------------------------------
659644
$(WRAPPED_GDSOAS): $(OBJECTS_DIR)/klayout_wrap.lyt $(WRAPPED_LEFS)
660-
$(call KLAYOUT_FOUND)
661-
($(TIME_CMD) $(KLAYOUT_CMD) -zz -rd design_name=$(basename $(notdir $@)) \
645+
($(TIME_CMD) $(SCRIPTS_DIR)/klayout.sh -zz -rd design_name=$(basename $(notdir $@)) \
662646
-rd in_def=$(OBJECTS_DIR)/def/$(notdir $(@:$(STREAM_SYSTEM_EXT)=def)) \
663647
-rd in_files="$(ADDITIONAL_GDSOAS)" \
664648
-rd config_file=$(FILL_CONFIG) \
@@ -675,8 +659,7 @@ $(GDS_MERGED_FILE): $(RESULTS_DIR)/6_final.def $(OBJECTS_DIR)/klayout.lyt $(GDSO
675659

676660
.PHONY: do-gds-merged
677661
do-gds-merged:
678-
$(call KLAYOUT_FOUND)
679-
($(TIME_CMD) $(STDBUF_CMD) $(KLAYOUT_CMD) -zz -rd design_name=$(DESIGN_NAME) \
662+
($(TIME_CMD) $(STDBUF_CMD) $(SCRIPTS_DIR)/klayout.sh -zz -rd design_name=$(DESIGN_NAME) \
680663
-rd in_def=$(RESULTS_DIR)/6_final.def \
681664
-rd in_files="$(GDSOAS_FILES) $(WRAPPED_GDSOAS)" \
682665
-rd seal_file="$(SEAL_GDSOAS)" \
@@ -700,8 +683,7 @@ drc: $(REPORTS_DIR)/6_drc.lyrdb
700683

701684
$(REPORTS_DIR)/6_drc.lyrdb: $(GDS_FINAL_FILE) $(KLAYOUT_DRC_FILE)
702685
ifneq ($(KLAYOUT_DRC_FILE),)
703-
$(call KLAYOUT_FOUND)
704-
($(TIME_CMD) $(KLAYOUT_CMD) -zz -rd in_gds="$<" \
686+
($(TIME_CMD) $(SCRIPTS_DIR)/klayout.sh -zz -rd in_gds="$<" \
705687
-rd report_file=$(abspath $@) \
706688
-r $(KLAYOUT_DRC_FILE)) 2>&1 | tee $(abspath $(LOG_DIR)/6_drc.log)
707689
# Hacky way of getting DRV count (don't error on no matches)
@@ -721,8 +703,7 @@ lvs: $(RESULTS_DIR)/6_lvs.lvsdb
721703

722704
$(RESULTS_DIR)/6_lvs.lvsdb: $(GDS_FINAL_FILE) $(KLAYOUT_LVS_FILE) $(OBJECTS_DIR)/6_final_concat.cdl
723705
ifneq ($(KLAYOUT_LVS_FILE),)
724-
$(call KLAYOUT_FOUND)
725-
($(TIME_CMD) $(KLAYOUT_CMD) -b -rd in_gds="$<" \
706+
($(TIME_CMD) $(SCRIPTS_DIR)/klayout.sh -b -rd in_gds="$<" \
726707
-rd cdl_file=$(abspath $(OBJECTS_DIR)/6_final_concat.cdl) \
727708
-rd report_file=$(abspath $@) \
728709
-r $(KLAYOUT_LVS_FILE)) 2>&1 | tee $(abspath $(LOG_DIR)/6_lvs.log)
@@ -746,8 +727,22 @@ clean_finish:
746727
#
747728
# ==============================================================================
748729

730+
.PHONY: check-openroad
731+
check-openroad:
732+
@if [ "$(strip $(OPENROAD_IS_VALID))" != "true" ]; then \
733+
echo "OPENROAD_EXE is set to '$(OPENROAD_EXE)', but it is either not found or not executable."; \
734+
exit 1; \
735+
fi
736+
737+
.PHONY: check-yosys
738+
check-yosys:
739+
@if [ "$(strip $(YOSYS_IS_VALID))" != "true" ]; then \
740+
echo "YOSYS_EXE is set to '$(YOSYS_EXE)', but it is either not found or not executable."; \
741+
exit 1; \
742+
fi
743+
749744
.PHONY: all
750-
all: synth floorplan place cts route finish
745+
all: check-yosys check-openroad synth floorplan place cts route finish
751746

752747
.PHONY: clean
753748
clean:
@@ -764,15 +759,13 @@ clean_all: clean_synth clean_floorplan clean_place clean_cts clean_route clean_f
764759
.PHONY: nuke
765760
nuke: clean_test clean_issues
766761
rm -rf $(WORK_HOME)/results $(WORK_HOME)/logs $(WORK_HOME)/reports $(WORK_HOME)/objects
767-
rm -rf layer_*.mps macrocell.list *best.plt *_pdn.def
768-
rm -rf *.rpt *.rpt.old *.def.v pin_dumper.log
769-
rm -f $(OBJECTS_DIR)/versions.txt $(OBJECTS_DIR)/copyright.txt dummy.guide
762+
rm -f $(OBJECTS_DIR)/copyright.txt
770763

771764
# DEF/GDS/OAS viewer shortcuts
772765
#-------------------------------------------------------------------------------
773766
.PHONY: $(foreach file,$(RESULTS_DEF) $(RESULTS_GDS) $(RESULTS_OAS),klayout_$(file))
774767
$(foreach file,$(RESULTS_DEF) $(RESULTS_GDS) $(RESULTS_OAS),klayout_$(file)): klayout_%: $(OBJECTS_DIR)/klayout.lyt
775-
$(KLAYOUT_CMD) -nn $(OBJECTS_DIR)/klayout.lyt $(RESULTS_DIR)/$*
768+
$(SCRIPTS_DIR)/klayout.sh -nn $(OBJECTS_DIR)/klayout.lyt $(RESULTS_DIR)/$*
776769

777770
$(eval $(call OPEN_GUI_SHORTCUT,synth,1_synth.odb))
778771
$(eval $(call OPEN_GUI_SHORTCUT,floorplan,2_floorplan.odb))
@@ -818,7 +811,7 @@ test-unset-and-make-%: ; $(UNSET_AND_MAKE) $*
818811

819812
.phony: klayout
820813
klayout:
821-
$(KLAYOUT_CMD)
814+
$(SCRIPTS_DIR)/klayout.sh
822815

823816
.phony: run
824817
run:

flow/designs/asap7/aes-block/rules-base.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compare": "=="
99
},
1010
"placeopt__design__instance__area": {
11-
"value": 7233,
11+
"value": 7231,
1212
"compare": "<="
1313
},
1414
"placeopt__design__instance__count__stdcell": {
@@ -24,7 +24,7 @@
2424
"compare": "<="
2525
},
2626
"cts__design__instance__count__hold_buffer": {
27-
"value": 1449,
27+
"value": 1155,
2828
"compare": "<="
2929
},
3030
"globalroute__antenna_diodes_count": {
@@ -48,7 +48,7 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -99.09,
51+
"value": -92.83,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {

flow/designs/asap7/aes-mbff/rules-base.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compare": "=="
99
},
1010
"placeopt__design__instance__area": {
11-
"value": 2214,
11+
"value": 2177,
1212
"compare": "<="
1313
},
1414
"placeopt__design__instance__count__stdcell": {
@@ -32,7 +32,7 @@
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
35-
"value": 76679,
35+
"value": 74683,
3636
"compare": "<="
3737
},
3838
"detailedroute__route__drc_errors": {
@@ -48,7 +48,7 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -42.46,
51+
"value": -46.64,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {

flow/designs/asap7/aes/rules-base.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compare": "=="
99
},
1010
"placeopt__design__instance__area": {
11-
"value": 2214,
11+
"value": 2177,
1212
"compare": "<="
1313
},
1414
"placeopt__design__instance__count__stdcell": {
@@ -32,7 +32,7 @@
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
35-
"value": 74787,
35+
"value": 73373,
3636
"compare": "<="
3737
},
3838
"detailedroute__route__drc_errors": {
@@ -48,7 +48,7 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -73.23,
51+
"value": -48.56,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {

flow/designs/asap7/aes_lvt/rules-base.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compare": "=="
99
},
1010
"placeopt__design__instance__area": {
11-
"value": 2054,
11+
"value": 1989,
1212
"compare": "<="
1313
},
1414
"placeopt__design__instance__count__stdcell": {
@@ -32,7 +32,7 @@
3232
"compare": "<="
3333
},
3434
"detailedroute__route__wirelength": {
35-
"value": 72549,
35+
"value": 69277,
3636
"compare": "<="
3737
},
3838
"detailedroute__route__drc_errors": {
@@ -48,11 +48,11 @@
4848
"compare": "<="
4949
},
5050
"finish__timing__setup__ws": {
51-
"value": -45.99,
51+
"value": -30.85,
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {
55-
"value": 2103,
55+
"value": 2030,
5656
"compare": "<="
5757
},
5858
"finish__timing__drv__setup_violation_count": {

flow/designs/asap7/cva6/rules-base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compare": "=="
99
},
1010
"placeopt__design__instance__area": {
11-
"value": 19709,
11+
"value": 19362,
1212
"compare": "<="
1313
},
1414
"placeopt__design__instance__count__stdcell": {
@@ -52,7 +52,7 @@
5252
"compare": ">="
5353
},
5454
"finish__design__instance__area": {
55-
"value": 19864,
55+
"value": 19577,
5656
"compare": "<="
5757
},
5858
"finish__timing__drv__setup_violation_count": {

0 commit comments

Comments
 (0)