Skip to content

Commit 0b7bc32

Browse files
[Spelling] Fixed Minor Spelling Mistakes in Route
1 parent a481ad7 commit 0b7bc32

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vpr/src/route/parallel_connection_router.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static inline bool prune_node(RRNodeId inode,
8080
if (new_back_cost == best_back_cost) {
8181
#ifndef NON_DETERMINISTIC_PRUNING
8282
// With deterministic pruning, cannot always prune on ties.
83-
// In the case of a true tie, just prune, no need to explore neighbors
83+
// In the case of a true tie, just prune, no need to explore neighbours
8484
RREdgeId best_prev_edge = route_inf->prev_edge;
8585
if (new_prev_edge == best_prev_edge)
8686
return true;

vpr/src/route/rr_graph_generation/tileable_rr_graph/tileable_rr_graph_gsb.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ t_bend_track2track_map build_bend_track_to_track_map(const DeviceGrid& grids,
564564
std::vector<RRNodeId> rr_nodes;
565565
switch (side) {
566566
case TOP: /* TOP = 0 */
567-
/* For the boarder, we should take special care */
567+
/* For the border, we should take special care */
568568
if (gsb_coordinate.y() == grids.height() - 2) {
569569

570570
break;
@@ -600,7 +600,7 @@ t_bend_track2track_map build_bend_track_to_track_map(const DeviceGrid& grids,
600600

601601
break;
602602
case RIGHT: /* RIGHT = 1 */
603-
/* For the boarder, we should take special care */
603+
/* For the border, we should take special care */
604604
if (gsb_coordinate.x() == grids.width() - 2) {
605605

606606
break;
@@ -635,7 +635,7 @@ t_bend_track2track_map build_bend_track_to_track_map(const DeviceGrid& grids,
635635
}
636636
break;
637637
case BOTTOM: /* BOTTOM = 2 */
638-
/* For the boarder, we should take special care */
638+
/* For the border, we should take special care */
639639
if (gsb_coordinate.y() == 0) {
640640

641641
break;
@@ -670,7 +670,7 @@ t_bend_track2track_map build_bend_track_to_track_map(const DeviceGrid& grids,
670670
}
671671
break;
672672
case LEFT: /* BOTTOM = 2 */
673-
/* For the boarder, we should take special care */
673+
/* For the border, we should take special care */
674674
if (gsb_coordinate.x() == 0) {
675675

676676
break;

0 commit comments

Comments
 (0)