ccd2624e3f
This commit was SVN r6326.
119 строки
3.1 KiB
C
119 строки
3.1 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 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$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* Progress engine for Open MPI
|
|
*/
|
|
|
|
#ifndef _OMPI_PROGRESS_H_
|
|
#define _OMPI_PROGRESS_H_
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Initialize the progress engine
|
|
*
|
|
* Initialize the progress engine, including constructing the
|
|
* proper locks and allocating space for the progress registration
|
|
* functions. At this point, any function in the progress engine
|
|
* interface may be called.
|
|
*/
|
|
OMPI_DECLSPEC extern int opal_progress_init(void);
|
|
|
|
/**
|
|
* Configure the progress engine for executing MPI applications
|
|
*
|
|
* Register to receive any needed information from the GPR and
|
|
* intialize any data structures required for MPI applications.
|
|
*
|
|
* \note opal_progress_init() must be called before calling
|
|
* this function. Failure to do so is an error.
|
|
*/
|
|
OMPI_DECLSPEC extern int opal_progress_mpi_init(void);
|
|
|
|
/**
|
|
* Turn on optimizations for MPI progress
|
|
*
|
|
* Turn on optimizations for MPI applications. This includes lowering
|
|
* the rate at which the event library is ticked if it is not under
|
|
* active use and possibly disabling the sched_yield call when the
|
|
* progress engine is idle
|
|
*/
|
|
OMPI_DECLSPEC extern int opal_progress_mpi_enable(void);
|
|
|
|
/**
|
|
* Turn off all optimizations enabled by opal_progress_mpi_enable().
|
|
*
|
|
* Completely reverses all optimizations enabled by
|
|
* opal_progress_mpi_enable(). The event library resumes constant
|
|
* ticking and the progress engine yields the CPU when idle.
|
|
*/
|
|
OMPI_DECLSPEC extern int opal_progress_mpi_disable(void);
|
|
|
|
/**
|
|
* Shut down the progress engine
|
|
*
|
|
* Shut down the progress engine. This includes deregistering all
|
|
* registered callbacks and freeing all resources. After finalize
|
|
* returns, no calls into the progress interface are allowed.
|
|
*/
|
|
OMPI_DECLSPEC extern int opal_progress_finalize(void);
|
|
|
|
/**
|
|
* Control how the event library is called
|
|
*/
|
|
OMPI_DECLSPEC extern void opal_progress_events(int);
|
|
|
|
/**
|
|
* Progress all pending events
|
|
*/
|
|
OMPI_DECLSPEC extern void opal_progress(void);
|
|
|
|
typedef int (*opal_progress_callback_t)(void);
|
|
|
|
|
|
/**
|
|
* Register an event to be progressed
|
|
*/
|
|
OMPI_DECLSPEC int opal_progress_register(opal_progress_callback_t cb);
|
|
|
|
|
|
/**
|
|
* Unregister previously registered event
|
|
*/
|
|
OMPI_DECLSPEC int opal_progress_unregister(opal_progress_callback_t cb);
|
|
|
|
|
|
/**
|
|
* Increase count of MPI users of the event library
|
|
*/
|
|
OMPI_DECLSPEC int opal_progress_event_increment(void);
|
|
|
|
/**
|
|
* Decrease count of MPI users of the event library
|
|
*/
|
|
OMPI_DECLSPEC int opal_progress_event_decrement(void);
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|