Re: [OMPI users] MPI_Bcast implementations in OpenMPI

2016-04-25 Thread Dave Love
George Bosilca writes: > Dave, > > You are absolutely right, the parameters are now 6-7 years old, > gathered on interconnects long gone. Moreover, several discussions in > this mailing list indicated that they do not match current network > capabilities. > > I have recently reshuffled the tuned

Re: [OMPI users] Porting MPI-3 C-program to Fortran

2016-04-25 Thread Dave Love
Tom Rosmond writes: > Thanks for replying, but the difference between what can be done in C > vs fortran is still my problem. I apologize for my rudimentary > understanding of C, but here is a brief summary: I'm not an expert on this stuff, just cautioning about Fortran semantics where I could

Re: [OMPI users] track progress of a mpi gather

2016-04-25 Thread George Bosilca
We just switched the default compile-mode to MPI_THREAD_MULTIPLE (with prior testing). Thus, we are relatively confident it should work on all BTLs. If not we would be happy to hear about. George. On Sun, Apr 24, 2016 at 11:02 AM, dpchoudh . wrote: > Hello Gilles > > That idea crossed my min

Re: [OMPI users] Cannot run a simple MPI program

2016-04-25 Thread Jeff Squyres (jsquyres)
On Apr 24, 2016, at 8:12 PM, Gilles Gouaillardet wrote: > > fwiw, once in a while, i > rm -rf /.../ompi_install_dir/lib/openmpi > to get rid of the removed modules If it helps, I usually install Open MPI into a tree all by itself, and then I can "rm -rf $ompi_install_dir" in its entirety

Re: [OMPI users] MPI_Bcast implementations in OpenMPI

2016-04-25 Thread George Bosilca
> On Apr 25, 2016, at 11:33 , Dave Love wrote: > > George Bosilca writes: > >> Dave, >> >> You are absolutely right, the parameters are now 6-7 years old, >> gathered on interconnects long gone. Moreover, several discussions in >> this mailing list indicated that they do not match current net

Re: [OMPI users] MPIRUN SEGMENTATION FAULT

2016-04-25 Thread Gus Correa
Hi Elio As Gilles said, if you change the integer size to -i8 in the application, and MPI was built with the default-sized integers (4 bytes), things will get really ugly and mismatched. Better avoid flags such as -i8, -r8, etc, when compiling MPI programs. Have you tried to compile the code w

[OMPI users] Ubuntu and LD_LIBRARY_PATH

2016-04-25 Thread Rob Malpass
Hi Sorry if this isn't 100% relevant to this list but I'm at my wits end. After a lot of hacking, I've finally configured openmpi on my Ubuntu cluster. I had been having awful problems with not being able to find the libraries on the remote nodes but apparently the workaround is to use ld.

Re: [OMPI users] Ubuntu and LD_LIBRARY_PATH

2016-04-25 Thread Ralph Castain
Have you tried configuring OMPI with -enable-orterun-prefix-by-default? > On Apr 25, 2016, at 10:34 AM, Rob Malpass wrote: > > Hi > > Sorry if this isn’t 100% relevant to this list but I’m at my wits end… > > After a lot of hacking, I’ve finally configured openmpi on my Ubuntu cluster. >

Re: [OMPI users] Ubuntu and LD_LIBRARY_PATH

2016-04-25 Thread Jeff Squyres (jsquyres)
In addition to what Ralph said, check out these 3 FAQ items: https://www.open-mpi.org/faq/?category=running#run-prereqs https://www.open-mpi.org/faq/?category=running#adding-ompi-to-path https://www.open-mpi.org/faq/?category=running#mpirun-prefix > On Apr 25, 2016, at 2:02 PM, Ralph Castain w