I am a newbie to MPI. I am in the process of reading through the tutorial on mpitutorial.com. Unfortunately the examples do not go into the kind of connection/communication I want to delve into. What I want to establish is the following:
I want to have one central MPI program, to which other programs that have been launched independently can connect. The central MPI program assumes a role similar to that of a 1960 switchboard and switchboard operator. This implies that the connected programs both receive and send data from and to the central MPI program. One exception to the analogy is that the central MPI program modifies data it has received before sending it away.
In the above, consider me as the developer of the central MPI program. Assume that all connected programs are developed independently and not by me. Lastly, all programs are open-source. So I can also modify those programs which I have not developed myself.
Could someone explain me how I can establish such a connection using MPI or point me in the right direction by telling me which MPI concepts I should study extensively?