(self)
| 276 | return result |
| 277 | |
| 278 | def report_device_ids(self) -> list[str]: |
| 279 | gpu_ids = self.call_all_ray_workers("report_device_id", |
| 280 | leader_only=False, |
| 281 | async_call=False) |
| 282 | return sorted(gpu_ids) |
| 283 | |
| 284 | def abort_request(self, request_id: int) -> None: |
| 285 | self.call_all_ray_workers("abort_request", |
nothing calls this directly
no test coverage detected