Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/graph/
Dwhile_context.cc22 std::vector<Node*> exit_nodes, in WhileContext() argument
28 exit_nodes_(std::move(exit_nodes)), in WhileContext()
Dwhile_context.h38 std::vector<Node*> exit_nodes, OutputTensor cond_output,
44 const std::vector<Node*>& exit_nodes() const { return exit_nodes_; } in exit_nodes() function
Dgraph.cc919 std::vector<Node*> exit_nodes, in AddWhileContext() argument
926 WhileContext(frame_name, std::move(enter_nodes), std::move(exit_nodes), in AddWhileContext()
Dgraph.h729 std::vector<Node*> exit_nodes,
/external/tensorflow/tensorflow/core/tfrt/utils/
Dtfrt_graph_execution_state.cc551 absl::flat_hash_set<const NodeDef*> exit_nodes; in PruneGraphDef() local
555 exit_nodes.insert(&node); in PruneGraphDef()
571 for (const NodeDef* exit_node : exit_nodes) { in PruneGraphDef()
/external/tensorflow/tensorflow/cc/framework/
Dgradients.cc414 if (backprops.size() < while_ctx->exit_nodes().size()) return OkStatus(); in ProcessWhileLoop()
421 for (Node* n : while_ctx->exit_nodes()) dy.push_back(backprops[n]); in ProcessWhileLoop()