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/noc/noc_routing_algorithm_creator.h
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,19 @@
2
2
#defineNOC_ROUTING_ALGORITHM_CREATOR
3
3
4
4
/**
5
-
* @file om)
5
+
* @file
6
6
* @brief This file defines the NocRoutingAlgorithmCreator class, which creates
7
7
* the routing algorithm that will be used to route packets within the NoC.
8
8
*
9
9
* Overview
10
10
* ========
11
-
* There are a number of different available NoC routing algorithms. The purpose of
12
-
* this class is to construct the appropriate routing algorithm based on the user
13
-
* specification in the command line. The user identifies a specific routing algorithm
14
-
* in the command line by providing a string (which is the name of routing algorithm).
15
-
* Then, the appripriate routing algorithm is created here based on the provided
16
-
* string.
11
+
* There are a number of different available NoC routing algorithms. This class * is a factory object for the NocRouting abstract class. This class constructs
12
+
* the appropriate routing algorithm based on the user specification in the
13
+
* command line. The user identifies a
14
+
* specific routing algorithm in the command line by providing a string
15
+
* (which is the name of routing algorithm).
16
+
* Then the corresponding routing algorithm is created here based on the
17
+
* provided string.
17
18
*/
18
19
19
20
#include<string>
@@ -29,10 +30,10 @@ class NocRoutingAlgorithmCreator {
29
30
~NocRoutingAlgorithmCreator() {}
30
31
31
32
/**
32
-
* @brief Given a string that identifies a NoC routing algorithm, this function
33
-
* create the corresponding routing algorithm and returns a reference to it. If
34
-
* the provided string does not match any available routing algorithms then an
35
-
* error is thrown.
33
+
* @brief Given a string that identifies a NoC routing algorithm, this
34
+
* function creates the corresponding routing algorithm and returns a
35
+
* reference to it. If the provided string does not match any
36
+
* available routing algorithms then an error is thrown.
36
37
*
37
38
* @param routing_algorithm_name A user provided string that identifies a
0 commit comments