Re: [OMPI devel] -display-map

2008-10-19 Thread Greg Watson
Ralph, It seems a little strange to be using mpirun for this, but barring providing a separate command, or using ompi_info, I think this would solve our problem. Thanks, Greg On Oct 17, 2008, at 10:46 AM, Ralph Castain wrote: Sorry for delay - had to ponder this one for awhile. Jeff

Re: [OMPI devel] Possible buffer overrun bug in opal_free_list_grow, called by MPI::Init

2008-10-19 Thread Stephan Kramer
George Bosilca wrote: Stephan, You might be right. intptr_t is a signed type, which allows the result of % to be potentially negative. However, on the other side, mod is defined as a size_t which [based on my memory] is definitively unsigned as it represent a size. Did you try to apply