1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University.
* All rights reserved.
* Copyright (c) 2004-2017 The Trustees of the University of Tennessee.
* All rights reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2014 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "opal/util/show_help.h"
#include "ompi/constants.h"
#include "ompi/mca/mca.h"
#include "opal/mca/base/base.h"
#include "ompi/mca/osc/osc.h"
#include "ompi/mca/osc/base/base.h"
#include "ompi/info/info.h"
#include "ompi/communicator/communicator.h"
#include "ompi/win/win.h"
int
ompi_osc_base_select(ompi_win_t *win,
void **base,
size_t size,
int disp_unit,
ompi_communicator_t *comm,
int flavor,
int *model)
{
opal_list_item_t *item;
ompi_osc_base_component_t *best_component = NULL;
int best_priority = -1, priority;
if (opal_list_get_size(&ompi_osc_base_framework.framework_components) <= 0) {
/* we don't have any components to support us... */
return OMPI_ERR_NOT_SUPPORTED;
}
for (item = opal_list_get_first(&ompi_osc_base_framework.framework_components) ;
item != opal_list_get_end(&ompi_osc_base_framework.framework_components) ;
item = opal_list_get_next(item)) {
ompi_osc_base_component_t *component = (ompi_osc_base_component_t*)
((mca_base_component_list_item_t*) item)->cli_component;
priority = component->osc_query(win, base, size, disp_unit, comm,
win->super.s_info, flavor);
if (priority < 0) {
continue;
}
if (priority > best_priority) {
best_component = component;
best_priority = priority;
}
}
if (NULL == best_component) return OMPI_ERR_NOT_SUPPORTED;
#if OPAL_ENABLE_FT_MPI
if(ompi_ftmpi_enabled) {
/* check if module is tested for FT, warn if not. */
const char* ft_whitelist="";
opal_show_help("help-mpi-ft.txt", "module:untested:failundef", true,
best_component->osc_version.mca_type_name,
best_component->osc_version.mca_component_name,
ft_whitelist);
}
#endif /* OPAL_ENABLE_FT_MPI */
opal_output_verbose( 10, ompi_osc_base_framework.framework_output,
"select: component %s selected",
best_component->osc_version.mca_component_name );
return best_component->osc_select(win, base, size, disp_unit, comm,
win->super.s_info, flavor, model);
}
|