First time here? Check out the Help page!
1 | initial version |
You could use python's threading
module to make multiple calls to the CLI in parallel. (For ruby, the parallel
gem would work nicely.)
You'll also need to specify a different run_directory
(and maybe others?) in the OSW so that the runs don't try to use the same directory -- or simply put the OSWs in different directories.
2 | No.2 Revision |
You could use python's threading
module to make multiple calls to the CLI in parallel. The subprocess
module can be used for the actual call. (For ruby, the parallel
gem coupled with a system
call would work nicely.)
You'll also need to specify a different run_directory
(and maybe others?) in the OSW so that the runs don't try to use the same directory -- or simply put the OSWs in different directories.