Skip to content

Commit de52b91

Browse files
committed
[vpr] fix instances of rr graph view
1 parent dda1dd5 commit de52b91

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

vpr/src/base/vpr_context.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,7 @@ struct DeviceContext : public Context {
237237
rr_rc_data,
238238
rr_graph_builder.rr_segments(),
239239
rr_graph_builder.rr_switch(),
240-
rr_graph_builder.node_in_edge_storage(),
241-
rr_graph_builder.node_ptc_storage()};
240+
rr_graph_builder.node_in_edge_storage()};
242241

243242
///@brief Track ids for each rr_node in the rr_graph. This is used by drawer for tileable routing resource graph
244243
std::map<RRNodeId, std::vector<size_t>> rr_node_track_ids;

vpr/src/route/router_lookahead/router_lookahead_map.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,8 +760,7 @@ static void compute_tile_lookahead(std::unordered_map<int, util::t_ipin_primitiv
760760
g_vpr_ctx.device().rr_rc_data,
761761
rr_graph_builder.rr_segments(),
762762
rr_graph_builder.rr_switch(),
763-
rr_graph_builder.node_in_edge_storage(),
764-
rr_graph_builder.node_ptc_storage()};
763+
rr_graph_builder.node_in_edge_storage()};
765764

766765
util::t_ipin_primitive_sink_delays pin_delays = util::compute_intra_tile_dijkstra(rr_graph,
767766
physical_tile,

0 commit comments

Comments
 (0)