Multiple parallel calcs using Java API
Summary
Multiple parallel calcs using Java APIContent
Hello I am trying to write a Jython script. I want it to launch multiple calculations at the same time. Till now, in my other scripts I have been doing the following:
for calc in calc_list:
ess_cube.calculate(calc)
this will run all the calcs in 'calc_list' but in serial order. How do I launch all those at the same time? I could not find that option in the API docs. Googling it just gives me a load of information about calcparallel setting
0