Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/gpu/common/memory_management/
Dtypes_test.cc30 UsageGraph deps_graph; in TEST() local
31 UsageGraph reallocation_graph = ReallocationGraph(deps_graph); in TEST()
36 UsageGraph deps_graph = {{1}, {}}; in TEST() local
37 UsageGraph reallocation_graph = ReallocationGraph(deps_graph); in TEST()
44 UsageGraph deps_graph = {{1}, {2}, {3}, {4}, {}}; in TEST() local
45 UsageGraph reallocation_graph = ReallocationGraph(deps_graph); in TEST()
55 UsageGraph deps_graph = {{1}, {2, 3, 4}, {7}, {5}, {7}, {6}, in TEST() local
57 UsageGraph reallocation_graph = ReallocationGraph(deps_graph); in TEST()
Dtypes.cc27 void BFS(size_t start, const UsageGraph& deps_graph, in BFS() argument
30 std::vector<char> is_visited(deps_graph.size(), in BFS()
38 for (const auto& to_vertex : deps_graph[from_vertex]) { in BFS()
50 UsageGraph ReallocationGraph(const UsageGraph& deps_graph) { in ReallocationGraph() argument
51 size_t num_vertices = deps_graph.size(); in ReallocationGraph()
55 const std::vector<size_t>& children = deps_graph[root]; in ReallocationGraph()
61 BFS(child, deps_graph, &num_visits); in ReallocationGraph()
Dtypes.h77 UsageGraph ReallocationGraph(const UsageGraph& deps_graph);