Close. Args: writer: TODO.
(self, writer=None)
| 747 | ) |
| 748 | |
| 749 | def close(self, writer=None): |
| 750 | |
| 751 | """Close. |
| 752 | |
| 753 | Args: |
| 754 | writer: TODO. |
| 755 | """ |
| 756 | if self.use_ddp or self.use_fsdp: |
| 757 | dist.barrier() |
| 758 | |
| 759 | if writer is not None: |
| 760 | writer.close() |
| 761 | |
| 762 | if self.use_ddp or self.use_fsdp: |
| 763 | torch.distributed.destroy_process_group() |
no outgoing calls
no test coverage detected