[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] MPI exe stalls



On Sat, Dec 30, 2006 at 11:04:07PM -0500, Christopher Jon Jursa wrote:
> 
> 1) As you can see, the coordinator function runs on rank 0.  It seems to run
> up to directly before the while loop at while(globalLeaveAloneIndex <=
> dimensionsOfGraph - 1);  Hence, it never reaches the MPI_recv in the loop.
> However, when the MPI_recv is outside the loop it is executed.  Why won't
> the code enter this loop?
> 

while(globalLeaveAloneIndex <= dimensionsOfGraph - 1);

You don't want that semicolon.

-Erik