我正在使用我在 Python 中使用字典和计数器构建的稀疏张量数组操作。我想让并行使用这个数组操作成为可能。底线是我最终在每个节点上都有计数器,我想使用 MPI.Allreduce (或另一个不错的解决方案)将它们加在一起。例如,使用 Counters 可以做到这一点
A = Counter({a:1, b:2, c:3})
B = Counter({b:1, c:2, d:3})
这样
C = A+B = Counter({a:1, b:3, c:5, d:3}).
我想做同样的操作,但要使用所有相关节点,
MPI.Allreduce(send_counter, recv_counter, MPI.SUM)
但是,MPI 似乎无法识别字典/计数器上的此操作,从而引发错误expecting a buffer or a list/tuple
。我最好的选择是“用户定义的操作”,还是有办法让 Allreduce 添加计数器?谢谢,
编辑(2015 年 7 月 14 日):我试图为字典创建用户操作,但存在一些差异。我写了以下
def dict_sum(dict1, dict2, datatype):
for key in dict2:
try:
dict1[key] += dict2[key]
except KeyError:
dict1[key] = dict2[key]
当我告诉 MPI 关于这个功能时,我这样做了:
dictSumOp = MPI.Op.Create(dict_sum, commute=True)
在代码中我用它作为
the_result = comm.allreduce(mydict, dictSumOp)
然而,它扔了unsupported operand '+' for type dict
。所以我写了
the_result = comm.allreduce(mydict, op=dictSumOp)
现在它抛出dict1[key] += dict2[key]
TypeError: 'NoneType' object has no attribute '__getitem__'
了很明显它想知道那些东西是字典吗?我怎么知道他们确实有类型字典?