Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Ddefuser.cc100 [&](const CallGraphNode& call_graph_node) -> Status { in Run() argument
101 if (call_graph_node.computation()->IsFusionComputation()) { in Run()
102 TF_RET_CHECK(call_graph_node.caller_callsites().size() == 1); in Run()
104 call_graph_node.caller_callsites()[0].instruction(); in Run()
Dhlo_alias_analysis.cc92 const CallGraphNode& call_graph_node = in ComputeWhileAliasedValues() local
94 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeWhileAliasedValues()
97 CHECK_EQ(call_graph_node.caller_callsites().size(), 1); in ComputeWhileAliasedValues()
113 const CallGraphNode& call_graph_node = in ComputeWhileAliasedValues() local
116 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeWhileAliasedValues()
120 CHECK_EQ(call_graph_node.caller_callsites().size(), 1) in ComputeWhileAliasedValues()
146 const CallGraphNode& call_graph_node = in ComputeConditionalAliasedValues() local
148 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeConditionalAliasedValues()
151 CHECK_EQ(call_graph_node.caller_callsites().size(), 1); in ComputeConditionalAliasedValues()
Dhlo_liveness_analysis.cc195 const CallGraphNode& call_graph_node = in PropagateLivenessToParameterCallers() local
197 if (call_graph_node.context() == CallContext::kControlFlow) { in PropagateLivenessToParameterCallers()
198 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in PropagateLivenessToParameterCallers()
224 const CallGraphNode& call_graph_node = in PropagateLivenessThroughControlFlow() local
226 if (call_graph_node.context() == CallContext::kControlFlow) { in PropagateLivenessThroughControlFlow()
227 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in PropagateLivenessThroughControlFlow()
Dhlo_dataflow_analysis.cc890 const CallGraphNode& call_graph_node = in UpdateParameterValueSet() local
895 if (call_graph_node.context() == CallContext::kEmbedded || in UpdateParameterValueSet()
896 call_graph_node.caller_callsites().empty()) { in UpdateParameterValueSet()
899 CHECK_EQ(call_graph_node.context(), CallContext::kControlFlow); in UpdateParameterValueSet()
903 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in UpdateParameterValueSet()
1278 const CallGraphNode& call_graph_node = in Propagate() local
1280 if (call_graph_node.context() == CallContext::kControlFlow) { in Propagate()
1293 const CallGraphNode& call_graph_node = in Propagate() local
1295 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in Propagate()
1304 } else if (call_graph_node.context() == CallContext::kControlFlow) { in Propagate()
[all …]
Dhlo_rematerialization.cc1933 const CallGraphNode& call_graph_node = call_graph_->GetNode(computation); in RematerializeComputation() local
2012 const CallSite* callsite = call_graph_node.GetCallSite(instruction); in RematerializeComputation()