Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 python 中使用 Pooling 时,每个进程是准确地创建自己的给定数据副本还是提取感兴趣区域?有没有办法限制这些进程只复制每个的兴趣区域?
你高估了多处理。它用于os.fork()创建新进程(速度很快),但随后它用于pickle来回传递所有数据。在 Windows 上,没有fork().
os.fork()
pickle
fork()