Home
last modified time | relevance | path

Searched refs:hashed_peers_ (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dsig_node.cc34 hashed_peers_.clear(); in CopyLinks()
79 hashed_peers_.emplace_back(HashedPeer(entry.second.unique_hash, peer)); in CopyLinksPass2()
97 for (const auto& entry : hashed_peers_) { in ComputeTopoHash0()
126 if (!hashed_peers_.empty()) { in ComputeTopoHash()
127 size_t last_link_hash = hashed_peers_[0].link_hash; in ComputeTopoHash()
130 for (const auto& entry : hashed_peers_) { in ComputeTopoHash()
179 if (hashed_peers_.size() != other.hashed_peers_.size()) { in operator ==()
183 for (auto it1 = hashed_peers_.begin(), it2 = other.hashed_peers_.begin(); in operator ==()
184 it1 != hashed_peers_.end(); ++it1, ++it2) { in operator ==()
207 for (const auto& entry : nodes[n]->hashed_peers_) { in ToString()
[all …]
Dsig_node.h147 const HashedPeerVector& hashed_peers() const { return hashed_peers_; } in hashed_peers()
219 HashedPeerVector hashed_peers_; variable
Dsig_node_test.cc98 return node->hashed_peers_; in RefHashedPeers()