Fatal Error in MPI_Irecv: Aborting Job

前端 未结 1 606
别跟我提以往
别跟我提以往 2021-01-23 08:58

The following sequence of errors is received when I try to run a problem on four processors. The MPI command I use is mpirun -np 4

I apologize for posting the error mes

相关标签:
1条回答
  • 2021-01-23 10:03

    Are you repeatedly calling MPI_Irecv? If so, you may not realize that each call allocates a request handle - and these are freed when the message is received and tested for completion with (eg.) MPI_Test. It's possible you could exhaust memory with over-use of MPI_Irecv - or the memory assigned by an MPI implementation for this purpose.

    Only seeing the code would confirm the problem.

    0 讨论(0)
提交回复
热议问题