You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vpr/src/base/vpr_context.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -519,7 +519,7 @@ struct NocContext : public Context {
519
519
/**
520
520
* @brief Stores all the communication happening between routers in the NoC
521
521
*
522
-
* Contains all of the traffic flows that ddescribe which pairs of logical routers are communicating and also some metrics and constraints on the data transfer between the two routers.
522
+
* Contains all of the traffic flows that describe which pairs of logical routers are communicating and also some metrics and constraints on the data transfer between the two routers.
523
523
*
524
524
*
525
525
* This is created from a user supplied .flows file.
// keeps track of the position of each outgoing link for the provided src router. When the id of the link to remove is found, this index can be used to remove it from the ougoing link vector.
135
+
// keeps track of the position of each outgoing link for the provided src router. When the id of the link to remove is found, this index can be used to remove it from the outgoing link vector.
136
136
int outgoing_link_index = 0;
137
137
138
138
// go through each outgoing link of the source router and see if there is a link that also has the corresponding sink router.
139
139
// Save this link index and remove it
140
140
for (auto outgoing_link_id = source_router_outgoing_links->begin(); outgoing_link_id != source_router_outgoing_links->end(); outgoing_link_id++) {
141
141
// check to see if the current link id matches the id of the link to remove
142
142
if (link_storage[*outgoing_link_id].get_sink_router() == sink_router_id) {
143
-
// found the link we need to remove so we delete it here
143
+
// found the link we need to remove, so we delete it here
0 commit comments