-
Notifications
You must be signed in to change notification settings - Fork 450
Closed
Labels
Description
The following script was working on 0.10.0:
from joblib import Parallel, delayed
def twice(a):
return 2 * a
def run(method, a):
return method(a)
if __name__ == '__main__':
methods = [twice, ]
results = Parallel(n_jobs=2)(delayed(run)(
method=method, a=10) for method in methods)Now it returns :
Traceback (most recent call last):
File "/cal/homes/tdupre/work/src/joblib/joblib/externals/loky/process_executor.py", line 338, in _process_worker
call_item = call_queue.get(block=True, timeout=timeout)
File "/cal/homes/tdupre/miniconda3/envs/py36/lib/python3.6/multiprocessing/queues.py", line 113, in get
return _ForkingPickler.loads(res)
AttributeError: Can't get attribute 'twice' on <module 'joblib.externals.loky.backend.popen_loky_posix' from '/cal/homes/tdupre/work/src/joblib/joblib/externals/loky/backend/popen_loky_posix.py'>
Traceback (most recent call last):
File "test.py", line 17, in <module>
method=method, a=10) for method in methods)
File "/cal/homes/tdupre/work/src/joblib/joblib/parallel.py", line 814, in __call__
self.retrieve()
File "/cal/homes/tdupre/work/src/joblib/joblib/parallel.py", line 716, in retrieve
self._output.extend(job.get(timeout=self.timeout))
File "/cal/homes/tdupre/work/src/joblib/joblib/_parallel_backends.py", line 402, in wrap_future_result
return future.result(timeout=timeout)
File "/cal/homes/tdupre/work/src/joblib/joblib/externals/loky/_base.py", line 431, in result
return self.__get_result()
File "/cal/homes/tdupre/work/src/joblib/joblib/externals/loky/_base.py", line 382, in __get_result
raise self._exception
joblib.externals.loky.process_executor.BrokenExecutor: A process in the process pool was terminated abruptly while the future was running or pending.A git bisect leads to #516
Reactions are currently unavailable