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 0a1bc20 commit 4da28ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vpr/src/tileable_rr_graph/rr_gsb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ e_side RRGSB::get_cb_chan_side(const t_rr_type& cb_type) const {
case CHANX:
return LEFT;
case CHANY:
return TOP;
return BOTTOM;
default:
VTR_LOG("Invalid type of connection block!\n");
exit(1);
Expand All @@ -638,11 +638,11 @@ e_side RRGSB::get_cb_chan_side(const e_side& ipin_side) const {
case TOP:
return LEFT;
case RIGHT:
return TOP;
return BOTTOM;
case BOTTOM:
return LEFT;
case LEFT:
return TOP;
return BOTTOM;
default:
VTR_LOG("Invalid type of ipin_side!\n");
exit(1);
Expand Down

0 comments on commit 4da28ff

Please sign in to comment.