Skip to content

Commit 58829b8

Browse files
committed
scripts: remove MPL connection signature flow variable
Signed-off-by: Arthur Koucher <[email protected]>
1 parent bb27eaa commit 58829b8

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
@@ -204,7 +204,6 @@ configuration file.
204204
| <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|
205205
| <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|
206206
| <a name="RTLMP_RPT_DIR"></a>RTLMP_RPT_DIR| Path to the directory where reports are saved.| |
207-
| <a name="RTLMP_SIGNATURE_NET_THRESHOLD"></a>RTLMP_SIGNATURE_NET_THRESHOLD| Minimum number of connections between two clusters to be identified as connected.| 50|
208207
| <a name="RTLMP_WIRELENGTH_WT"></a>RTLMP_WIRELENGTH_WT| Weight for half-perimiter wirelength.| 100.0|
209208
| <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.| |
210209
| <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|
@@ -331,7 +330,6 @@ configuration file.
331330
- [RTLMP_NOTCH_WT](#RTLMP_NOTCH_WT)
332331
- [RTLMP_OUTLINE_WT](#RTLMP_OUTLINE_WT)
333332
- [RTLMP_RPT_DIR](#RTLMP_RPT_DIR)
334-
- [RTLMP_SIGNATURE_NET_THRESHOLD](#RTLMP_SIGNATURE_NET_THRESHOLD)
335333
- [RTLMP_WIRELENGTH_WT](#RTLMP_WIRELENGTH_WT)
336334
- [SETUP_REPAIR_SEQUENCE](#SETUP_REPAIR_SEQUENCE)
337335
- [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
@@ -911,13 +911,6 @@ RTLMP_MIN_AR:
911911
default: 0.33
912912
stages:
913913
- floorplan
914-
RTLMP_SIGNATURE_NET_THRESHOLD:
915-
description: >
916-
Minimum number of connections between two clusters to be identified as
917-
connected.
918-
default: 50
919-
stages:
920-
- floorplan
921914
RTLMP_AREA_WT:
922915
description: >
923916
Weight for the area of the current floorplan.

0 commit comments

Comments
 (0)