可以将 concurrent.futures (ProcessPoolExecutor) 与 pathos 一起使用吗?
问这个是因为当我尝试使用时:
with concurrent.futures.ProcessPoolExecutor() as executor:
... executor.map()
我会得到:
PicklingError: Can't pickle : attribute lookup builtin .function failed
我知道我们可以使用 pathos.multiprocess 来代替默认的多进程,并解决像这样的一些问题,问题是当我尝试使用期货实现并行处理时,我无法设置解决方案来修复 pickle 错误感伤。
任何想法 ?
谢谢。