Skip to content

Commit b106da8

Browse files
committed
Formatting changes
Signed-off-by: Ethan Rogers <[email protected]>
1 parent 8609cfb commit b106da8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

vpr/src/device/rr_graph_view.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -248,16 +248,16 @@ class RRGraphView {
248248
inline const char* node_side_string(RRNodeId node) const {
249249
return node_storage_.node_side_string(node);
250250
}
251-
251+
252252
/** @brief The ptc_num carries different meanings for different node types
253-
* (true in VPR RRG that is currently supported, may not be true in customized RRG)
254-
* CHANX or CHANY: the track id in routing channels
255-
* OPIN or IPIN: the index of pins in the logic block data structure
256-
* SOURCE and SINK: the class id of a pin (indicating logic equivalence of pins) in the logic block data structure
257-
* @note
258-
* This API is very powerful and developers should not use it unless it is necessary,
259-
* e.g the node type is unknown. If the node type is known, the more specific routines, `node_pin_num()`,
260-
* `node_track_num()`and `node_class_num()`, for different types of nodes should be used.*/
253+
* (true in VPR RRG that is currently supported, may not be true in customized RRG)
254+
* CHANX or CHANY: the track id in routing channels
255+
* OPIN or IPIN: the index of pins in the logic block data structure
256+
* SOURCE and SINK: the class id of a pin (indicating logic equivalence of pins) in the logic block data structure
257+
* @note
258+
* This API is very powerful and developers should not use it unless it is necessary,
259+
* e.g the node type is unknown. If the node type is known, the more specific routines, `node_pin_num()`,
260+
* `node_track_num()`and `node_class_num()`, for different types of nodes should be used.*/
261261

262262
inline short node_ptc_num(RRNodeId node) const {
263263
return node_storage_.node_ptc_num(node);
@@ -274,7 +274,7 @@ class RRGraphView {
274274
inline short node_track_num(RRNodeId node) const {
275275
return node_storage_.node_track_num(node);
276276
}
277-
277+
278278
/** @brief Get the class num of a routing resource node. This is designed for routing source and sinks,
279279
* which are SOURCE and SINK nodes. This function is inlined for runtime optimization. */
280280
inline short node_class_num(RRNodeId node) const {

0 commit comments

Comments
 (0)