码迷,mamicode.com
首页 > 编程语言 > 详细

python多进程多维数组数据传递example

时间:2018-04-16 18:26:22      阅读:535      评论:0      收藏:0      [点我收藏+]

标签:numpy   []   art   roc   维数   get   myarray   size   after   

import multiprocessing as mp
import numpy as np
def worker(size, idx, arr):
    array = np.zeros((size,size,size))
    print(idx)
    array[idx[0],idx[1],idx[2]] = 100
    for slice in range(size):
        for row in range(size):            
            arr[slice*size*size+row*size:slice*size*size+row*size+size] = array[slice, row, :]  
 

 
if __name__==__main__:
    size = 3
    myArray_list = []
    for i in range(9):
        myArray_list.append(mp.Array(f, size*size*size))
    ps = [mp.Process(target=worker, args=(size, [x%3,x%3,x%3], myArray_list[x])) for x in range(9)]
    for p in ps:
        p.start()
    for p in ps:
        p.join()
 
    for x in range(9):
        print(x)
        res = np.array(myArray_list[x])
        res1 = res.reshape((size,size,size)) 
        print(res1)
        print(res1[1,2,0])
        
    print(after all workers finished)

多进程数据同步不能用global,因为不能跨进程存取,必须要用Multiprocessing的queue, Value, Array, Rawarray来做数值传递。

而且这个传递不支持多维数组,只支持一维的,所以前后要自己转换一下。

python多进程多维数组数据传递example

标签:numpy   []   art   roc   维数   get   myarray   size   after   

原文地址:https://www.cnblogs.com/zhanfeng-xing/p/8856684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!