Skip to content

Commit 7caf5cc

Browse files
[Logging] Moved Some Warnings Down to Logs
1 parent 3fc7d8a commit 7caf5cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vpr/src/base/check_netlist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void check_netlist(int verbosity) {
6363
}
6464
free_hash_table(net_hash_table);
6565
if (global_to_non_global_connection_count > 0) {
66-
VTR_LOG_WARN("Netlist contains %d global net to non-global architecture pin connections\n", global_to_non_global_connection_count);
66+
VTR_LOG("Netlist contains %d global net to non-global architecture pin connections\n", global_to_non_global_connection_count);
6767
}
6868

6969
auto& device_ctx = g_vpr_ctx.device();

vpr/src/route/connection_router.tpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ std::tuple<bool, bool, RTExploredNode> ConnectionRouter<Heap>::timing_driven_rou
8383
if (std::isinf(rr_node_route_inf_[sink_node].path_cost)) {
8484
//Found no path, that may be due to an unlucky choice of existing route tree sub-set,
8585
//try again with the full route tree to be sure this is not an artifact of high-fanout routing
86-
VTR_LOGV_WARN(route_verbosity_ > 1, "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);
86+
VTR_LOGV(route_verbosity_ > 1, "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);
8787

8888
//Reset any previously recorded node costs so timing_driven_route_connection()
8989
//starts over from scratch.
@@ -154,7 +154,7 @@ bool ConnectionRouter<Heap>::timing_driven_route_connection_common_setup(
154154
}
155155

156156
// Otherwise, leave unrouted and bubble up a signal to retry this net with a full-device bounding box
157-
VTR_LOGV_WARN(route_verbosity_ > 1, "No routing path for connection to sink_rr %d, leaving unrouted to retry later\n", sink_node);
157+
VTR_LOGV(route_verbosity_ > 1, "No routing path for connection to sink_rr %d, leaving unrouted to retry later\n", sink_node);
158158
return true;
159159
}
160160

0 commit comments

Comments
 (0)