(*, platform: str, mesh_shape: MeshShape)
| 56 | |
| 57 | |
| 58 | def _is_supported(*, platform: str, mesh_shape: MeshShape) -> bool: |
| 59 | return is_supported_platform(platform) and is_supported_mesh_shape(mesh_shape) |
| 60 | |
| 61 | |
| 62 | def _ordered_devices(mesh_shape: MeshShape, process_shape: MeshShape) -> np.ndarray: |
no test coverage detected