You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if/how it is possible, to wait for only the completion of some sub-tasks but not all. If I am reading the code correct, the torc.wait() function does not use arguments, is that right?
I was wondering if/how it is possible, to wait for only the completion of some sub-tasks but not all. If I am reading the code correct, the
torc.wait()function does not use arguments, is that right?I was hoping to do something along the lines of
task1 = torc.submit(...).task2 = torc.submit(...).torc.wait(task1)so that the code only has to wait for
task1to complete but can continue whiletask2is still running. Is that possible?