Re: [OMPI users] How to avoid abort when calling MPI_Finalize without calling MPI_File_close?

2010-12-01 Thread Jeff Squyres
On Dec 1, 2010, at 10:28 AM, Rob Latham wrote: > under openmpi, this test program fails because openmpi is trying to > help you out. I'm going to need some help from the openmpi folks > here, but the backtrace makes it look like MPI_Finalize is setting the > "no more mpi calls allowed" flag, and

Re: [OMPI users] How to avoid abort when calling MPI_Finalize without calling MPI_File_close?

2010-12-01 Thread James Overfelt
On Wed, Dec 1, 2010 at 8:28 AM, Rob Latham wrote: > On Mon, Nov 22, 2010 at 04:40:14PM -0700, James Overfelt wrote: >> Hello, >> >>     I have a small test case where a file created with MPI_File_open >> is still open at the time MPI_Finalize is called.  In the actual >> program there are lots of

Re: [OMPI users] How to avoid abort when calling MPI_Finalize without calling MPI_File_close?

2010-12-01 Thread Rob Latham
On Mon, Nov 22, 2010 at 04:40:14PM -0700, James Overfelt wrote: > Hello, > > I have a small test case where a file created with MPI_File_open > is still open at the time MPI_Finalize is called. In the actual > program there are lots of open files and it would be nice to avoid the > resulting

[OMPI users] How to avoid abort when calling MPI_Finalize without calling MPI_File_close?

2010-11-22 Thread James Overfelt
Hello, I have a small test case where a file created with MPI_File_open is still open at the time MPI_Finalize is called. In the actual program there are lots of open files and it would be nice to avoid the resulting "Your MPI job will now abort." by either having MPI_Finalize close the files