File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ void report_overused_nodes(const Netlist<>& net_list,
135
135
int x = rr_graph.node_xlow (node_id);
136
136
int y = rr_graph.node_ylow (node_id);
137
137
int layer_num = rr_graph.node_layer_low (node_id);
138
+
138
139
switch (node_type) {
139
140
case e_rr_type::IPIN:
140
141
case e_rr_type::OPIN:
@@ -145,18 +146,19 @@ void report_overused_nodes(const Netlist<>& net_list,
145
146
x -= g_vpr_ctx.device ().grid .get_physical_type ({x, y, layer_num})->width ;
146
147
y -= g_vpr_ctx.device ().grid .get_physical_type ({x, y, layer_num})->width ;
147
148
break ;
149
+
148
150
case e_rr_type::CHANX:
149
151
case e_rr_type::CHANY:
152
+ case e_rr_type::CHANZ:
150
153
report_overused_chanx_chany (os, node_id);
151
154
break ;
155
+
152
156
case e_rr_type::SOURCE:
153
157
case e_rr_type::SINK:
154
158
report_overused_source_sink (os, node_id);
155
159
report_sinks = true ;
156
160
break ;
157
161
158
- // TODO: handle CHANZ nodes
159
-
160
162
default :
161
163
break ;
162
164
}
You can’t perform that action at this time.
0 commit comments