Re: [OMPI users] C++ Exceptions

2008-10-28 Thread Jeff Squyres
On Oct 28, 2008, at 11:19 AM, Gabriele Fatigati wrote: another question: how can i check if MPI Exceptions are enabled? ompi_info | grep exceptions Should tell ya. -- Jeff Squyres Cisco Systems

Re: [OMPI users] C++ Exceptions

2008-10-28 Thread Gabriele Fatigati
Jeff, another question: how can i check if MPI Exceptions are enabled? 2008/10/28 Jeff Squyres : > Your question is quite timely -- we had a long discussion about C++ > exceptions just last week at the MPI Forum... :-) > > OMPI disables MPI throwing exceptions by default because it can cause a >

Re: [OMPI users] C++ Exceptions

2008-10-28 Thread Gabriele Fatigati
Very clear reply, thanks Jeff :) 2008/10/28 Jeff Squyres : > Your question is quite timely -- we had a long discussion about C++ > exceptions just last week at the MPI Forum... :-) > > OMPI disables MPI throwing exceptions by default because it can cause a > [slight] performance penalty in some c

Re: [OMPI users] C++ Exceptions

2008-10-28 Thread Jeff Squyres
Your question is quite timely -- we had a long discussion about C++ exceptions just last week at the MPI Forum... :-) OMPI disables MPI throwing exceptions by default because it can cause a [slight] performance penalty in some compilers. You can enable it by adding --enable-cxx-exceptions

[OMPI users] C++ Exceptions

2008-10-28 Thread Gabriele Fatigati
Dear OpenMPi developers, i'm developing parallel C++ application under OpenMPI 1.2.5. At the moment, i'm using MPI Exception Handlers, but some processors returns the error below: "MPI 2 C++ exception throwing is disabled, MPI::mpi_errno has the error code" Why this, and why only in some nodes