Skip to content

Commit 241589b

Browse files
committed
make format
1 parent 798055c commit 241589b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

vpr/src/pack/cluster_router.h

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ void set_reset_pb_modes(t_lb_router_data* router_data, const t_pb* pb, const boo
2222
bool try_intra_lb_route(t_lb_router_data* router_data, int verbosity, t_mode_selection_status* mode_status);
2323
void reset_intra_lb_route(t_lb_router_data* router_data);
2424

25-
/* Accessor Functions */
2625
/**
2726
* @brief Creates an array [0..num_pb_graph_pins-1] for intra-logic block routing lookup.
2827
* Given a pb_graph_pin ID for a CLB, this lookup returns t_pb_route corresponding to that

vpr/src/pack/sync_netlists_to_routing_flat.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ static void sync_pb_routes_to_routing(void) {
180180
* correspond to the atom net IDs.
181181
*/
182182
if (!route_ctx.route_trees[pb_route.atom_net_id]) {
183-
/* No route tree: no routing in place, it is global or clock */
183+
/* No route tree: no routing in place, it is global or clock */
184184
continue;
185185
}
186186
pins_to_erase.push_back(pin);
@@ -365,7 +365,7 @@ static void sync_clustered_netlist_to_routing(void) {
365365
}
366366
PinType pin_type = node_type == OPIN ? PinType::DRIVER : PinType::SINK;
367367

368-
/* Pin already exists. This means a global was connected to here. */
368+
/* Pin already exists. This means a global net that was not routed (i.e. 'ideal' mode). */
369369
if (clb_netlist.port_pin(port_id, pb_graph_pin->pin_number)) {
370370
VTR_LOG_WARN("Pin %s of block %s has a global or clock net"
371371
" connected and it has a routing clash with the flat router."

0 commit comments

Comments
 (0)