
- Add support for fallback to previous coll module on non-commutative operations (#30) - Replace mutexes by atomic operations. - Use the correct nbc request type (for both ibcast and ireduce) * coll/base: document type casts in ompi_coll_base_retain_* - add module-wide topology cache - use standard instead of synchronous send and add mca parameter to control mode of initial send in ireduce/ibcast - reduce number of memory allocations - call the default request completion. - Remove the requests from the Fortran lookup conversion tables before completing and free it. Signed-off-by: George Bosilca <bosilca@icl.utk.edu> Signed-off-by: Joseph Schuchart <schuchart@hlrs.de> Co-authored-by: Joseph Schuchart <schuchart@hlrs.de>
43 строки
1.3 KiB
C
43 строки
1.3 KiB
C
/*
|
|
* Copyright (c) 2014-2020 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
#include "coll_adapt_context.h"
|
|
|
|
|
|
static void adapt_constant_reduce_context_construct(ompi_coll_adapt_constant_reduce_context_t *context)
|
|
{
|
|
OBJ_CONSTRUCT(&context->recv_list, opal_list_t);
|
|
OBJ_CONSTRUCT(&context->mutex_recv_list, opal_mutex_t);
|
|
OBJ_CONSTRUCT(&context->inbuf_list, opal_free_list_t);
|
|
}
|
|
|
|
static void adapt_constant_reduce_context_destruct(ompi_coll_adapt_constant_reduce_context_t *context)
|
|
{
|
|
OBJ_DESTRUCT(&context->mutex_recv_list);
|
|
OBJ_DESTRUCT(&context->recv_list);
|
|
OBJ_DESTRUCT(&context->inbuf_list);
|
|
}
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_coll_adapt_bcast_context_t, opal_free_list_item_t,
|
|
NULL, NULL);
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_coll_adapt_constant_bcast_context_t, opal_object_t,
|
|
NULL, NULL);
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_coll_adapt_reduce_context_t, opal_free_list_item_t,
|
|
NULL, NULL);
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_coll_adapt_constant_reduce_context_t, opal_object_t,
|
|
&adapt_constant_reduce_context_construct,
|
|
&adapt_constant_reduce_context_destruct);
|