2006-01-28 18:38:37 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The Trustees of the University of Tennessee.
|
2006-01-28 18:38:37 +03:00
|
|
|
* All rights reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-01-28 18:38:37 +03:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-01-28 18:38:37 +03:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-01-28 18:38:37 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/** @file:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OMPI_MCA_OSC_BASE_H
|
|
|
|
#define OMPI_MCA_OSC_BASE_H
|
|
|
|
|
2009-03-04 18:35:54 +03:00
|
|
|
#include "ompi_config.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/info/info.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/win/win.h"
|
2013-03-28 01:17:31 +04:00
|
|
|
#include "opal/mca/base/base.h"
|
2006-01-28 18:38:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global functions for MCA overall collective open and close
|
|
|
|
*/
|
2007-05-16 19:46:52 +04:00
|
|
|
BEGIN_C_DECLS
|
2006-01-28 18:38:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* function definitions
|
|
|
|
*/
|
2007-05-16 19:46:52 +04:00
|
|
|
int ompi_osc_base_find_available(bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads);
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
int ompi_osc_base_select(ompi_win_t *win,
|
2014-02-25 21:36:43 +04:00
|
|
|
void **base,
|
|
|
|
size_t size,
|
|
|
|
int disp_unit,
|
|
|
|
ompi_communicator_t *comm,
|
2007-05-16 19:46:52 +04:00
|
|
|
ompi_info_t *info,
|
2014-02-25 21:36:43 +04:00
|
|
|
int flavor,
|
|
|
|
int *model);
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
int ompi_osc_base_finalize(void);
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2013-03-28 01:17:31 +04:00
|
|
|
OMPI_DECLSPEC extern mca_base_framework_t ompi_osc_base_framework;
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
END_C_DECLS
|
|
|
|
|
2006-01-28 18:38:37 +03:00
|
|
|
#endif
|