File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -697,7 +697,7 @@ static void build_rr_graph(const t_graph_type graph_type,
697
697
// Using num_rr_nodes here over device_ctx.rr_nodes.size() because
698
698
// clock_modeling::DEDICATED_NETWORK will append some rr nodes after
699
699
// the regular graph.
700
- for (size_t i = 0 ; i < num_rr_nodes; i++) {
700
+ for (int i = 0 ; i < num_rr_nodes; i++) {
701
701
if (device_ctx.rr_nodes [i].type () == CHANX) {
702
702
int ylow = device_ctx.rr_nodes [i].ylow ();
703
703
device_ctx.rr_nodes [i].set_capacity (nodes_per_chan.x_list [ylow]);
@@ -1311,8 +1311,8 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(std::vector<t_
1311
1311
uniquify_edges (rr_edges_to_create);
1312
1312
alloc_and_load_edges (L_rr_node, rr_edges_to_create);
1313
1313
rr_edges_to_create.clear ();
1314
- update_chan_width = [builder](t_chan_width* chan_width ) {
1315
- builder.update_chan_width (chan_width );
1314
+ update_chan_width = [builder](t_chan_width* c ) {
1315
+ builder.update_chan_width (c );
1316
1316
};
1317
1317
}
1318
1318
You can’t perform that action at this time.
0 commit comments