From c71c3b9d3a1a17b6865511b29e5d2e14f5e9fe15 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Fri, 5 Jul 2024 12:20:33 -0700 Subject: [PATCH] [core] debug --- vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp b/vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp index 7ec8c756a08..4fb4c1b2c76 100644 --- a/vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp +++ b/vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp @@ -868,7 +868,7 @@ RRGSB build_one_tileable_rr_gsb(const DeviceGrid& grids, break; case RIGHT: /* Consider the routing channel that is connected to the top side of the switch block */ - chan_side = TOP; + chan_side = BOTTOM; /* The input pins of the routing channel come from the left side of Grid[x+1][y+1] */ ix = rr_gsb.get_sb_x() + 1; iy = rr_gsb.get_sb_y(); @@ -884,7 +884,7 @@ RRGSB build_one_tileable_rr_gsb(const DeviceGrid& grids, break; case LEFT: /* Consider the routing channel that is connected to the top side of the switch block */ - chan_side = TOP; + chan_side = BOTTOM; /* The input pins of the routing channel come from the right side of Grid[x][y+1] */ ix = rr_gsb.get_sb_x(); iy = rr_gsb.get_sb_y();