MPI_Send(100):无效的等级值为1但必须是非负且小于1

时间:2016-02-27 12:12:28

标签: mpi4py

我自己在python中学习MPI。我刚从MPI4py的基本文档开始。我从这段代码开始:

from mpi4py import MPI

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

if rank == 0:
   data = {'a': 7, 'b': 3.14}
   comm.send(data, dest=1, tag=11)
elif rank == 1:
   data = comm.recv(source=0, tag=11)

当我运行此程序时,出现以下错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "MPI/Comm.pyx", line 1175, in mpi4py.MPI.Comm.send (src/mpi4py.MPI.c:106424)
  File "MPI/msgpickle.pxi", line 211, in mpi4py.MPI.PyMPI_send (src/mpi4py.MPI.c:42120)
mpi4py.MPI.Exception: Invalid rank, error stack:
MPI_Send(174): MPI_Send(buf=0x10e137554, count=25, MPI_BYTE, dest=1, tag=11, MPI_COMM_WORLD) failed
MPI_Send(100): Invalid rank has value 1 but must be nonnegative and less than 1

我找不到任何解决此问题的方法。我正在使用Mac OS X El Capitan

提前致谢!

1 个答案:

答案 0 :(得分:1)

该程序抱怨1不是MPI_Send()的有效排名:这意味着您的程序在单个进程上运行。

您是否使用python main.py运行它?尝试使用mpirun -np 2 python main.py,其中2是进程数。后者是运行mpi程序的常用方法。