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

Method RunOnModuleGroup

tensorflow/compiler/xla/service/hlo_pass_pipeline.cc:156–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156StatusOr<bool> HloPassPipeline::RunOnModuleGroup(HloModuleGroup* module_group) {
157 run_called_ = true;
158
159 VLOG(1) << "Running HLO pass pipeline on module group "
160 << module_group->name() << ": " << name();
161
162 if (module_group->modules().empty()) {
163 VLOG(1) << "Module group is empty. Nothing to do.";
164 return false;
165 }
166
167 return RunPassesInternal(
168 module_group,
169 GetEnabledPasses(module_group->module(0).config().debug_options()));
170}
171
172} // namespace xla

Callers

nothing calls this directly

Calls 6

nameFunction · 0.85
modulesMethod · 0.80
nameMethod · 0.65
emptyMethod · 0.45
configMethod · 0.45
moduleMethod · 0.45

Tested by

no test coverage detected