(cls, task_group, setup_net_list=None)
| 188 | |
| 189 | @classmethod |
| 190 | def _compile_task_group(cls, task_group, setup_net_list=None): |
| 191 | with Cluster(): |
| 192 | task = task_group.to_task() |
| 193 | plan = core.Plan('task_group_plan') |
| 194 | plan.AddStep(task.get_step()) |
| 195 | return (plan, task.output_list(), task.workspace_type()) |
| 196 | |
| 197 | def _run_compiled(self, compiled): |
| 198 | plan, output_list, workspace_type = compiled |
nothing calls this directly
no test coverage detected