gpt4 book ai didi

python - mpi4py | comm.bcast 不起作用

转载 作者:行者123 更新时间:2023-12-02 17:09:31 24 4
gpt4 key购买 nike

我正在编写一个简单的 python 脚本来测试 mpi4py。具体来说,我想从给定的处理器(例如 rank 0)广播一个标量和一个数组,以便所有其他处理器都可以在后续步骤中访问广播的标量和数组的值。

这是我到目前为止所做的:

from __future__ import division
from mpi4py import MPI
import numpy as np

comm = MPI.COMM_WORLD
nproc = comm.Get_size()
rank = comm.Get_rank()

if rank==0:
scal = 55.0
mat = np.array([[1,2,3],[4,5,6],[7,8,9]])

arr = np.ones(5)
result = 2*arr

comm.bcast([ result , MPI.DOUBLE], root=0)
comm.bcast( scal, root=0)
comm.bcast([ mat , MPI.DOUBLE], root=0)

for proc in range(1, 3):
if (rank == proc):
print "Rank: ", rank, ". Array is: ", result
print "Rank: ", rank, ". Scalar is: ", scal
print "Rank: ", rank, ". Matrix is: ", mat

但是,我收到以下错误:

NameError: name 'mat' is not defined
print "Rank: ", rank, ". Matrix is: ", mat

另外,在我的输出中(print "Rank: ", rank, ". Scalar is: ", scal and print "Rank: ", rank, ". Array is: ", arr), 我没有看到 scalarray 的值。我在这里错过了什么?我将非常感谢任何帮助。

最佳答案

我在这里看到两个错误:

  • 您的变量 scal 和您的 numpy 数组 matarrresults 仅在等级 0 上定义。它们应该在所有 MPI 等级上定义。事实上,由于数据在所有等级上广播,因此必须分配变量和 Numpy 数组来存储接收到的结果。
  • bcast 适用于 Python 对象,并经过 pickle(例如序列化)以便发送。 Bcast 适用于 Numpy 数组。因此,根据您发送/接收的内容相应地使用不同的调用。此外,他们必须被召集到所有队伍中。

因为我使用的是 Python 3,所以我还更正了 print 调用。然而,由于从 future

导入 print_function,您应该不会注意到 Python 2 的任何问题

最后,我建议你看看这里的 MPI4Py 教程:http://mpi4py.scipy.org/docs/usrman/tutorial.html .我认为它们涵盖了您可以使用 MPI4Py 执行的大部分操作。

这里有一些工作:

from __future__ import division, print_function
from mpi4py import MPI
import numpy as np

comm = MPI.COMM_WORLD
nproc = comm.Get_size()
rank = comm.Get_rank()


scal = None
mat = np.empty([3,3], dtype='d')

arr = np.empty(5, dtype='d')
result = np.empty(5, dtype='d')


if rank==0:
scal = 55.0
mat[:] = np.array([[1,2,3],[4,5,6],[7,8,9]])

arr = np.ones(5)
result = 2*arr

comm.Bcast([ result , MPI.DOUBLE], root=0)
scal = comm.bcast(scal, root=0)
comm.Bcast([ mat , MPI.DOUBLE], root=0)

print("Rank: ", rank, ". Array is:\n", result)
print("Rank: ", rank, ". Scalar is:\n", scal)
print("Rank: ", rank, ". Matrix is:\n", mat)

关于python - mpi4py | comm.bcast 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49968647/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com