root/ompi/mca/osc/base/base.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * Copyright (c) 2004-2005 The Trustees of Indiana University.
   3  *                         All rights reserved.
   4  * Copyright (c) 2004-2006 The Trustees of the University of Tennessee.
   5  *                         All rights reserved.
   6  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
   7  *                         University of Stuttgart.  All rights reserved.
   8  * Copyright (c) 2004-2005 The Regents of the University of California.
   9  *                         All rights reserved.
  10  * Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
  11  * $COPYRIGHT$
  12  *
  13  * Additional copyrights may follow
  14  *
  15  * $HEADER$
  16  */
  17 /** @file:
  18  */
  19 
  20 #ifndef OMPI_MCA_OSC_BASE_H
  21 #define OMPI_MCA_OSC_BASE_H
  22 
  23 #include "ompi_config.h"
  24 #include "ompi/info/info.h"
  25 #include "ompi/communicator/communicator.h"
  26 #include "ompi/win/win.h"
  27 #include "opal/mca/base/base.h"
  28 
  29 /*
  30  * Global functions for MCA overall collective open and close
  31  */
  32 BEGIN_C_DECLS
  33 
  34 /*
  35  * function definitions
  36  */
  37 int ompi_osc_base_find_available(bool enable_progress_threads,
  38                                  bool enable_mpi_threads);
  39 
  40 int ompi_osc_base_select(ompi_win_t *win,
  41                          void **base,
  42                          size_t size,
  43                          int disp_unit,
  44                          ompi_communicator_t *comm,
  45                          opal_info_t *info,
  46                          int flavor,
  47                          int *model);
  48 
  49 int ompi_osc_base_finalize(void);
  50 
  51 OMPI_DECLSPEC extern mca_base_framework_t ompi_osc_base_framework;
  52 
  53 END_C_DECLS
  54 
  55 #endif

/* [<][>][^][v][top][bottom][index][help] */