"...composable_kernel.git" did not exist on "823657ed120144943b7db87c07fe3e647128db56"
Commit 7ec0b8a0 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

experiments: also do cleanup in parallel

parent f216d1ab
...@@ -285,8 +285,10 @@ class ExperimentBaseRunner(object): ...@@ -285,8 +285,10 @@ class ExperimentBaseRunner(object):
await sc.wait() await sc.wait()
# remove all sockets # remove all sockets
scs = []
for (exec,sock) in self.sockets: for (exec,sock) in self.sockets:
await exec.rmtree(sock) scs.append(exec.rmtree(sock))
await asyncio.wait(scs)
# add all simulator components to the output # add all simulator components to the output
for sim,sc in self.running: for sim,sc in self.running:
......
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