ฉันต้องการใช้อาร์เรย์ 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