Skip to content

Commit 0608908

Browse files
committed
[vpr][route][crr] pass crr id to create_edge_in_cache
1 parent 7cb89f7 commit 0608908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/rr_graph_generation/tileable_rr_graph/crr_generator/crr_edge_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ void build_crr_gsb_track_to_track_edges(RRGraphBuilder& rr_graph_builder,
2929
for (const auto& connection : gsb_connections) {
3030
RRSwitchId rr_switch_id = find_crr_switch_id(connection.delay_ps());
3131
VTR_ASSERT(rr_switch_id != RRSwitchId::INVALID());
32-
rr_graph_builder.create_edge_in_cache(connection.src_node(), connection.sink_node(), rr_switch_id, false);
32+
rr_graph_builder.create_edge_in_cache(connection.src_node(), connection.sink_node(), rr_switch_id, false, connection.crr_id());
3333
}
3434
}

0 commit comments

Comments
 (0)