open-mpi:无效的消息类型-15

时间:2016-06-28 07:49:20

标签: parallel-processing fortran mpi gfortran openmpi

我试图在fortran上的open mpi上运行一些代码,一切正常,直到它突然停止工作并开始显示"无效的消息类型:15" (它编译完美)。尝试重新安装open-mpi,没有帮助。我该怎么办? 我使用的是最新版本的open-mpi。

CODE:

program basic
include 'mpif.h'

integer SIZE
parameter(SIZE=4)
integer numtasks,rank,ierr

call MPI_INIT(ierr)
call MPI_COMM_RANK(MPI_COMM_WORLD, rank, ierr)
call MPI_COMM_SIZE(MPI_COMM_WORLD,numtasks,ierr)
print*,rank

call MPI_FINALIZE(ierr)

end

运行成功编译后收到的错误:

[cgh-HP-Pavilion-g6-Notebook-PC:24051] [[49070,0],0] mca_oob_tcp_recv_handler: invalid message type: 15
[cgh-HP-Pavilion-g6-Notebook-PC:24051] [[49070,0],0] mca_oob_tcp_recv_handler: invalid message type: 15
[cgh-HP-Pavilion-g6-Notebook-PC:24051] [[49070,0],0] mca_oob_tcp_recv_handler: invalid message type: 15

--------------------------------------------------------------------------
mpirun noticed that the job aborted, but has no info as to the process
that caused that situation.

0 个答案:

没有答案