Non Blocking communication in MPI and MPI Wait Issue. Not all information is passed correctly

前端 未结 2 743
闹比i
闹比i 2021-01-27 08:25

I noticed that not all my MPI_Isend/MPI_IRecv were being executed. I think it may perhaps be either the order in which I do my send and receive or the fact that the code doesn\'

2条回答
  •  我在风中等你
    2021-01-27 08:53

    For every call to a non-blocking MPI call, there has to be a corresponding wait. You are missing one wait per process.

提交回复
热议问题