我想在共享内存中使用一个numpy数组,以便与多处理模块一起使用。困难是像numpy数组一样使用它,而不仅仅是ctypes数组。
from multiprocessing import Process, Array
import scipy
def f(a):
a[0] = -a[0]
if __name__ == '__main__':
# Create the array
N = int(10)
unshared_arr = scipy.rand(N)
arr = Array('d', unshared_arr)
print "Originally, the first two elements of arr = %s"%(arr[:2])
# Create, start, and finish the child processes
p = Process(target=f, args=(arr,))
p.start()
p.join()
# Printing out the changed values
print "Now, the first two elements of arr = %s"%arr[:2]
这将产生如下输出:
Originally, the first two elements of arr = [0.3518653236697369, 0.517794725524976]
Now, the first two elements of arr = [-0.3518653236697369, 0.517794725524976]
可以ctypes方式访问该数组,例如arr[i]
说得通。但是,它不是一个numpy数组,因此我无法执行-1*arr
,或arr.sum()
。我想一个解决方案是将ctypes数组转换为numpy数组。但是(除了无法完成这项工作之外),我不相信会再共享它。
对于必须解决的常见问题,似乎将有一个标准解决方案。
subprocess
而是在询问multiprocessing
。