Print, but only on rank 0.
(*args, **kwargs)
| 38 | |
| 39 | |
| 40 | def rank0_print(*args, **kwargs): |
| 41 | """Print, but only on rank 0.""" |
| 42 | if not dist.is_initialized() or dist.get_rank() == 0: |
| 43 | print(*args, **kwargs) |
| 44 | |
| 45 | |
| 46 | def get_local_dir(prefixes_to_resolve: List[str]) -> str: |
no outgoing calls
no test coverage detected