@@ -237,7 +237,7 @@ static void build_rr_chan(RRGraphBuilder& rr_graph_builder,
237
237
238
238
void uniquify_edges (t_rr_edge_info_set& rr_edges_to_create);
239
239
240
- void alloc_and_load_edges (t_rr_graph_storage& L_rr_node ,
240
+ void alloc_and_load_edges (RRGraphBuilder& rr_graph_builder ,
241
241
const t_rr_edge_info_set& rr_edges_to_create);
242
242
243
243
static void alloc_and_load_rr_switch_inf (const int num_arch_switches,
@@ -1179,7 +1179,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
1179
1179
1180
1180
// Create the actual SOURCE->OPIN, IPIN->SINK edges
1181
1181
uniquify_edges (rr_edges_to_create);
1182
- alloc_and_load_edges (L_rr_node , rr_edges_to_create);
1182
+ alloc_and_load_edges (rr_graph_builder , rr_edges_to_create);
1183
1183
rr_edges_to_create.clear ();
1184
1184
}
1185
1185
}
@@ -1207,7 +1207,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
1207
1207
1208
1208
// Create the actual OPIN->CHANX/CHANY edges
1209
1209
uniquify_edges (rr_edges_to_create);
1210
- alloc_and_load_edges (L_rr_node , rr_edges_to_create);
1210
+ alloc_and_load_edges (rr_graph_builder , rr_edges_to_create);
1211
1211
rr_edges_to_create.clear ();
1212
1212
}
1213
1213
}
@@ -1229,7 +1229,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
1229
1229
1230
1230
// Create the actual CHAN->CHAN edges
1231
1231
uniquify_edges (rr_edges_to_create);
1232
- alloc_and_load_edges (L_rr_node , rr_edges_to_create);
1232
+ alloc_and_load_edges (rr_graph_builder , rr_edges_to_create);
1233
1233
rr_edges_to_create.clear ();
1234
1234
}
1235
1235
if (j > 0 ) {
@@ -1244,7 +1244,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
1244
1244
1245
1245
// Create the actual CHAN->CHAN edges
1246
1246
uniquify_edges (rr_edges_to_create);
1247
- alloc_and_load_edges (L_rr_node , rr_edges_to_create);
1247
+ alloc_and_load_edges (rr_graph_builder , rr_edges_to_create);
1248
1248
rr_edges_to_create.clear ();
1249
1249
}
1250
1250
}
@@ -1256,7 +1256,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
1256
1256
ClockRRGraphBuilder builder (chan_width, grid, &L_rr_node, &rr_graph_builder);
1257
1257
builder.create_and_append_clock_rr_graph (num_seg_types, &rr_edges_to_create);
1258
1258
uniquify_edges (rr_edges_to_create);
1259
- alloc_and_load_edges (L_rr_node , rr_edges_to_create);
1259
+ alloc_and_load_edges (rr_graph_builder , rr_edges_to_create);
1260
1260
rr_edges_to_create.clear ();
1261
1261
update_chan_width = [builder](t_chan_width* c) {
1262
1262
builder.update_chan_width (c);
@@ -1687,8 +1687,8 @@ void uniquify_edges(t_rr_edge_info_set& rr_edges_to_create) {
1687
1687
rr_edges_to_create.erase (std::unique (rr_edges_to_create.begin (), rr_edges_to_create.end ()), rr_edges_to_create.end ());
1688
1688
}
1689
1689
1690
- void alloc_and_load_edges (RRGraphBuilder& rr_graph_builder, t_rr_graph_storage& L_rr_node, const t_rr_edge_info_set& rr_edges_to_create) {
1691
- rr_graph_builder.alloc_and_load_edges (&rr_edges_to_create);
1690
+ void alloc_and_load_edges (RRGraphBuilder& rr_graph_builder, const t_rr_edge_info_set& rr_edges_to_create) {
1691
+ rr_graph_builder.alloc_and_load_edges (&rr_edges_to_create);
1692
1692
}
1693
1693
1694
1694
/* allocate pin to track map for each segment type individually and then combine into a single
0 commit comments