(self, group: DistributedProcessGroup | None = None, **kwargs)
| 147 | torch_dist.broadcast(tensor, src, group, **kwargs) |
| 148 | |
| 149 | def barrier(self, group: DistributedProcessGroup | None = None, **kwargs): |
| 150 | torch_dist.barrier(group, **kwargs) |
| 151 | |
| 152 | def new_group(self, ranks: list[int], **kwargs) -> DistributedProcessGroup | None: |
| 153 | return torch_dist.new_group(ranks, **kwargs) |