Home
last modified time | relevance | path

Searched refs:graph_cycles (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/graphcycles/
Dgraphcycles_test.cc201 tensorflow::GraphCycles graph_cycles; in TEST() local
216 PrintGCEdges(&nodes, &graph_cycles); in TEST()
219 ASSERT_EQ(reinterpret_cast<intptr_t>(graph_cycles.GetNodeData(i)), in TEST()
223 CheckEdges(&nodes, &edges, &graph_cycles); in TEST()
224 CheckTransitiveClosure(&nodes, &edges, &graph_cycles); in TEST()
230 int new_node = graph_cycles.NewNode(); in TEST()
233 ASSERT_EQ(nullptr, graph_cycles.GetNodeData(new_node)); in TEST()
234 graph_cycles.SetNodeData( in TEST()
252 graph_cycles.RemoveNode(node); in TEST()
270 if (graph_cycles.InsertEdge(nodes[from], nodes[to])) { in TEST()
[all …]
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc770 GraphCycles graph_cycles; in GetInputPreds() local
772 CreateCycleDetectionGraph(&graph_, &graph_cycles).status()); in GetInputPreds()