MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Run

Method Run

tensorflow/compiler/xla/service/flatten_call_graph.cc:117–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115} // namespace
116
117StatusOr<bool> FlattenCallGraph::Run(HloModule* module) {
118 XLA_VLOG_LINES(3, "Before flatten call graph:\n" + module->ToString());
119
120 std::unique_ptr<CallGraph> call_graph = CallGraph::Build(module);
121 TF_RETURN_IF_ERROR(call_graph->VisitNodes(FlattenNode));
122
123 XLA_VLOG_LINES(3, "After flatten call graph:\n" + module->ToString());
124 return true;
125}
126
127} // namespace xla

Callers

nothing calls this directly

Calls 2

VisitNodesMethod · 0.80
ToStringMethod · 0.45

Tested by

no test coverage detected