Closed upperwal closed 6 years ago
Possible Cause: We are using PMPI_Waitany with same buffer for all Irecv request. Although some request completes successfully but the next request write to the same buffer which might be causing corrupted data
PMPI_Waitany
Irecv
Solution: Try to use PMPI_Waitall again.
PMPI_Waitall
Yup, that was the case. Still testing.
Now they are SUCCESSFUL
Possible Cause: We are using
PMPI_Waitany
with same buffer for allIrecv
request. Although some request completes successfully but the next request write to the same buffer which might be causing corrupted dataSolution: Try to use
PMPI_Waitall
again.