Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
5923f91a
"...resnet50_tensorflow.git" did not exist on "c9d2886ab845371d1a4a2c60fe9500890c986f6b"
Commit
5923f91a
authored
Sep 17, 2022
by
Jonas Kaufmann
Committed by
Antoine Kaufmann
Sep 17, 2022
Browse files
add warning for missing Ctrl+C handling in DistributedRuntime
parent
1efbda52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
experiments/simbricks/runtime/distributed.py
experiments/simbricks/runtime/distributed.py
+5
-1
No files found.
experiments/simbricks/runtime/distributed.py
View file @
5923f91a
...
...
@@ -69,8 +69,12 @@ class DistributedSimpleRuntime(Runtime):
asyncio
.
run
(
self
.
do_run
(
run
))
def
interrupt
(
self
):
return
super
().
interrupt
()
# TODO implement this
super
().
interrupt
()
print
(
'Ctrl+C handling for DistributedRuntime not yet implemented. '
'You need to kill the processes manually.'
)
def
auto_dist
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment