0
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
これは何を意味するのでしょうか?エラーが発生してパフォーマンスが向上するのを防ぐためにできることは何ですか?