(self)
| 23 | world_size = 3 |
| 24 | |
| 25 | def test(self): |
| 26 | assert dist.is_initialized() |
| 27 | assert dist.get_world_size() == 3 |
| 28 | assert dist.get_rank() < 3 |
| 29 | |
| 30 | |
| 31 | # Demonstration of pytest's parameterization and fixtures |
nothing calls this directly
no test coverage detected