【发布时间】:2018-04-21 10:52:34
【问题描述】:
我在跑步
from pathos.multiprocessing import ProcessingPool
pool = ProcessingPool(4)
pool.map(...)
在运行时打印以下内容:
not in depth 2
not in depth 3
not in depth 1
not in depth 2
not in depth 3
not in depth 1
not in depth 2
not in depth 3
not in depth 1
这是什么意思?这是否意味着我可以采取任何措施来防止错误提高性能?
【问题讨论】:
标签: python python-multiprocessing pathos