Reputation: 1
I am going to do some parallel computing and I'm totally a beginner in this area. I will use MPI to do the parallel work, with Master-Slave model. I now have two machines with microsoft sdk installed and want one of them to be the Master Node. However, I don't know how to specify the other machines running the program. Is there a way like specifying the IP address of slave node? How to launch my program?
Upvotes: 0
Views: 3182
Reputation: 5223
Any answer depends on your MPI implementation. You can find several for windows, including Intel-MPI and MS-MPI.
Let's start with MS-MPI since it's freely available:
http://msdn.microsoft.com/en-us/library/bb524831%28v=vs.85%29.aspx
Then, the guide here should get you pretty far:
Upvotes: 1