Skip to content

Commit a7f7340

Browse files
committed
check_rr_graph: error to warning in checking unbuffered edges
Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 35d1036 commit a7f7340

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

vpr/src/route/check_rr_graph.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -502,11 +502,11 @@ static void check_unbuffered_edges(int from_node) {
502502
}
503503

504504
if (trans_matched == false) {
505-
vpr_throw(VPR_ERROR_ROUTE, __FILE__, __LINE__,
506-
"in check_unbuffered_edges:\n"
507-
"connection from node %d to node %d uses an unbuffered switch (switch type %d '%s')\n"
508-
"but there is no corresponding unbuffered switch edge in the other direction.\n",
509-
from_node, to_node, from_switch_type, device_ctx.rr_switch_inf[from_switch_type].name);
505+
VTR_LOG_WARN(
506+
"in check_unbuffered_edges:\n"
507+
"connection from node %d to node %d uses an unbuffered switch (switch type %d '%s')\n"
508+
"but there is no corresponding unbuffered switch edge in the other direction.\n",
509+
from_node, to_node, from_switch_type, device_ctx.rr_switch_inf[from_switch_type].name);
510510
}
511511

512512
} /* End for all from_node edges */

0 commit comments

Comments
 (0)