Vorrei utilizzare un array numpy nella memoria condivisa da utilizzare con il modulo multiprocessing. La difficoltà è usarlo come un array numpy e non solo come array 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]
Questo produce output come:
Originally, the first two elements of arr = [0.3518653236697369, 0.517794725524976]
Now, the first two elements of arr = [-0.3518653236697369, 0.517794725524976]
È possibile accedere all'array in un modo ctypes, ad esempio arr[i]
ha senso. Tuttavia, non è un array numpy e non posso eseguire operazioni come -1*arr
, o arr.sum()
. Suppongo che una soluzione sarebbe convertire l'array ctypes in un array numpy. Tuttavia (oltre a non essere in grado di farlo funzionare), non credo che sarebbe più condiviso.
Sembra che ci sarebbe una soluzione standard a quello che deve essere un problema comune.
subprocess
piuttosto che multiprocessing
.