Re: [O-MPI devel] Fwd: Regarding MVAPI Component in Open MPI

2005-08-08 Thread Sridhar Chirravuri
Hi, I have got the latest code drop and this time I didn't give -r option to svn co. The last line that it showed me is given below. Checked out revision 6760. I am trying to install/configure/build OpenMPI on RHEL3 update 4 machine. For this release, we don't have lmpga and lmtl_common librar

Re: [O-MPI devel] Fwd: Regarding MVAPI Component in Open MPI

2005-08-08 Thread Sridhar Chirravuri
Hi, I was trying to build the latest code but as I mentioned in one of my previous mails, build is getting into a loop. [root@micrompi-1 ompi]# make all | tee mymake.log make: Warning: File `Makefile.am' has modification time 3.6e+04 s in the future cd . && /bin/sh /ompi/config/missing --run acl

[O-MPI devel] compile error

2005-08-08 Thread Gleb Natapov
Hello, I've got this compile error with the latest svn code. mca/ns/base/.libs/libmca_ns_base.a(ns_base_local_fns.o)(.text+0xfa7): In function `orte_ns_base_get_peers': /home/glebn/OpenMPI_latest/ompi/orte/mca/ns/base/ns_base_local_fns.c:609: multiple definition of `orte_ns_base_get_peers' mca/ns

[O-MPI devel] [PATCH] for ompi_free_list.c

2005-08-08 Thread Gleb Natapov
Hello, Included patch fixes bugs in ompi_free_list in the case ompi_free_list was created with NULL class and/or mpool parameters. Index: ompi/class/ompi_free_list.c === --- ompi/class/ompi_free_list.c (revision 6760) +++ ompi/class/

Re: [O-MPI devel] compile error

2005-08-08 Thread Ralph H. Castain
Very interesting - it built fine for me (building static). However, the ns_base_nds.c file is "stale", so I just committed a "delete" of that file. It shouldn't have been building anyway as it isn't in the Makefile. My guess, therefore, is that you are building dynamically and are encountering

Re: [O-MPI devel] compile error

2005-08-08 Thread Gleb Natapov
On Mon, Aug 08, 2005 at 07:44:48AM -0600, Ralph H. Castain wrote: > Very interesting - it built fine for me (building static). However, > the ns_base_nds.c file is "stale", so I just committed a "delete" of > that file. It shouldn't have been building anyway as it isn't in the > Makefile. My gue

Re: [O-MPI devel] compile error

2005-08-08 Thread Jeff Squyres
You should not need to re-run autogen.sh after a Makefile.am changes -- you only need to re-run autogen.sh if a .m4 file or configure.ac changes. See the HACKING file. Makefile's should be automatically regenerated during "make all" if their corresponding Makefile.am's were modified (depen

Re: [O-MPI devel] compile error

2005-08-08 Thread Ralph H. Castain
You shouldn't need to run autogen.sh after that update. The Makefile.am no longer included the ns_base_nds.c file - that change should have just (automatically) caused the local Makefile to be rebuilt without doing an autogen.sh of the entire tree. At 08:07 AM 8/8/2005, you wrote: On Mon, Au

Re: [O-MPI devel] compile error

2005-08-08 Thread Gleb Natapov
On Mon, Aug 08, 2005 at 10:11:11AM -0400, Jeff Squyres wrote: > You should not need to re-run autogen.sh after a Makefile.am changes -- > you only need to re-run autogen.sh if a .m4 file or configure.ac > changes. See the HACKING file. I know. You are right, but I am running autogen.sh and bui

Re: [O-MPI devel] compile error

2005-08-08 Thread Jeff Squyres
On Aug 8, 2005, at 10:17 AM, Gleb Natapov wrote: You should not need to re-run autogen.sh after a Makefile.am changes -- you only need to re-run autogen.sh if a .m4 file or configure.ac changes. See the HACKING file. I know. You are right, but I am running autogen.sh and build on different c

Re: [O-MPI devel] Fwd: Regarding MVAPI Component in Open MPI

2005-08-08 Thread Jeff Squyres
The README there was just copied over from the beta branch, and there is no mVAPI or Open IB support on the beta branch (the docs usually lag the code base -- they'll get a thorough scrubbing before the formal release). As we talked about on the teleconference (I confess to not remembering if

Re: [O-MPI devel] Fwd: Regarding MVAPI Component in Open MPI

2005-08-08 Thread Jeff Squyres
It looks like you are having timestamp issues, e.g.: make: Warning: File `Makefile.am' has modification time 3.6e+04 s in the future We typically see this in environments where NFS clients are not time synchronized properly with the NFS server (e.g., using ntp either to the NFS server direct

[O-MPI devel] New command line option: -gmca

2005-08-08 Thread Jeff Squyres
I just added a new command line option and changed the behavior of orterun with respect to MCA paramters to behave more the way one would expect. See my commit message below from r6764 for details. Begin forwarded message: Author: jsquyres Date: 2005-08-08 11:42:28 -0500 (Mon, 08 Aug 2005) N

Re: [O-MPI devel] [PATCH] for ompi_free_list.c

2005-08-08 Thread Galen Shipman
Changes are in the trunk Thanks, Gaeln On Aug 8, 2005, at 7:38 AM, Gleb Natapov wrote: Hello, Included patch fixes bugs in ompi_free_list in the case ompi_free_list was created with NULL class and/or mpool parameters. Index: ompi/class/ompi_free_list.c =

Re: [O-MPI devel] [PATCH] wrong variable type in OpenIB.

2005-08-08 Thread Galen Shipman
Gleb, Changes are in the trunk thanks, Galen On Aug 7, 2005, at 4:32 AM, Gleb Natapov wrote: Hello Galen, Included patch changes type of returned value from ibv_poll_cq. It should be signed because we check if it is less then zero later in the code. Index: ompi/mca/btl/openib/btl_openib_co