Skip to content

Commit d2edfa2

Browse files
authored
Merge pull request The-OpenROAD-Project#3504 from AcKoucher/scripts-remove-mpl-signature-var
scripts: remove MPL connection signature flow variable
2 parents b2918ba + 58829b8 commit d2edfa2

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

docs/user/FlowVariables.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ configuration file.
208208
| <a name="RTLMP_NOTCH_WT"></a>RTLMP_NOTCH_WT| Weight for the notch, or the existence of dead space that cannot be used for placement and routing.| 10.0|
209209
| <a name="RTLMP_OUTLINE_WT"></a>RTLMP_OUTLINE_WT| Weight for violating the fixed outline constraint, meaning that all clusters should be placed within the shape of their parent cluster.| 100.0|
210210
| <a name="RTLMP_RPT_DIR"></a>RTLMP_RPT_DIR| Path to the directory where reports are saved.| |
211-
| <a name="RTLMP_SIGNATURE_NET_THRESHOLD"></a>RTLMP_SIGNATURE_NET_THRESHOLD| Minimum number of connections between two clusters to be identified as connected.| 50|
212211
| <a name="RTLMP_WIRELENGTH_WT"></a>RTLMP_WIRELENGTH_WT| Weight for half-perimiter wirelength.| 100.0|
213212
| <a name="RULES_JSON"></a>RULES_JSON| json files with the metrics baseline regression rules. In the ORFS Makefile, this defaults to $DESIGN_DIR/rules-base.json, but ORFS does not mandate the users source directory layout and this can be placed elsewhere when the user sets up an ORFS config.mk or from bazel-orfs.| |
214213
| <a name="RUN_LOG_NAME_STEM"></a>RUN_LOG_NAME_STEM| Stem of the log file name, the log file will be named `$(LOG_DIR)/$(RUN_LOG_NAME_STEM).log`.| run|
@@ -343,7 +342,6 @@ configuration file.
343342
- [RTLMP_NOTCH_WT](#RTLMP_NOTCH_WT)
344343
- [RTLMP_OUTLINE_WT](#RTLMP_OUTLINE_WT)
345344
- [RTLMP_RPT_DIR](#RTLMP_RPT_DIR)
346-
- [RTLMP_SIGNATURE_NET_THRESHOLD](#RTLMP_SIGNATURE_NET_THRESHOLD)
347345
- [RTLMP_WIRELENGTH_WT](#RTLMP_WIRELENGTH_WT)
348346
- [SETUP_REPAIR_SEQUENCE](#SETUP_REPAIR_SEQUENCE)
349347
- [SETUP_SLACK_MARGIN](#SETUP_SLACK_MARGIN)

flow/scripts/macro_place_util.tcl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ if { [find_macros] != "" } {
4747
append additional_rtlmp_args " -halo_width $halo_x"
4848
append additional_rtlmp_args " -halo_height $halo_y"
4949
append_env_var additional_rtlmp_args RTLMP_MIN_AR -min_ar 1
50-
append_env_var additional_rtlmp_args RTLMP_SIGNATURE_NET_THRESHOLD -signature_net_threshold 1
5150
append_env_var additional_rtlmp_args RTLMP_AREA_WT -area_weight 1
5251
append_env_var additional_rtlmp_args RTLMP_WIRELENGTH_WT -wirelength_weight 1
5352
append_env_var additional_rtlmp_args RTLMP_OUTLINE_WT -outline_weight 1

flow/scripts/variables.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -962,13 +962,6 @@ RTLMP_MIN_AR:
962962
default: 0.33
963963
stages:
964964
- floorplan
965-
RTLMP_SIGNATURE_NET_THRESHOLD:
966-
description: >
967-
Minimum number of connections between two clusters to be identified as
968-
connected.
969-
default: 50
970-
stages:
971-
- floorplan
972965
RTLMP_AREA_WT:
973966
description: >
974967
Weight for the area of the current floorplan.

0 commit comments

Comments
 (0)