Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-06 Thread Michel Lesoinne
Hi Howard! Good news. This makes things work finally. Thanks. I think however that it should not be necessary, but if I have to do that every time, I guess I will  On Mon, Feb 6, 2017 at 8:09 AM, Howard Pritchard wrote: > Hi Michel, > > Could you try running the app with >

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-06 Thread Howard Pritchard
Hi Michel, Could you try running the app with export TMPDIR=/tmp set in the shell you are using? Howard 2017-02-02 13:46 GMT-07:00 Michel Lesoinne : Howard, First, thanks to you and Jeff for looking into this with me.  I tried ../configure --disable-shared

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Michel Lesoinne
Howard, First, thanks to you and Jeff for looking into this with me.  I tried ../configure --disable-shared --enable-static --prefix ~/.local The result is the same as without --disable-shared. i.e. I get the following error: [Michels-MacBook-Pro.local:92780] [[46617,0],0] ORTE_ERROR_LOG: Bad

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Michel Lesoinne
No previous version installed. This is a brand new laptop on which no MPI of any kind was installed previously. On Thu, Feb 2, 2017 at 6:11 AM, Jeff Squyres (jsquyres) wrote: > Michel -- > > Also, did you install Open MPI v2.0.2 over a prior version of Open MPI > (i.e., with

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Michel Lesoinne
I am disabling shared to make it a bit easier, not having to setup the DYLD_LIBRARY_PATH. But not disabling 'shared' results in similar behavior, though with different messages (the line numbers are a bit shifted as I tried to debug some arguments): *[Michels-MacBook-Pro.local:68818]

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Howard Pritchard
Hi Michel Try adding --enable-static to the configure. That fixed the problem for me. Howard Michel Lesoinne schrieb am Mi. 1. Feb. 2017 um 19:07: > I have compiled OpenMPI 2.0.2 on a new Macbook running OS X 10.12 and have > been trying to run simple program. > I

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Howard Pritchard
Hi Michael, I reproduced this problem on my Mac too: pn1249323:~/ompi/examples (v2.0.x *)$ mpirun -np 2 ./ring_c [pn1249323.lanl.gov:94283] mca_base_component_repository_open: unable to open mca_patcher_overwrite: File not found (ignored) [pn1249323.lanl.gov:94283]

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Jeff Squyres (jsquyres)
Michel -- Also, did you install Open MPI v2.0.2 over a prior version of Open MPI (i.e., with the same prefix value to configure)? That would almost certainly cause a problem. > On Feb 2, 2017, at 7:56 AM, Howard Pritchard wrote: > > Hi Michel > > It's somewhat unusual

Re: [OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-02 Thread Howard Pritchard
Hi Michel It's somewhat unusual to use the disable-shared configure option. That may be causing this. Could you try to build without using this option and see if you still see the problem? Thanks, Howard Michel Lesoinne schrieb am Mi. 1. Feb. 2017 um 21:07: > I

[OMPI users] OpenMPI not running any job on Mac OS X 10.12

2017-02-01 Thread Michel Lesoinne
I have compiled OpenMPI 2.0.2 on a new Macbook running OS X 10.12 and have been trying to run simple program. I configured openmpi with ../configure --disable-shared --prefix ~/.local make all install Then I have a simple code only containing a call to MPI_Init. I compile it with mpirun -np 2