I'm running
from pathos.multiprocessing import ProcessingPool
pool = ProcessingPool(4)
pool.map(...)
and the following gets printed in run time:
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
What does this mean? Does it imply any steps I can do to prevent errors increase performance?