Skip to content

Commit 54bb48c

Browse files
committed
Added new rules for "<stage>__flow__warnings__type_count"
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent bcd36e6 commit 54bb48c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

flow/util/genRuleFile.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,17 @@ def gen_rule_file(
7474
"compare": "==",
7575
},
7676
# floorplan
77+
"floorplan__flow__warnings__type_count": {
78+
"mode": "direct",
79+
"round_value": True,
80+
"compare": "<=",
81+
},
7782
# place
83+
"placeopt__flow__warnings__type_count": {
84+
"mode": "direct",
85+
"round_value": True,
86+
"compare": "<=",
87+
},
7888
"placeopt__design__instance__area": {
7989
"mode": "padding",
8090
"padding": 15,
@@ -87,12 +97,22 @@ def gen_rule_file(
8797
"round_value": True,
8898
"compare": "<=",
8999
},
100+
"detailedplace__flow__warnings__type_count": {
101+
"mode": "direct",
102+
"round_value": True,
103+
"compare": "<=",
104+
},
90105
"detailedplace__design__violations": {
91106
"mode": "direct",
92107
"round_value": True,
93108
"compare": "==",
94109
},
95110
# cts
111+
"cts__flow__warnings__type_count": {
112+
"mode": "direct",
113+
"round_value": True,
114+
"compare": "<=",
115+
},
96116
"cts__design__instance__count__setup_buffer": {
97117
"mode": "metric",
98118
"padding": 10,
@@ -132,6 +152,11 @@ def gen_rule_file(
132152
"compare": ">=",
133153
},
134154
# route
155+
"globalroute__flow__warnings__type_count": {
156+
"mode": "direct",
157+
"round_value": True,
158+
"compare": "<=",
159+
},
135160
"globalroute__antenna_diodes_count": {
136161
"mode": "metric",
137162
"padding": 0.1,
@@ -165,6 +190,11 @@ def gen_rule_file(
165190
"round_value": False,
166191
"compare": ">=",
167192
},
193+
"detailedroute__flow__warnings__type_count": {
194+
"mode": "direct",
195+
"round_value": True,
196+
"compare": "<=",
197+
},
168198
"detailedroute__route__wirelength": {
169199
"mode": "padding",
170200
"padding": 15,
@@ -216,6 +246,11 @@ def gen_rule_file(
216246
"compare": ">=",
217247
},
218248
# finish
249+
"finish__flow__warnings__type_count": {
250+
"mode": "direct",
251+
"round_value": True,
252+
"compare": "<=",
253+
},
219254
"finish__timing__setup__ws": {
220255
"mode": "period_padding",
221256
"padding": 5,

0 commit comments

Comments
 (0)