"csrc/quantization/git@developer.sourcefind.cn:norm/vllm.git" did not exist on "1b14cd542b8f865e63b1481a98bc635466de49c2"
Commit 5923f91a authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

add warning for missing Ctrl+C handling in DistributedRuntime

parent 1efbda52
...@@ -69,8 +69,12 @@ class DistributedSimpleRuntime(Runtime): ...@@ -69,8 +69,12 @@ class DistributedSimpleRuntime(Runtime):
asyncio.run(self.do_run(run)) asyncio.run(self.do_run(run))
def interrupt(self): def interrupt(self):
return super().interrupt()
# TODO implement this # TODO implement this
super().interrupt()
print(
'Ctrl+C handling for DistributedRuntime not yet implemented. '
'You need to kill the processes manually.'
)
def auto_dist( def auto_dist(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment