Closed simetenn closed 6 years ago
The current problem is that multiprocess fails with unable to pickle RLock object if the function to run is from another module, such as parallel.run from import .parallel Parallel. If Parallel is in the same file it works.
parallel.run
import .parallel Parallel
This is fixed in version 0.9.4.
The current problem is that multiprocess fails with unable to pickle RLock object if the function to run is from another module, such as
parallel.run
fromimport .parallel Parallel
. If Parallel is in the same file it works.