Home
last modified time | relevance | path

Searched refs:EdgeSet (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/core/graph/
Dedgeset.h31 class EdgeSet {
33 EdgeSet();
34 ~EdgeSet();
76 TF_DISALLOW_COPY_AND_ASSIGN(EdgeSet);
79 class EdgeSet::const_iterator {
81 typedef typename EdgeSet::value_type value_type;
82 typedef const typename EdgeSet::value_type& reference;
83 typedef const typename EdgeSet::value_type* pointer;
84 typedef typename EdgeSet::difference_type difference_type;
99 friend class EdgeSet;
[all …]
Dedgeset.cc20 std::pair<EdgeSet::const_iterator, bool> EdgeSet::insert(value_type value) { in insert()
52 EdgeSet::size_type EdgeSet::erase(key_type key) { in erase()
Dgraph.h137 const EdgeSet& in_edges() const { return in_edges_; } in in_edges()
138 const EdgeSet& out_edges() const { return out_edges_; } in out_edges()
276 EdgeSet in_edges_;
277 EdgeSet out_edges_;
787 NeighborIter(EdgeSet::const_iterator iter, bool incoming);
795 EdgeSet::const_iterator iter_;
827 inline NeighborIter::NeighborIter(EdgeSet::const_iterator iter, bool incoming) in NeighborIter()
Dedgeset_test.cc58 EdgeSet eset_;
Dmkl_layout_pass.cc3438 std::stack<EdgeSet::const_iterator> current_neighbor_stack; in CheckForNodeFusion()
/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc1255 const Edge* GetTheOnlyDataEdge(const EdgeSet& edges) { in GetTheOnlyDataEdge()