Skip to content

Commit

Permalink
[core] debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tangxifan committed Jul 5, 2024
1 parent 4da28ff commit c71c3b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpr/src/tileable_rr_graph/tileable_rr_graph_gsb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit c71c3b9

Please sign in to comment.