我在这个网站的某个地方找到了以下示例:
import multiprocessing
import ctypes
import numpy as np
shared_array_base = multiprocessing.Array(ctypes.c_double, 10*10)
shared_array = np.ctypeslib.as_array(shared_array_base.get_obj())
shared_array = shared_array.reshape(10, 10)
# No copy was made
assert shared_array.base.base is shared_array_base.get_obj()
# Parallel processing
def my_func(i, def_param=shared_array):
shared_array[i,:] = i
if __name__ == '__main__':
pool = multiprocessing.Pool(processes=4)
pool.map(my_func, range(10))
print shared_array
上面的代码工作正常,但如果我想将一个数组添加到共享数组中,比如 shared_array += some_other_array (而不是上面的 shared_array[i,;] = i)我得到
分配前引用的局部变量“shared_array”
任何想法为什么我不能这样做?