Home
last modified time | relevance | path

Searched refs:GraphViewInternal (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view.h43 class MutableGraphView : public internal::GraphViewInternal<GraphDef, NodeDef> {
45 explicit MutableGraphView(GraphDef* graph) : GraphViewInternal(graph) { in MutableGraphView()
51 using GraphViewInternal::GetFanout;
55 using GraphViewInternal::GetFanin;
59 using GraphViewInternal::GetRegularFanin;
Dgraph_view.h69 class GraphViewInternal {
319 explicit GraphViewInternal(GraphDefT* graph) : graph_(graph) {} in GraphViewInternal() function
401 : public internal::GraphViewInternal<const GraphDef, const NodeDef> {
403 explicit GraphView(const GraphDef* graph) : GraphViewInternal(graph) { in GraphView()
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view_internal.h276 class GraphViewInternal {
282 explicit GraphViewInternal(GraphDefT* graph) : graph_(graph) {} in GraphViewInternal() function
283 virtual ~GraphViewInternal() {} in ~GraphViewInternal()
285 bool operator==(const GraphViewInternal& other) const {
Dgraph_view.h114 class GraphView : public internal::GraphViewInternal<NodeView, FaninView,
381 : public internal::GraphViewInternal<MutableNodeView, MutableFaninView,
Dgraph_view.cc85 : GraphViewInternal(graph) { in GraphView()
465 : GraphViewInternal(graph), mutation_(Mutation(this)) { in MutableGraphView()