How does the callback function work in multiprocessing map_async?(回调函数在多处理 map_async 中如何工作?)
问题描述
调试代码花了我一晚上的时间,终于发现了这个棘手的问题.请看下面的代码.
It cost me a whole night to debug my code, and I finally found this tricky problem. Please take a look at the code below.
from multiprocessing import Pool
def myfunc(x):
return [i for i in range(x)]
pool=Pool()
A=[]
r = pool.map_async(myfunc, (1,2), callback=A.extend)
r.wait()
我以为我会得到 A=[0,0,1]
,但输出是 A=[[0],[0,1]]
.这对我来说没有意义,因为如果我有 A=[]
、A.extend([0])
和 A.extend([0,1])
会给我A=[0,0,1]
.回调可能以不同的方式工作.所以我的问题是如何获得 A=[0,0,1]
而不是 [[0],[0,1]]
?
I thought I would get A=[0,0,1]
, but the output is A=[[0],[0,1]]
. This does not make sense to me because if I have A=[]
, A.extend([0])
and A.extend([0,1])
will give me A=[0,0,1]
. Probably the callback works in a different way. So my question is how to get A=[0,0,1]
instead of [[0],[0,1]]
?
推荐答案
如果使用 map_async,则调用一次回调并返回结果 ([[0], [0, 1]]
).
Callback is called once with the result ([[0], [0, 1]]
) if you use map_async.
>>> from multiprocessing import Pool
>>> def myfunc(x):
... return [i for i in range(x)]
...
>>> A = []
>>> def mycallback(x):
... print('mycallback is called with {}'.format(x))
... A.extend(x)
...
>>> pool=Pool()
>>> r = pool.map_async(myfunc, (1,2), callback=mycallback)
>>> r.wait()
mycallback is called with [[0], [0, 1]]
>>> print(A)
[[0], [0, 1]]
使用 apply_async
如果您希望每次都调用回调.
Use apply_async
if you want callback to be called for each time.
pool=Pool()
results = []
for x in (1,2):
r = pool.apply_async(myfunc, (x,), callback=mycallback)
results.append(r)
for r in results:
r.wait()
这篇关于回调函数在多处理 map_async 中如何工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:回调函数在多处理 map_async 中如何工作?
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01