gpt4 book ai didi

python - 如何等待所有进程结束

转载 作者:行者123 更新时间:2023-12-03 13:16:01 25 4
gpt4 key购买 nike

我已经并行运行了两个Process实例:

from multiprocessing import Process

def foobar():
return x*x

def barfoo():
return x+x

thread_fb = Process(target = foobar, args=(3,)))
thread_bf = Process(target = barfoo, args=(3,)))
thread_fb.start(); thread_bf.start()
thread_fb.wait(); thread_bf.wait()

它引发了此错误:
AttributeError: 'Process' object has no attribute 'wait'

如何等待所有multiprocessing.Process结束?

使用threading其他多处理/线程库时的等效项是什么?

最佳答案

使用 Process.join ,本质上是为“wait”使用行话:

thread_fb.start()
thread_bf.start()
thread_fb.join()
thread_bf.join()

关于python - 如何等待所有进程结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31794277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com