On Jun 29, 2009, at 9:48 PM, Ashika Umanga Umagiliya wrote:

I am parallelizing tomography algorithm which takes about 5 hours using single processor. I want to gain full performance and should reduce the computational time as short as possible. I was wondering the SSh/RSH launcher could be a performance issue?(I am just guessing)

Unlikely. The time to launch an ssh/rsh process is negligible compared to a 5 hour run.

What kind of software/middleware I should use to solve the network/ communication overhead.

I'm not sure what you mean by this question...?

In your environment, Open MPI is using TCP sockets to communicate between MPI processes on different hosts and likely using shared memory to communicate between MPI processes on the same host. But in your MPI application, you just use MPI_SEND / MPI_RECV (etc.) -- Open MPI automatically chooses the "best" transport underneath and gets your message to the other side as fast as possible.

You might want to take a short MPI tutorial to get familiar with MPI concepts. There's an excellent free introduction to MPI tutorial at the NCSA:

    http://ci-tutor.ncsa.illinois.edu/login.php

Register for a (free) account and then you'll see the course listing.

This tutorial will introduce you to MPI concepts such as sending, receiving, MPI collective operations, etc.

--
Jeff Squyres
Cisco Systems

Reply via email to