Re: [OMPI devel] mpiexec without -hosts option

2015-07-10 Thread Jeff Squyres (jsquyres)
Victor -- I'm sorry that this message slipped by. Did you figure out that you were running MPICH, and not Open MPI? (I say that because I see the executable "mpichversion" in your output. > On Jun 30, 2015, at 10:09 PM, Victor Rodriguez wrote: > > HI team > ( if this is not the proper chann

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Paul Hargrove
Update: I have updated the autotools on my laptop to the point that I can autogen now. So, if necessary, I can once again test patches to the .m4 files (rather than needing full tarballs). -Paul On Fri, Jul 10, 2015 at 12:22 PM, Paul Hargrove wrote: > The timing on this is less than ideal for

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Paul Hargrove
The timing on this is less than ideal for me. To accommodate work on some high-voltage switching equipment, our building will be without power over the weekend. The system I use to autogen will be OFF from around 3pm today until perhaps 3pm on Monday. I will also be busy with shutting down our gro

Re: [OMPI devel] Open MPI 1.8.6 memory leak

2015-07-10 Thread Nick Papior
Just want to confirm. I also see this memory leak on 1.8.6, using 1.8.7rc1 fixes this memory leak. 2015-07-02 4:02 GMT+02:00 Gilles Gouaillardet : > Nathan, > > the root cause is your fixes were not backported to the v1.8 (nor the > v1.10) branch > > i made PR https://github.com/open-mpi/ompi-

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Jeff Squyres (jsquyres)
Yes, I seem to recall that this issue came up before... ah, here it is: commit 04bec4475e5a962432b73dd6254f62bb263703ab Author: Jeff Squyres List-Post: devel@lists.open-mpi.org Date: Fri Jan 16 18:13:31 2015 -0800 openib: check more thoroughly for XRC Some systems have XRC symbols

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Gilles Gouaillardet
Ralph, (Some) things got broken when adding support for XRC domains / OFED 3.12. In 1.8.4 there is no XRC support with OFED 3.12 As far as I am concerned, reverting opening btl to 1.8.4 is not a good option. Cheers, Gilles On Friday, July 10, 2015, Ralph Castain wrote: > Given that 1.8. was w

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Ralph Castain
Given that 1.8. was working correctly, why don’t we just revert the config in question back to the 1.8.4 version? Why was it changed in the first place? Does anyone know what problem someone was trying to solve? > On Jul 10, 2015, at 7:33 AM, Gilles Gouaillardet > wrote: > > Sorry about that

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Gilles Gouaillardet
Sorry about that, and thanks for reverting the commit. Paul mentioned a patch I sent to the ml, and that worked for him. The commit was supposed to be a more robust version. For example, in rhel7, the deprecated function have been removed, but the xrc domains is fine. Currently, xrc is not support

[OMPI devel] Github acting very slow

2015-07-10 Thread Jeff Squyres (jsquyres)
FYI: According to https://status.github.com/messages, as of about 10 mins ago, Github is investigating slowness with some git repos. The Open MPI organization repos (the ompi repo, at least) seems to be among these "slow" repos -- I'm getting response times on the web UI in terms of a minute or

Re: [OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Jeff Squyres (jsquyres)
On Jul 10, 2015, at 2:12 AM, Paul Hargrove wrote: > > The only "new" (non-cosmetic) problem I observed was the failure to detect > "ConnectX XRC support". > It looks like Gilles and I iterated on that issue until we have something > that works now. 'fraid not. :-( Per https://github.com/open

[OMPI devel] 1.8.7rc1 testing results

2015-07-10 Thread Paul Hargrove
Except for some slow QEMU-emulated ARM and MIPS systems my tests of 1.8.7rc1 are complete. I am without SPARC and IA64 platforms this time around. The only "new" (non-cosmetic) problem I observed was the failure to detect "ConnectX XRC support". It looks like Gilles and I iterated on that issue un

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Paul Hargrove
Gilles, Applying both of your patches to the 1.8.7rc1 tarball appears to give the desired results on both of the systems I tested. -Paul On Thu, Jul 9, 2015 at 9:39 PM, Paul Hargrove wrote: > Gilles, > > I see now that your patches aren't applying because they have DOS line > endings (CRLF vs

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Paul Hargrove
Gilles, If I am correctly understanding the purpose of deprecating the old interfaces then the openib btl will *eventually* need to support !OMPI_HAVE_CONNECTX_XRC && OMPI_HAVE_CONNECTX_XRC_DOMAINS However, I am not in a position to decide if that is really required for 1.8.x or not. -Paul

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Paul Hargrove
Gilles, I see now that your patches aren't applying because they have DOS line endings (CRLF vs LF). I need to strip those to get the patches applied. I will report results with your patch on both my "old" and "new" systems as soon as possible. -Paul On Thu, Jul 9, 2015 at 9:26 PM, Gilles Gouai

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Gilles Gouaillardet
Paul, the openib btl need to be reworked ... currently, we have #define HAVE_XRC (1 == OMPI_HAVE_CONNECTX_XRC) /* and it is impossible to have !OMPI_HAVE_CONNECTX_XRC && OMPI_HAVE_CONNECTX_XRC_DOMAINS */ but with your patch, this becomes possible and HAVE_XRC would be zero, which is incorrec

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Gilles Gouaillardet
Paul, i just applied the patch on the tarball, and it worked for me. anyway, the IBV_SRQT_XRC test was misplaced (and i just read you already found out ...) we need if for XRC_DOMAINS and *not* for XRC the newly attached patch will (hopefully) fix this Cheers, Gilles On 7/10/2015 11:06 AM,

Re: [OMPI devel] 1.8.7 rc1 out for review

2015-07-10 Thread Paul Hargrove
Gilles, I've made another observation about what I believe is an error in the XRC configure probe. If I am following the code below correctly, then *both* ConnectX and ConnectIB depend on ibv_create_xrc_rcv_qp being defined. However, that function is marked as deprecated (presumably in favor of i