Skip to content

Commit 04947ed

Browse files
litghostacomodi
authored andcommitted
Change adjacency check to warning.
Signed-off-by: Keith Rothman <[email protected]> Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 35d1036 commit 04947ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

vpr/src/route/check_route.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ void check_route(enum e_route_type route_type) {
118118
} else { //Continuing along existing branch
119119
connects = check_adjacent(prev_node, inode);
120120
if (!connects) {
121-
vpr_throw(VPR_ERROR_ROUTE, __FILE__, __LINE__,
122-
"in check_route: found non-adjacent segments in traceback while checking net %d:\n"
123-
" %s\n"
124-
" %s\n",
125-
size_t(net_id),
126-
describe_rr_node(prev_node).c_str(),
127-
describe_rr_node(inode).c_str());
121+
VTR_LOG_WARN(
122+
"in check_route: found non-adjacent segments in traceback while checking net %d:\n"
123+
" %s\n"
124+
" %s\n",
125+
size_t(net_id),
126+
describe_rr_node(prev_node).c_str(),
127+
describe_rr_node(inode).c_str());
128128
}
129129

130130
connected_to_route[inode] = true; /* Mark as in path. */

0 commit comments

Comments
 (0)