Home
last modified time | relevance | path

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

/aosp_15_r20/external/tensorflow/tensorflow/core/framework/
H A Dgraph_def_util.cc216 std::vector<const FunctionDef*> functions_to_process; // A subset of used_ops in OpsUsedByGraph() local
218 const auto mark_op_as_used = [&used_ops, &functions_to_process, in OpsUsedByGraph()
224 functions_to_process.push_back(it->second); in OpsUsedByGraph()
231 while (!functions_to_process.empty()) { in OpsUsedByGraph()
232 const FunctionDef* fun = functions_to_process.back(); in OpsUsedByGraph()
233 functions_to_process.pop_back(); in OpsUsedByGraph()
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Dmeta_graph.py153 functions_to_process = [] # A subset of used_ops
157 functions_to_process.append(name_to_function[op])
167 while functions_to_process:
168 fun = functions_to_process.pop()