We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b2cc9 commit 4218cadCopy full SHA for 4218cad
vpr/src/base/clustered_netlist_utils.h
@@ -27,6 +27,12 @@ class ClusteredPinAtomPinsLookup {
27
vtr::vector<AtomPinId, ClusterPinId> atom_pin_connected_cluster_pin_;
28
};
29
30
+/*
31
+ * This lookup is used to see which atoms are in each cluster block.
32
+ * Getting the atoms inside of a cluster is an order k lookup.
33
+ * The data is initialized automatically upon creation of the object.
34
+ * The class should only be used after the clustered netlist is created.
35
+ */
36
class ClusterAtomsLookup {
37
public:
38
ClusterAtomsLookup();
@@ -36,6 +42,7 @@ class ClusterAtomsLookup {
42
void init_lookup();
43
44
private:
45
+ //Store the atom ids of the atoms inside each cluster
39
46
vtr::vector<ClusterBlockId, std::vector<AtomBlockId>> cluster_atoms;
40
47
41
48
#endif
0 commit comments