Skip to content

Commit abd0116

Browse files
committed
make format
1 parent 5c18569 commit abd0116

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

vpr/src/route/rr_graph_generation/clb2clb_directs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ std::vector<t_clb_to_clb_directs> alloc_and_load_clb_to_clb_directs(const std::v
8585
}
8686

8787
return clb_to_clb_directs;
88-
}
88+
}

vpr/src/route/rr_graph_generation/rr_graph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3272,7 +3272,7 @@ static void build_rr_chan(RRGraphBuilder& rr_graph_builder,
32723272
}
32733273

32743274
// Edge arrays have now been built up. Do everything else.
3275-
// AA: The cost_index should be w.r.t the index of the segment to its **parallel** segment_inf vector.
3275+
// AA: The cost_index should be w.r.t the index of the segment to its **parallel** segment_inf vector.
32763276
// Note that when building channels, we use the indices w.r.t segment_inf_x and segment_inf_y as
32773277
// computed earlier in build_rr_graph so it's fine to use .index() for to get the correct index.
32783278
rr_graph_builder.set_node_cost_index(node, RRIndexedDataId(cost_index_offset + seg_details[track].index()));
@@ -3445,7 +3445,7 @@ static vtr::NdMatrix<int, 6> alloc_and_load_pin_to_seg_type(const e_pin_type pin
34453445
// Note: currently a single value of Fc is used across each pin. In the future the looping below will
34463446
// have to be modified if we want to account for pin-based Fc values
34473447

3448-
// NB: This wastes some space. Could set tracks_..._pin[ipin][ioff][iside] = NULL if there is
3448+
// NB: This wastes some space. Could set tracks_..._pin[ipin][ioff][iside] = NULL if there is
34493449
// no pin on that side, or that pin is of the wrong type.
34503450
// Probably not enough memory to worry about, esp. as it's temporary.
34513451
// If pin ipin on side iside does not exist or is of the wrong type,

vpr/src/route/rr_graph_generation/tileable_rr_graph/rr_chan.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class RRChan {
3535

3636
public: // Accessors
3737
e_rr_type get_type() const;
38-
38+
3939
/**
4040
* @brief Get the number of tracks in this channel
4141
*/
@@ -64,6 +64,7 @@ class RRChan {
6464
* @brief Get a list of segments used in this routing channel
6565
*/
6666
std::vector<size_t> get_node_ids_by_segment_ids(const RRSegmentId seg_id) const;
67+
6768
public:
6869
void set(const RRChan&);
6970

0 commit comments

Comments
 (0)