Re: [OMPI devel] "make check" (libtool) failure on Linux/ppc w/ XLC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
While I still don't know the root cause, the following diff between the libtool-generated wrappers for a gcc and xlc build make the cause of the "make check" failure fairly obvious: --- BLD-gcc/ompi/debuggers/predefined_gap_test 2010-08-26 20:49:53.524662327 -0500 +++

[hwloc-devel] Create success (hwloc r1.1a1r2428)

2010-08-26 Thread MPI Team
Creating nightly hwloc snapshot SVN tarball was a success. Snapshot: hwloc 1.1a1r2428 Start time: Thu Aug 26 21:01:05 EDT 2010 End time: Thu Aug 26 21:03:04 EDT 2010 Your friendly daemon, Cyrador

[OMPI devel] "make check" (libtool) failure on Linux/ppc w/ XLC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
I am now looking at using IBM's XLC compilers for ILP32 builds on the same Linux/PPC64 platform for which I've reported some XLC/LP64 bugs. What I find now is that "make check" is failing with the loader unable to find libmpi.so.0. This is with both 1.5rc5 and 1.4.3rc1. This occurs with xlc,

[OMPI devel] Failure (libtool?) to build F90 bindings w/ XLC/PPC64 (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
One of the platforms I've been testing is a Linux/PPC64 (which happens to be the front-end to a BG/P, but don't be confused by that - I am NOT trying to build for the BG/P). On the system are IBM's XLC compilers (also sold under the ABSoft name). When passing "-q64" to the xlc compilers to

Re: [OMPI devel] [OMPI svn-full] svn:open-mpi r23665

2010-08-26 Thread Ralph Castain
Did you put it in the Makefile.am EXTRA_DIST? On Aug 26, 2010, at 1:39 PM, Ethan Mallove wrote: > This fixes Libtool for an SVN checkout, but does not seem to get into > the nightly trunk tarball. Why is that? > > -Ethan > > On Wed, Aug/25/2010 03:40:18PM, emall...@osl.iu.edu wrote: >>

Re: [OMPI devel] common_sm_mmap.c: wrong args to orte_show_help() (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Samuel K. Gutierrez
Will do. Sam On Aug 26, 2010, at 2:08 PM, Jeff Squyres wrote: I think Sam already submitted CMR's for 1.5: https://svn.open-mpi.org/trac/ompi/ticket/2545 Sam -- can you construct an equivalent for v1.4 and CC Paul so that he knows not to follow up on it? Thanks! On Aug 26, 2010, at

Re: [OMPI devel] "make check" (libtool?) failure on Solaris/SPARC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Ralf Wildenhues
* Paul H. Hargrove wrote on Thu, Aug 26, 2010 at 10:14:22PM CEST: > I just had a thought on this one: In my environment on this > platform I have LD_LIBRARY_PATH_32 and LD_LIBRARY_PATH_64 set. It > seems possible to me that this is causing the loader to ignore the > LD_LIBRARY_PATH setting that

Re: [OMPI devel] "make check" (libtool?) failure on Solaris/SPARC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
Paul H. Hargrove wrote: Ralf Wildenhues wrote: Hello Paul, * Paul H. Hargrove wrote on Thu, Aug 26, 2010 at 01:58:11AM CEST: I have been able to configure and build both 1.5rc5 and 1.4.3rc1 on Solaris 10 for SPARC, using Sun C 5.10. I have also build 1.5rc5 w/ gcc-3.3.2 (and expect

Re: [OMPI devel] common_sm_mmap.c: wrong args to orte_show_help() (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Jeff Squyres
I think Sam already submitted CMR's for 1.5: https://svn.open-mpi.org/trac/ompi/ticket/2545 Sam -- can you construct an equivalent for v1.4 and CC Paul so that he knows not to follow up on it? Thanks! On Aug 26, 2010, at 3:56 PM, Paul H. Hargrove wrote: > The warnings below have appeared

[OMPI devel] common_sm_mmap.c: wrong args to orte_show_help() (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
The warnings below have appeared in some of my other testing results. However, I now know what they correspond to. In both 1.5rc5 and 1.4.3rc1 there are two calls to orte_show_help() that are passing orte_process_info.nodename as the third argument, where a _Bool is expected. It looks to me

Re: [OMPI devel] [OMPI svn-full] svn:open-mpi r23665

2010-08-26 Thread Ethan Mallove
This fixes Libtool for an SVN checkout, but does not seem to get into the nightly trunk tarball. Why is that? -Ethan On Wed, Aug/25/2010 03:40:18PM, emall...@osl.iu.edu wrote: > Author: emallove > Date: 2010-08-25 15:40:17 EDT (Wed, 25 Aug 2010) > New Revision: 23665 > URL:

Re: [OMPI devel] make install (libtool) failure on Solaris 10 (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
Ralf Wildenhues wrote: * Ralf Wildenhues wrote on Thu, Aug 26, 2010 at 07:29:17AM CEST: * Paul H. Hargrove wrote on Thu, Aug 26, 2010 at 05:37:23AM CEST: libtool: install: (cd /usr/local/pkg/ompi-1.5rc5/lib && { ln -s -f libmpi.so.0.0.2 libmpi.so.0 || { rm -f libmpi.so.0 && ln -s

Re: [OMPI devel] make install (libtool) failure on Solaris 10 (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
I agree w/ Ralph that ln -s -f A B || { rm -f B && ln -s A B; } should have worked despite the error message from the failing "ln -s -f A B". So, I don't think there was a real error here - sorry. -Paul Ralf Wildenhues wrote: Hi Paul, * Paul H. Hargrove wrote on Thu, Aug 26, 2010 at

Re: [OMPI devel] Problem w/ documented SPARC/gcc flags (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
Rolf, Thanks for looking into this issue. Can you explain for me why V8+ is OK w/ the Sun C complier, but V9 is required w/ gcc? I am guessing that one is an ABI flag and the other is a CPU flag, right? -Paul P.S. The V8+ vs V9 ABI differences are described at

Re: [OMPI devel] "make check" (libtool?) failure on Solaris/SPARC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
Ralf Wildenhues wrote: Hello Paul, * Paul H. Hargrove wrote on Thu, Aug 26, 2010 at 01:58:11AM CEST: I have been able to configure and build both 1.5rc5 and 1.4.3rc1 on Solaris 10 for SPARC, using Sun C 5.10. I have also build 1.5rc5 w/ gcc-3.3.2 (and expect 1.4.3rc1 to build w/ gcc as

Re: [OMPI devel] 1.5rc5: attribute((noreturn)) and pointers to functions

2010-08-26 Thread Rainer Keller
Hi Paul, having seen Your initial mail on Sun's support for noreturn (I have had some fun with their CC, see other mail, so I use g++), I implemented Your suggestion and tried with Sun's 12.1 compiler on Linux x86-64. I will commit this later in the day (touching m4...) Thanks, Rainer PS:

[OMPI devel] 1.5rc5 over MX

2010-08-26 Thread Scott Atchley
Hi all, Testing 1.5rc5 over MX with the same setup as 1.4.3rc1 (RHEL 5.4 and MX 1.2.12). This version also dies during init due to the memory manager if I do not specify which pml to use. If I specify pml ob1 or pml cm, the tests start but die with segfaults: 131072 320

[OMPI devel] 1/4/3rc1 over MX

2010-08-26 Thread Scott Atchley
Hi all, I compiled 1.4.3rc1 with MX 1.2.12 on RHEL 5.4 (2.6.18-164.el5). It does not like the memory manager and MX. Compiling using --without-memory-manager works fine. The output below is form the default configure (i.e. --with-memory-manager). Note, I still see unusual latencies for some

Re: [OMPI devel] Question on the members of ompi_crcp_bkmrk_pml_drain_message_ref_t and ompi_crcp_bkmrk_pml_traffic_message_ref_t

2010-08-26 Thread Joshua Hursey
Ananda, So I think the comments are just misleading/wrong here. So messages are grouped by signature/envelope of the message. The ompi_crcp_bkmrk_pml_drain_message_ref_t and ompi_crcp_bkmrk_pml_traffic_message_ref_t data structures describe the envelope and each have a list of 'msg_contents'

Re: [OMPI devel] Problem w/ documented SPARC/gcc flags (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Rolf vandeVaart
I have dug a little more into this. I am now just planning to fix the README to match the configure message. In short, use CFLAGS="-mcpu=v9". It turns out this change was made in the configure code, but the README was never updated. This should work properly for all cases. Rolf On

Re: [OMPI devel] Checkpoint/restart question

2010-08-26 Thread Joshua Hursey
I have not played with the Condor checkpoint/restart library in quite some time. Supporting it should be fairly straight forward though (though the devil is always in the details with such things). In Open MPI, all of the code to support checkpoint/restart services like BLCR or condor is part

[hwloc-devel] hwloc on netBSD

2010-08-26 Thread Kevin . Buckley
Hi there, Firstly, I should say I am not a NetBSD developer at this (or any) level however, I can usually find my way around a system's internals by judicious use of the man3 content and can type code. Jeff Squyres suggested we, ECS VUW, try and come up with a src/topology-netbsd.c as we seem

Re: [OMPI devel] "make check" (libtool?) failure on Solaris/SPARC (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Ralf Wildenhues
Hello Paul, * Paul H. Hargrove wrote on Thu, Aug 26, 2010 at 01:58:11AM CEST: > I have been able to configure and build both 1.5rc5 and 1.4.3rc1 on > Solaris 10 for SPARC, using Sun C 5.10. > I have also build 1.5rc5 w/ gcc-3.3.2 (and expect 1.4.3rc1 to build > w/ gcc as well, once I have time) >

[OMPI devel] make install (libtool) failure on Solaris 10 (1.5rc5 and 1.4.3rc1)

2010-08-26 Thread Paul H. Hargrove
This has got to be the stupidest failure I have ever seen! $ make install [...] make[3]: Entering directory `/export/home/phargrov/openmpi-1.5rc5/BLD-gcc-vt/ompi' test -z "/usr/local/pkg/ompi-1.5rc5/lib" || ../../config/install-sh -c -d "/usr/local/pkg/ompi-1.5rc5/lib" /bin/bash ../libtool