Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph.cc211 CallGraphNode& callee_node = GetNode(callee); in SetCallContexts() local
223 UnionContexts(context_to_add, callee_node.context()); in SetCallContexts()
225 if (new_context != callee_node.context()) { in SetCallContexts()
227 callee_node.set_context(new_context); in SetCallContexts()
228 worklist.push(&callee_node); in SetCallContexts()
262 CallGraphNode& callee_node = GetNode(callee); in SetNodeDepths() local
263 if (callee_node.depth() < node->depth() + 1) { in SetNodeDepths()
264 callee_node.set_depth(node->depth() + 1); in SetNodeDepths()
265 worklist.push(&callee_node); in SetNodeDepths()