gpt4 book ai didi

具有多个参数和 void 函数的 Python 多处理池

转载 作者:行者123 更新时间:2023-12-05 06:11:14 26 4
gpt4 key购买 nike

我正在尝试在不返回任何内容的 void 函数上使用具有多个参数的 Python 多处理库。这是我的最小工作示例。

import numpy as np
from multiprocessing import Pool

dim1 = 2
dim2 = 2

test1 = np.zeros((dim1,dim2))
test2 = np.zeros((dim1,dim2))

iteration = []
for i in range(0,dim1):
for j in range(0,dim2):
iteration.append((i,j))

def testing(num1,num2):
test1[num1,num2] = 1
test2[num1,num2] = 2

if __name__ == '__main__':
pool = Pool(processes=4)
pool.starmap(testing, iteration)

print(test1)
print(test2)

这里的问题是变量 test1 和 test2 在第一次初始化时打印零数组。相反,我为 test1 做的是 1 的数组和 test2 的 2 的数组。我要什么代码

if __name__ == '__main__':
pool = Pool(processes=4)
pool.starmap(testing, iteration)

要做的是:

testing(0,0)
testing(1,0)
testing(0,1)
testing(1,1)

我看过一些相关的帖子,比如 this .这篇文章和我的不同之处在于我的函数是一个空函数,而不是返回变量,我希望函数只更改变量的值。

最佳答案

使用全局数组更新跨多个进程的数组而不返回结果:

  • 使用multiprocessing.Array类来存储数组数据。
  • 在创建池时使用 initializer 参数将数组传递给进程。

请注意,Array 是一维的,因此必须重新整形以进行更新和显示。

试试这段代码:

import numpy as np
from multiprocessing import Pool, Array

dim1 = 2
dim2 = 2

def init(tt1,tt2): # receive shared arrays
global test1,test2
test1,test2 = tt1,tt2

def testing(num1,num2):
t1 = np.frombuffer(test1.get_obj()).reshape((dim1, dim2)) # need to reshape to 2D array
t2 = np.frombuffer(test2.get_obj()).reshape((dim1, dim2))
t1[num1,num2] = 1
t2[num1,num2] = 2

if __name__ == '__main__':
tt1 = Array('d', dim1*dim2) # 1 dimensional arrays
tt2 = Array('d', dim1*dim2)

iteration = []
for i in range(0,dim1):
for j in range(0,dim2):
iteration.append((i,j))

pool = Pool(processes=4, initializer=init, initargs=(tt1,tt2)) # pass shared arrays to processes
pool.starmap(testing, iteration)

# still have access to the shared arrays
t1final = np.frombuffer(tt1.get_obj()).reshape((dim1, dim2))
t2final = np.frombuffer(tt2.get_obj()).reshape((dim1, dim2))
print(t1final, t2final, sep='\n')

输出

[[1. 1.]
[1. 1.]]
[[2. 2.]
[2. 2.]]

关于具有多个参数和 void 函数的 Python 多处理池,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64076137/

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