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
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@
6
6
*
7
7
* Defines core data structures used in packing
8
8
*/
9
+
#include<map>
10
+
#include<unordered_map>
11
+
#include<vector>
12
+
9
13
#include"arch_types.h"
10
14
#include"atom_netlist_fwd.h"
11
15
@@ -55,7 +59,7 @@ struct t_pb_stats {
55
59
this high fanout net to determine the
56
60
next candidate atom */
57
61
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 */
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
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
59
63
60
64
/* How many pins of each atom net are contained in the *
0 commit comments