Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-19 Thread Eric Thibodeau
Hi Jeff, I just tried with 1.2b4r13690 and the problem is still present. Only nottable differance is that CTRL-C gave me orterun: killing job... but stuck there untill I hit CTRL-\..if it has any bearing on the issue. Again, the command line was: orterun -np 11 ./perftest-1.3c/mpptest

Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-16 Thread Jeff Squyres
Could you try one of the later nightly 1.2 tarballs? We just fixed a shared memory race condition, for example: http://www.open-mpi.org/nightly/v1.2/ On Feb 16, 2007, at 12:12 AM, Eric Thibodeau wrote: Hello devs, Thought I would let you know there seems to be a problem with 1.2

Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-16 Thread Eric Thibodeau
Hello devs, Thought I would let you know there seems to be a problem with 1.2b3r13112 when running the "bisection" test on a Tyan VX50 machine (the 8 DualCore model with 32Gigs of RAM). OpenMPI was compiled with (as seen from config.log): configure:116866: running /bin/sh './configure' CFLAGS=

Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-15 Thread Anthony Chan
As long as mpicc is working, try configuring mpptest as mpptest/configure MPICC=/bin/mpicc or mpptest/configure --with-mpich= A.Chan On Thu, 15 Feb 2007, Eric Thibodeau wrote: > Hi Jeff, > > Thanks for your response, I eventually figured it out, here is the > only way I got mpptest to

Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-15 Thread Eric Thibodeau
Hi Jeff, Thanks for your response, I eventually figured it out, here is the only way I got mpptest to compile: export LD_LIBRARY_PATH="$HOME/openmpi_`uname -m`/lib" CC="$HOME/openmpi_`uname -m`/bin/mpicc" ./configure --with-mpi="$HOME/openmpi_`uname -m`" And, yes I know I should use th

Re: [OMPI users] compiling mpptest using OpenMPI

2007-02-15 Thread Jeff Squyres
I think you want to add $HOME/openmpi_`uname -m`/lib to your LD_LIBRARY_PATH. This should allow executables created by mpicc (or any derivation thereof, such as extracting flags via showme) to find the Right shared libraries. Let us know if that works for you. FWIW, we do recommend using