我想在共享内存中使用一个 numpy 数组,以便与多处理模块一起使用。困难之处在于,它不仅仅是一个 ctype 数组,而是像一个 numpy 数组那样使用它。
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]
数组可以以 ctype 的方式访问,例如 arr[i]
是有意义的。但是,它不是一个数字数组,并且我不能执行诸如 -1*arr
或 arr.sum()
之类的操作。我认为解决方案是将 ctype 数组转换为 numpy 数组。然而(除了不能使这个工作) ,我不相信它会被共享了。
似乎有一个标准的解决方案,什么必须是一个共同的问题。