(self, *args, **kwargs)
| 680 | """PyTorch DeviceMesh-based mapping implementation""" |
| 681 | |
| 682 | def __init__(self, *args, **kwargs): |
| 683 | assert mpi_disabled( |
| 684 | ), "DeviceMeshTopology is only available in Ray orchestrator mode." |
| 685 | |
| 686 | super().__init__(*args, **kwargs) |
nothing calls this directly
no test coverage detected