Skip to content

Commit 6aee2d4

Browse files
committed
Formatting Changes
1 parent 2262cf2 commit 6aee2d4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

vpr/src/noc/noc_router.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ class NocRouter {
4747
* the physical router tile is located*/
4848
int router_grid_position_x;
4949
/** Represents the vertical grid position on the device
50-
* the physical router is located*/
50+
* the physical router is located*/
5151
int router_grid_position_y;
5252
/** Represents the layer number of the die
53-
* that the physical router is located*/
54-
int router_layer_position;
53+
* that the physical router is located*/
54+
int router_layer_position;
5555

5656
/** A unique identifier that represents a router block in the
5757
* clustered netlist that is placed on the physical router*/
58-
ClusterBlockId router_block_ref;
58+
ClusterBlockId router_block_ref;
5959

6060
public:
6161
NocRouter(int id, int grid_position_x, int grid_position_y, int layer_position);

vpr/src/noc/noc_storage.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ constexpr NocLinkId INVALID_LINK_ID(-1);
5454
class NocStorage {
5555
private:
5656
/** Contains all the routers in the NoC*/
57-
vtr::vector<NocRouterId, NocRouter> router_storage;
57+
vtr::vector<NocRouterId, NocRouter> router_storage;
5858

5959
// list of outgoing links for each router
6060
/**
@@ -66,7 +66,7 @@ class NocStorage {
6666
vtr::vector<NocRouterId, std::vector<NocLinkId>> router_link_list;
6767

6868
/** Contains all the links in the NoC*/
69-
vtr::vector<NocLinkId, NocLink> link_storage;
69+
vtr::vector<NocLinkId, NocLink> link_storage;
7070

7171
/**
7272
* @brief The user provides an ID for the router when describing the NoC

0 commit comments

Comments
 (0)