4. Point to point communication: the message passing patternΒΆ

The fundamental basis of coordination between independent processes is point-to-point communication between processes through the communication links in the MPI.COMM_WORLD. The form of communication is called message passing, where one process sends data to another one, who in turn must receive it from the sender. This is illustrated as follows:

../_images/send_recv.png
You have attempted of activities on this page
Next Section - 4.1. Message Passing Pattern: Key Problem