Re: [OMPI devel] Need to know your Github ID

2014-09-10 Thread Deva
devendar -> bureddy

On Wed, Sep 10, 2014 at 2:14 PM, Edgar Gabriel  wrote:

> edgar -> edgargabriel
>
>
> On 9/10/2014 5:46 AM, Jeff Squyres (jsquyres) wrote:
>
>> As the next step of the planned migration to Github, I need to know:
>>
>> - Your Github ID (so that you can be added to the new OMPI git repo)
>> - Your SVN ID (so that I can map SVN->Github IDs, and therefore map Trac
>> tickets to appropriate owners)
>>
>> Here's the list of SVN IDs who have committed over the past year -- I'm
>> guessing that most of these people will need Github IDs:
>>
>>   adrian
>>   alekseys
>>   alex
>>   alinas
>>   amikheev
>>   bbenton
>>   bosilca (done)
>>   bouteill
>>   brbarret
>>   bwesarg
>>   devendar
>>   dgoodell (done)
>>   edgar
>>   eugene
>>   ggouaillardet
>>   hadi
>>   hjelmn
>>   hpcchris
>>   hppritcha
>>   igoru
>>   jjhursey (done)
>>   jladd
>>   jroman
>>   jsquyres (done)
>>   jurenz
>>   kliteyn
>>   manjugv
>>   miked (done)
>>   mjbhaskar
>>   mpiteam (done)
>>   naughtont
>>   osvegis
>>   pasha
>>   regrant
>>   rfaucett
>>   rhc (done)
>>   rolfv (done)
>>   samuel
>>   shiqing
>>   swise
>>   tkordenbrock
>>   vasily
>>   vvenkates
>>   vvenkatesan
>>   yaeld
>>   yosefe
>>
>>
> --
> Edgar Gabriel
> Associate Professor
> Parallel Software Technologies Lab  http://pstl.cs.uh.edu
> Department of Computer Science  University of Houston
> Philip G. Hoffman Hall, Room 524Houston, TX-77204, USA
> Tel: +1 (713) 743-3857  Fax: +1 (713) 743-3335
> ___
> devel mailing list
> de...@open-mpi.org
> Subscription: http://www.open-mpi.org/mailman/listinfo.cgi/devel
> Link to this post: http://www.open-mpi.org/community/lists/devel/2014/09/
> 15801.php
>



-- 


-Devendar


[OMPI devel] Broken abort backtrace functionality

2014-09-29 Thread Deva
I looks like OMPI_MCA_mpi_abort_print_stack=1 is broken.  I'm seeing
following warning with it.

--
$mpirun -np 2  -x OMPI_MCA_mpi_abort_print_stack=1 ./hello_c
--
WARNING: A user-supplied value attempted to override the default-only MCA
variable named "mpi_abort_print_stack".

The user-supplied value was ignored.
--
--
WARNING: A user-supplied value attempted to override the default-only MCA
variable named "mpi_abort_print_stack".

The user-supplied value was ignored.
--
Hello, world, I am 1 of 2,
Hello, world, I am 0 of 2,
--


It seems HAVE_BACKTRACE is not defined by any configuration but, below
relevant code is guarded with it.


#if OPAL_WANT_PRETTY_PRINT_STACKTRACE && defined(HAVE_BACKTRACE)
 0,
 OPAL_INFO_LVL_9,
 MCA_BASE_VAR_SCOPE_READONLY,
#else
 MCA_BASE_VAR_FLAG_DEFAULT_ONLY,
 OPAL_INFO_LVL_9,
 MCA_BASE_VAR_SCOPE_CONSTANT,
#endif

$git grep HAVE_BACKTRACE
ompi/runtime/ompi_mpi_params.c:#if OPAL_WANT_PRETTY_PRINT_STACKTRACE &&
defined(HAVE_BACKTRACE)
$


-- 
-Devendar