[OMPI devel] Fwd: Fwd: Purify found bugs inside open-mpi library

2009-05-01 Thread Brian Blank
-- Forwarded message -- From: Brian Blank List-Post: devel@lists.open-mpi.org Date: Fri, May 1, 2009 at 11:54 AM Subject: Re: [OMPI devel] Fwd: Purify found bugs inside open-mpi library To: Terry Dontje Hi Terry, I did a memset() prior to the call to processor_info(), and the U

Re: [OMPI devel] Inherent limit on #communicators?

2009-05-01 Thread Brian W. Barrett
Ugh - I'll fix today. Brian On Fri, 1 May 2009, Ralph Castain wrote: BTW: when compiling Brian's change, I got a warning about comparing signed and unsigned. Sure enough, I found that the communicator id is defined as an unsigned int, while the PML is treating it as a *signed* int. We need to

Re: [OMPI devel] OS X compilation broken

2009-05-01 Thread Ralph Castain
The problem is actually broader than OS-X. MTT shows failures on every platform. There are two problems: 1. OS-X is missing a string.h header in pstat/darwin module 2. "make check" in the test area is failing due to the datatype tests missing string.h in their headers I have fixed these, so hop

Re: [OMPI devel] -display-map behavior in 1.3

2009-05-01 Thread Greg Watson
Arrgh! Sorry, my bad. I must have been linked against an old version or something. When I recompiled the output went away. Greg On May 1, 2009, at 10:09 AM, Ralph Castain wrote: Interesting - I'm not seeing this behavior: graywolf54:trunk rhc$ mpirun -n 3 --xml --display-map hostname

[OMPI devel] OS X compilation broken

2009-05-01 Thread Jeff Squyres
The first tarball since the header file reduction was tested on MTT last night. We had across-the-board breakage on OS X: http://www.open-mpi.org/mtt/index.php?do_redir=1029 Can someone please fix? Thanks. -- Jeff Squyres Cisco Systems

Re: [OMPI devel] -display-map behavior in 1.3

2009-05-01 Thread Ralph Castain
Interesting - I'm not seeing this behavior: graywolf54:trunk rhc$ mpirun -n 3 --xml --display-map hostname graywolf54.lanl.gov graywolf54.lanl.gov graywolf54.lanl.gov graywolf54:trunk rhc$ Can you tell me more about when you see this? Note that the display-m

Re: [OMPI devel] Inherent limit on #communicators?

2009-05-01 Thread Ralph Castain
BTW: when compiling Brian's change, I got a warning about comparing signed and unsigned. Sure enough, I found that the communicator id is defined as an unsigned int, while the PML is treating it as a *signed* int. We need to get this corrected - which way do you want it to be? I will add this req

Re: [OMPI devel] -display-map behavior in 1.3

2009-05-01 Thread Ralph Castain
Hmmm...no, that's a bug. I'll fix it. Thanks! On Fri, May 1, 2009 at 7:24 AM, Greg Watson wrote: > Ralf, > > I've just noticed that if I use '-xml -display-map', I get the xml version > of the map and then the non-xml version is sent to stderr (wrapped in xml > tags). Was this by design? In my

[OMPI devel] -display-map behavior in 1.3

2009-05-01 Thread Greg Watson
Ralf, I've just noticed that if I use '-xml -display-map', I get the xml version of the map and then the non-xml version is sent to stderr (wrapped in xml tags). Was this by design? In my view it would be better to suppress the non-xml map altogether if the -xml option. 1.4 seems to do th

Re: [OMPI devel] Inherent limit on #communicators?

2009-05-01 Thread Ralph Castain
I'm not entirely sure if David is going to be in today, so I will answer for him (and let him correct me later!). This code is indeed representative of what the app is doing. Basically, the user repeatedly splits the communicator so he can run mini test cases before going on to the larger computat

Re: [OMPI devel] Inherent limit on #communicators?

2009-05-01 Thread Edgar Gabriel
David, is this code representative for what your app is doing? E.g. you have a base communicator (e.g. MPI_COMM_WORLD) which is being 'split', freed again, split, freed again etc. ? i.e. the important aspect is that the same 'base' communicator is being used for deriving new communicators aga