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/pack/pack_types.h
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,6 @@
6
6
*
7
7
* Defines core data structures used in packing
8
8
*/
9
-
#include<map>
10
-
#include<unordered_map>
11
-
#include<vector>
12
-
13
9
#include"arch_types.h"
14
10
#include"atom_netlist_fwd.h"
15
11
@@ -59,7 +55,7 @@ struct t_pb_stats {
59
55
this high fanout net to determine the
60
56
next candidate atom */
61
57
bool explore_transitive_fanout; /* If no marked candidate molecules and no high fanout nets to determine next candidate molecule then explore molecules on transitive fanout */
62
-
std::unordered_map<AtomBlockId, t_pack_molecule *> transitive_fanout_candidates; // Holding trasitive fanout candidates key: root block id of the molecule, value: pointer to the molecule
58
+
std::unordered_set<t_pack_molecule *> transitive_fanout_candidates; // Holding trasitive fanout candidates key: root block id of the molecule, value: pointer to the molecule
63
59
64
60
/* How many pins of each atom net are contained in the *
0 commit comments