Replies: 1 comment 6 replies
-
@konn Have you tried to use |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm currently working on the tool to use dvc in a supercomputer cluster and want to use parallelism to utilise available resources in grid experiments.
It seems that
--jobs
option ofexp run
won't work at the present, and we have to usqueue start --jobs
instead.However, we could not find the way to wait all the queued jobs to finish (or fail) - the best approximation seems to parse the output of
queue start
and pass them toqueue logs -f
sequentially or parallely.We execute our experiments as a batch script scheduled to supercomputer cluster and we want to achieve this behaviour automatically. Is there any better way to wait all (or specified) jobs to finish?
Beta Was this translation helpful? Give feedback.
All reactions