Skip to content

Commit 331d0af

Browse files
committed
Adjust a node_ptc_num() call to node_class_num()
Signed-off-by: Ethan Rogers <[email protected]>
1 parent b106da8 commit 331d0af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/clock_connection_builders.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ RRNodeId RoutingToClockConnection::create_virtual_clock_network_sink_node(int x,
121121
// However, since the SINK node has the same xhigh/xlow as well as yhigh/ylow, we can probably use a shortcut
122122
for (int ix = rr_graph.node_xlow(node_index); ix <= rr_graph.node_xhigh(node_index); ++ix) {
123123
for (int iy = rr_graph.node_ylow(node_index); iy <= rr_graph.node_yhigh(node_index); ++iy) {
124-
node_lookup.add_node(node_index, ix, iy, rr_graph.node_type(node_index), temp_rr_graph.node_ptc_num(node_index));
124+
node_lookup.add_node(node_index, ix, iy, rr_graph.node_type(node_index), temp_rr_graph.node_class_num(node_index));
125125
}
126126
}
127127

0 commit comments

Comments
 (0)