Re: [OMPI users] OpenMPI / SLURM -> Send/Recv blocking

2012-02-01 Thread Jeff Squyres
On Jan 31, 2012, at 11:16 AM, adrian sabou wrote: > Like I said, a very simple program. > When launching this application with SLURM (using "salloc -N2 mpirun > ./"), it hangs at the barrier. Are you able to run the MPI example programs in examples/ ? > However, it passes the barrier if I launc

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Ralph Castain
FWIW: I have fixed this on the developer's trunk, and Jeff has scheduled it for release in the upcoming 1.6 release (when 1.5 series rolls over). I don't expect we'll backport it to 1.4 unless someone really needs it there. Thanks! Ralph On Feb 1, 2012, at 9:31 AM, Ralph Castain wrote: > Ah -

Re: [OMPI users] Latest Intel Compilers (ICS, version 12.1.0.233 Build 20110811) issues ...

2012-02-01 Thread Jeff Squyres
I just added it: http://www.open-mpi.org/faq/?category=troubleshooting#intel-12.1-compiler On Feb 1, 2012, at 12:41 PM, Jeff Squyres wrote: > I think we need to add something to the FAQ so that it's googleable "The > Intel 12.1 Linux compilers before 12.1.2 are busted. Upgrade to at least

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Gustavo Correa
Hi Frank, Lloyd If all you want is to sort out from which process the output is coming from, you can use the "-tag-output" switch to the [OpenMPI] mpirun. Check it out with 'man mpirun'. I hope this helps, Gus Correa On Feb 1, 2012, at 11:04 AM, Lloyd Brown wrote: > I don't know about using mpi

Re: [OMPI users] Latest Intel Compilers (ICS, version 12.1.0.233 Build 20110811) issues ...

2012-02-01 Thread Jeff Squyres
I think we need to add something to the FAQ so that it's googleable "The Intel 12.1 Linux compilers before 12.1.2 are busted. Upgrade to at least 12.1.2, and OMPI should compile and work fine." On Feb 1, 2012, at 3:34 AM, Götz Waschk wrote: > On Tue, Jan 31, 2012 at 5:20 PM, Richard Walsh >

Re: [OMPI users] Segfault on mpirun with OpenMPI 1.4.5rc2

2012-02-01 Thread Daniel Milroy
Hi Götz, I don't know whether we can implement your suggestion; it is dependent on the terms of our license with Intel. I will take this under advisement. Thank you very much. Dan Milroy 2012/2/1 Götz Waschk : > On Tue, Jan 31, 2012 at 8:19 PM, Daniel Milroy > wrote: >> Hello, >> >> I have

Re: [OMPI users] Segfault on mpirun with OpenMPI 1.4.5rc2

2012-02-01 Thread Daniel Milroy
Hi Jeff, Pending further testing, your suggestion seems to have fixed the issue. Thank you very much. Dan Milroy 2012/1/31 Jeff Squyres : > We have heard reports of failures with the Intel 12.1 compilers. > > Can you try with rc4 (that was literally just released) with the > --without-memory

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Frank
Great, that works!! Many Thanks! On Wed, Feb 1, 2012 at 4:17 PM, Paul Kapinos wrote: > Try out the attached wrapper: > $ mpiexec -np 2 masterstdout > >> mpirun -n 2 > > >> Is there a way to have mpirun just merger STDOUT of one process to its >> STDOUT stream? > > > > > > -- > Dipl.-Inform. Pau

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Ralph Castain
Ah - crud. Looks like the default-hostfile mca param isn't getting set to the default value. Will resolve - thanks! On Feb 1, 2012, at 9:28 AM, Reuti wrote: > Am 01.02.2012 um 17:16 schrieb Ralph Castain: > >> Could you add --display-allocation to your cmd line? This will tell us if it >> foun

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Reuti
Am 01.02.2012 um 17:16 schrieb Ralph Castain: > Could you add --display-allocation to your cmd line? This will tell us if it > found/read the default hostfile, or if the problem is with the mapper. Sure: reuti@pc15370:~> mpiexec --display-allocation -np 4 ./mpihello == AL

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Paul Kapinos
Try out the attached wrapper: $ mpiexec -np 2 masterstdout mpirun -n 2 Is there a way to have mpirun just merger STDOUT of one process to its STDOUT stream? -- Dipl.-Inform. Paul Kapinos - High Performance Computing, RWTH Aachen University, Center for Computing and Communication Se

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Ralph Castain
Could you add --display-allocation to your cmd line? This will tell us if it found/read the default hostfile, or if the problem is with the mapper. On Feb 1, 2012, at 7:58 AM, Reuti wrote: > Am 01.02.2012 um 15:38 schrieb Ralph Castain: > >> On Feb 1, 2012, at 3:49 AM, Reuti wrote: >> >>> Am

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Eugene Loh
On 2/1/2012 7:59 AM, Frank wrote: When running mpirun -n 2 the STDOUT streams of both processes are combined and are displayed by the shell. In such an interleaved format its hard to tell what line comes from which node. As far as this part goes, there is also "mpirun --tag-output". Check the

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Noam Bernstein
man mpirun . . . -output-filename, --output-filename Redirect the stdout, stderr, and stddiag of all ranks to a rank-unique version of the specified filename. Any directories in the filename will automatically be created. Each output file will consist of fi

Re: [OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Lloyd Brown
I don't know about using mpirun to do it, but you can actually call mpirun on a script, and have that script individually call a single instance of your program. Then that script could use shell redirection to redirect the output of the program's instance to a separate file. I've used this techni

[OMPI users] Mpirun: How to print STDOUT of just one process?

2012-02-01 Thread Frank
When running mpirun -n 2 the STDOUT streams of both processes are combined and are displayed by the shell. In such an interleaved format its hard to tell what line comes from which node. Is there a way to have mpirun just merger STDOUT of one process to its STDOUT stream? Best, Frank Cross-re

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Reuti
Am 01.02.2012 um 15:38 schrieb Ralph Castain: > On Feb 1, 2012, at 3:49 AM, Reuti wrote: > >> Am 31.01.2012 um 21:25 schrieb Ralph Castain: >> >>> On Jan 31, 2012, at 12:58 PM, Reuti wrote: >> >> BTW: is there any default for a hostfile for Open MPI - I mean any in my >> home directory or /etc

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Ralph Castain
On Feb 1, 2012, at 3:49 AM, Reuti wrote: > Am 31.01.2012 um 21:25 schrieb Ralph Castain: > >> >> On Jan 31, 2012, at 12:58 PM, Reuti wrote: > > BTW: is there any default for a hostfile for Open MPI - I mean any in my home > directory or /etc? When I check `man orte_hosts`, and all possible op

Re: [OMPI users] Spawn_multiple with tight integration to SGE grid engine

2012-02-01 Thread Reuti
Am 31.01.2012 um 21:25 schrieb Ralph Castain: > > On Jan 31, 2012, at 12:58 PM, Reuti wrote: > >> >> Am 31.01.2012 um 20:38 schrieb Ralph Castain: >> >>> Not sure I fully grok this thread, but will try to provide an answer. >>> >>> When you start a singleton, it spawns off a daemon that is th

Re: [OMPI users] Segfault on mpirun with OpenMPI 1.4.5rc2

2012-02-01 Thread Götz Waschk
On Tue, Jan 31, 2012 at 8:19 PM, Daniel Milroy wrote: > Hello, > > I have built OpenMPI 1.4.5rc2 with Intel 12.1 compilers in an HPC > environment.  We are running RHEL 5, kernel 2.6.18-238 with Intel Xeon > X5660 cpus.  You can find my build options below.  In an effort to > test the OpenMPI buil

Re: [OMPI users] Latest Intel Compilers (ICS, version 12.1.0.233 Build 20110811) issues ...

2012-02-01 Thread Götz Waschk
On Tue, Jan 31, 2012 at 5:20 PM, Richard Walsh wrote: > in the malloc.c routine in 1.5.5.  Perhaps you should lower the optimization > level to zero and see what you get. Hi Richard, thanks for the suggestion. I was able to solve the problem by upgrading the Intel Compiler to version 12.1.2 and r