(self, group=None)
| 392 | return torch.distributed.get_rank(group=group) |
| 393 | |
| 394 | def get_world_size(self, group=None): |
| 395 | return torch.distributed.get_world_size(group=group) |
| 396 | |
| 397 | def is_initialized(self): |
| 398 | return torch.distributed.is_initialized() |
no outgoing calls