Skip to content

Commit 832d967

Browse files
committed
[vpr][route] print net num in log msg
1 parent 377aed4 commit 832d967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/connection_router.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ std::tuple<bool, bool, t_heap> ConnectionRouter<Heap>::timing_driven_route_conne
147147
if (cheapest == nullptr) {
148148
//Found no path, that may be due to an unlucky choice of existing route tree sub-set,
149149
//try again with the full route tree to be sure this is not an artifact of high-fanout routing
150-
VTR_LOG_WARN("No routing path found in high-fanout mode for net connection (to sink_rr %d), retrying with full route tree\n", sink_node);
150+
VTR_LOG_WARN("No routing path found in high-fanout mode for net %zu connection (to sink_rr %d), retrying with full route tree\n", size_t(conn_params.net_id_), sink_node);
151151

152152
//Reset any previously recorded node costs so timing_driven_route_connection()
153153
//starts over from scratch.

0 commit comments

Comments
 (0)