()
| 43 | return True |
| 44 | |
| 45 | def get_world_size(): |
| 46 | if not is_dist_avail_and_initialized(): |
| 47 | return 1 |
| 48 | return dist.get_world_size() |
| 49 | |
| 50 | def get_rank(): |
| 51 | if not is_dist_avail_and_initialized(): |
nothing calls this directly
no test coverage detected