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.
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $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"
|
2006-01-28 18:38:37 +03:00
|
|
|
#include "opal/class/opal_list.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
OMPI_DECLSPEC int ompi_osc_base_open(void);
|
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,
|
|
|
|
ompi_info_t *info,
|
|
|
|
ompi_communicator_t *comm);
|
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
|
|
|
OMPI_DECLSPEC int ompi_osc_base_close(void);
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
OMPI_DECLSPEC extern opal_list_t ompi_osc_base_open_components;
|
2007-05-16 19:46:52 +04:00
|
|
|
extern opal_list_t ompi_osc_base_avail_components;
|
2006-08-24 20:38:08 +04:00
|
|
|
OMPI_DECLSPEC extern int ompi_osc_base_output;
|
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
|