(self, request_id: int)
| 282 | return sorted(gpu_ids) |
| 283 | |
| 284 | def abort_request(self, request_id: int) -> None: |
| 285 | self.call_all_ray_workers("abort_request", |
| 286 | leader_only=True, |
| 287 | async_call=False, |
| 288 | request_id=request_id) |
| 289 | |
| 290 | def shutdown(self): |
| 291 | if hasattr(self, '_shutdown_event') and self._shutdown_event.is_set(): |
nothing calls this directly
no test coverage detected