gpt4 book ai didi

python - 使用 ProcessPoolExecutor 进行并行处理

转载 作者:太空宇宙 更新时间:2023-11-04 00:27:49 27 4
gpt4 key购买 nike

我有一大堆必须以某种方式处理的元素。我知道可以通过以下方式使用多处理过程来完成:

pr1 = Process(calculation_function, (args, ))
pr1.start()
pr1.join()

所以我可以创建假设 10 个进程并将参数按 10 分割传递给 args。然后工作就完成了。

但我不想手动创建它并手动计算它。相反,我想使用 ProcessPoolExecutor我是这样做的:

executor = ProcessPoolExecutor(max_workers=10)
executor.map(calculation, (list_to_process,))

计算是我完成这项工作的功能。

def calculation(list_to_process):
for element in list_to_process:
# .... doing the job

list_to_process 是我要处理的列表。

但是在运行这段代码之后,循环迭代只进行了一次。我以为

executor = ProcessPoolExecutor(max_workers=10)
executor.map(calculation, (list_to_process,))

和这个一样10次:

pr1 = Process(calculation, (list_to_process, ))
pr1.start()
pr1.join()

但是好像不对。

ProcessPoolExecutor如何实现真正的多进程?

最佳答案

calculation 函数中移除 for 循环。现在您正在使用 ProcessPoolExecutor.mapmap() 调用您的循环,区别在于列表中的每个元素是发送到不同的进程。例如

def calculation(item):
print('[pid:%s] performing calculation on %s' % (os.getpid(), item))
time.sleep(5)
print('[pid:%s] done!' % os.getpid())
return item ** 2

executor = ProcessPoolExecutor(max_workers=5)
list_to_process = range(10)
result = executor.map(calculation, list_to_process)

您会在终端中看到如下内容:

[pid:23988] performing calculation on 0
[pid:10360] performing calculation on 1
[pid:13348] performing calculation on 2
[pid:24032] performing calculation on 3
[pid:18028] performing calculation on 4
[pid:23988] done!
[pid:23988] performing calculation on 5
[pid:10360] done!
[pid:13348] done!
[pid:10360] performing calculation on 6
[pid:13348] performing calculation on 7
[pid:18028] done!
[pid:24032] done!
[pid:18028] performing calculation on 8
[pid:24032] performing calculation on 9
[pid:23988] done!
[pid:10360] done!
[pid:13348] done!
[pid:18028] done!
[pid:24032] done!

虽然事件的顺序实际上是随机的。返回值(至少在我的 Python 版本中)实际上是一个 itertools.chain。出于某种原因反对。但这是一个实现细节。您可以将结果作为列表返回,例如:

>>> list(result)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

在您的示例代码中,您传递了一个单元素元组 (list_to_process,),这样只会将您的完整列表传递给一个进程。

关于python - 使用 ProcessPoolExecutor 进行并行处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46863932/

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