Skip to content

Commit 6133195

Browse files
committed
Change nonblocking iSend/iRecv to sendRecv operation
Signed-off-by: vdhyasani17 <[email protected]>
1 parent 75ceda4 commit 6133195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Connectivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static void main(String args[]) throws MPIException {
5050
* To avoid deadlocks, use non-blocking communication iSend and iRecv
5151
* This will allow the program to progress, in the event that
5252
* two ranks both send to each other at the same time and could
53-
* potentially cause deadlock. The ranks can send their requests
53+
* potentially cause a deadlock. The ranks can send their requests
5454
* without halting the program and immediately
5555
*/
5656
Request sendReq = MPI.COMM_WORLD.iSend(rank, 1, MPI.INT, j, myRank);

0 commit comments

Comments
 (0)