I'm using SciPys integrate.ode
module to integrate a large system (~8000 equations) of ODEs. Because I always have to do several of those with different parameters I parallelized it using the multiprocessing
module, which seems to be working fine. However, the documentation of SciPy says:
Warning:
This integrator is not re-entrant. You cannot have two ode instances using the “vode” integrator at the same time.
So now my question is if I can trust my results from the parallel runs? Or does this Waring also apply to instances in different processes?