Skip to content

Commit 66b7e76

Browse files
committed
[VPR] Remove buggy warning message from an API that is going to be deprecated
1 parent d5fd60c commit 66b7e76

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

vpr/src/route/rr_graph_storage.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -648,16 +648,6 @@ class t_rr_graph_storage {
648648
rr_node_typename[node_data.type_]);
649649
}
650650
std::bitset<NUM_SIDES> side_tt = node_storage[id].dir_side_.sides;
651-
if (1 < side_tt.count()) {
652-
/* Throw a non-fatal error which is suppressable */
653-
VTR_LOG_WARN("Try to get one side for RR node '%d':\n\ttype='%s'\txlow,ylow=(%d,%d)\n\txhigh,yhigh=(%d,%d), which has multiple sides!",
654-
size_t(id),
655-
rr_node_typename[node_data.type_],
656-
node_data.xlow_,
657-
node_data.ylow_,
658-
node_data.xhigh_,
659-
node_data.yhigh_);
660-
}
661651
for (const e_side& side : SIDES) {
662652
if (side_tt[size_t(side)]) {
663653
return side;

0 commit comments

Comments
 (0)