Is it possible to run different simulations automatically one after the other?
Best Answer
-
If you are running locally and want to run a number of jobs, you can queue jobs using compute console: set maximum number of jobs to run in parallel to the value you want and any additional jobs will be queued on submission and then run when the previous one finishes. If you are running on a cluster or similar, then that would normally be handled by a queue manager of some sort (e.g. pbs) but you can also just put your runs sequentially into a bash script as a very rudimentary way of queuing them.
1
Answers
-
If you are running locally and want to run a number of jobs, you can queue jobs using compute console: set maximum number of jobs to run in parallel to the value you want and any additional jobs will be queued on submission and then run when the previous one finishes. If you are running on a cluster or similar, then that would normally be handled by a queue manager of some sort (e.g. pbs) but you can also just put your runs sequentially into a bash script as a very rudimentary way of queuing them.
1