Re: [OMPI devel] --enable-visibility ( OPAL_C_HAVE_VISIBILITY) behavior in trunk

2014-09-30 Thread Ralph Castain
Should be fixed in r32822 On Sep 30, 2014, at 12:51 PM, Devendar Bureddy wrote: > AC_LINK_IFELSE ( in config/opal_check_visibility.m4) test of conftest.c is > failing with following error. It seems, this also causing AC_LINK_IFELSE > failures at many other places after PMI check.. > > $g

Re: [OMPI devel] --enable-visibility ( OPAL_C_HAVE_VISIBILITY) behavior in trunk

2014-09-30 Thread Devendar Bureddy
AC_LINK_IFELSE ( in config/opal_check_visibility.m4) test of conftest.c is failing with following error. It seems, this also causing AC_LINK_IFELSE failures at many other places after PMI check.. $gcc -std=gnu99 -o conftest -g -fvisibility=hidden -Werror -I/hpc/home/USERS/devendar11/ompi

Re: [OMPI devel] Broken abort backtrace functionality

2014-09-30 Thread Ralph Castain
Should be fixed in r32821, scheduled for 1.8.4 On Sep 29, 2014, at 2:00 PM, Deva wrote: > I looks like OMPI_MCA_mpi_abort_print_stack=1 is broken. I'm seeing > following warning with it. > > -- > $mpirun -np 2 -x OMPI_MCA_mpi_abort_print_stack=1 ./hello_c > ---

Re: [OMPI devel] Github migration: tomorrow

2014-09-30 Thread Jeff Squyres (jsquyres)
8am US Eastern tomorrow morning is the cutoff. Anything you do tonight will be fine. Note, however, that open CMRs will NOT be moved over to Github -- you'll have to re-file them as pull requests after the migration. On Sep 30, 2014, at 2:09 PM, Pritchard Jr., Howard wrote: > Hi Jeff, > >

Re: [OMPI devel] Github migration: tomorrow

2014-09-30 Thread Pritchard Jr., Howard
Hi Jeff, When's the latest today that we can do checkins without causing problems? Howard -Original Message- From: devel [mailto:devel-boun...@open-mpi.org] On Behalf Of Jeff Squyres (jsquyres) Sent: Tuesday, September 30, 2014 9:57 AM To: Open MPI Developers List Subject: [OMPI devel]

Re: [OMPI devel] MPI_Comm_spawn crashes with the openib btl

2014-09-30 Thread Ralph Castain
I fixed this in r32818 - the components shouldn't be passing back success if the requested info isn't found. Hope that fixes the problem. On Sep 30, 2014, at 1:54 AM, Gilles Gouaillardet wrote: > Folks, > > the dynamic/spawn test from the ibm test suite crashes if the openib btl > is detecte

Re: [OMPI devel] --enable-visibility ( OPAL_C_HAVE_VISIBILITY) behavior in trunk

2014-09-30 Thread Jeff Squyres (jsquyres)
Probably not. Can you dig into why configure thinks your compiler doesn't have visibility capabilities? On Sep 29, 2014, at 7:36 PM, Devendar Bureddy wrote: > I see behavioral difference between 1.8.x and trunk for > OPAL_C_HAVE_VISIBILITY definition on same build environment. is this > ex

Re: [OMPI devel] Neighbor collectives with periodic Cartesian topologies of size one

2014-09-30 Thread Jeff Squyres (jsquyres)
On the call today, we decided that Nathan's v1.8 patch is sufficient for the v1.8 series, and the "real" fix will be applied to the trunk and carried forward to the v1.9 series (since it introduces an ABI break for the topo framework, which we try not to do in the middle of a release series). O

[OMPI devel] Github migration: tomorrow

2014-09-30 Thread Jeff Squyres (jsquyres)
It's happening tomorrow, October 1, 2014, starting at 8am US Eastern time. There was discussion about Bitbucket vs. Github, and all things being equal (except the cost!), we're going with the original plan of the main OMPI repo at Github. The plan tomorrow is the same as it was last week: - SV

Re: [OMPI devel] [patch] libnbc intercommunicator iallgather bug

2014-09-30 Thread Pritchard Jr., Howard
Hi Takahiro, Thanks very much for the patch and the test! After the git migration we'll open an issue and patch nbc_iallgather. This will get pushed to 1.8.4. Howard -Original Message- From: devel [mailto:devel-boun...@open-mpi.org] On Behalf Of Kawashima, Takahiro Sent: Monday, Sept

Re: [OMPI devel] Neighbor collectives with periodic Cartesian topologies of size one

2014-09-30 Thread Nathan Hjelm
Not quite right. There still is no topology information at collective selection time for either graph or dist graph. -Nathan On Tue, Sep 30, 2014 at 02:03:27PM +0900, Gilles Gouaillardet wrote: >Nathan, > >here is a revision of the previously attached patch, and that supports >graph

Re: [OMPI devel] recomended software stack for development?

2014-09-30 Thread Ralph Castain
Kewl. FWIW: we already have the ability to migrate processes in the ORTE code. You can tell the system to try and restart the process in its existing location N number of times before requesting relocation. Of course, if a node fails, then we automatically relocate the procs to other nodes. The

[OMPI devel] recomended software stack for development?

2014-09-30 Thread Manuel Rodríguez Pascual
Hi all, I kind of broke something with mail mail configuration so I haven't been able to properly answer to this earlier, sorry. @Jsquyres We are planning to work on fault tolerance and improved scheduling cappabilities for HPC. To do so, we are first focusing on serial tasks, and in a next step

[OMPI devel] MPI_Comm_spawn crashes with the openib btl

2014-09-30 Thread Gilles Gouaillardet
Folks, the dynamic/spawn test from the ibm test suite crashes if the openib btl is detected (the test can be ran on one node with an IB port) here is what happens : in mca_btl_openib_proc_create, the macro OPAL_MODEX_RECV(rc, &mca_btl_openib_component.super.btl_version, p

Re: [OMPI devel] Neighbor collectives with periodic Cartesian topologies of size one

2014-09-30 Thread Gilles Gouaillardet
Nathan, here is a revision of the previously attached patch, and that supports graph and dist graph. Cheers, Gilles On 2014/09/30 0:05, Nathan Hjelm wrote: > An equivalent change would need to be made for graph and dist graph as > well. That will take a little more work. Also, I was avoiding ch

[OMPI devel] [patch] libnbc intercommunicator iallgather bug

2014-09-30 Thread Kawashima, Takahiro
Hi, The attached program intercommunicator-iallgather.c outputs message "MPI Error in MPI_Testall() (18)" forever and doesn't finish. This is because libnbc has typos of send/recv. See attached intercommunicator-iallgather.patch for the fix. The patch modifies iallgather_inter and iallgather_intr