In the previous lesson, I discussed how to use MPI_Send and MPI_Recv to perform standard point-to-point communication. I only covered how to send messages in which the length of the message was known beforehand. Although it is possible to send the length of the message as a separate send / recv operation, MPI natively supports dynamic messages with just a few additional function calls. I will be going over how to use these functions in this lesson. The code for this tutorial is located here.
ABOUT

Hi, my name is Wes, and I created this website. I received my Ph.D. in Computer Science from the University of Tennessee, Knoxville. When I first started learning MPI ...
Click here for more info
RECOMMENDED BOOKS
My recommendations for great books on MPI.
Click here for more info

BEGINNER TUTORIAL
A step-by-step tutorial on beginner MPI topics.
Click here for more info

