Revision history [back]
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.
You could use python's threading
module to make multiple calls to the CLI in parallel. The (For ruby, the subprocess
module can be used for the actual call. parallel
gem coupled with a would work nicely.)system
call
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.