2005-08-12 06:41:14 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-08-12 06:41:14 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2006-03-28 02:48:12 +04:00
|
|
|
* Copyright (c) 2004-2006 The Regents of the University of California.
|
2005-08-12 06:41:14 +04:00
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* BML Management Layer (BML)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "ompi/mca/btl/btl.h"
|
2005-08-12 06:41:14 +04:00
|
|
|
|
|
|
|
#ifndef MCA_BML_R2_H
|
|
|
|
#define MCA_BML_R2_H
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/types.h"
|
|
|
|
#include "ompi/class/ompi_free_list.h"
|
|
|
|
#include "ompi/mca/bml/bml.h"
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2005-08-12 06:41:14 +04:00
|
|
|
|
|
|
|
typedef mca_bml_base_module_recv_cb_fn_t mca_bml_r2_recv_reg_t;
|
|
|
|
|
|
|
|
void mca_bml_r2_recv_callback(
|
|
|
|
mca_btl_base_module_t* btl,
|
|
|
|
mca_btl_base_tag_t tag,
|
|
|
|
mca_btl_base_descriptor_t *des,
|
|
|
|
void* cbdata);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* BML module interface functions and attributes.
|
|
|
|
*/
|
|
|
|
struct mca_bml_r2_module_t {
|
|
|
|
mca_bml_base_module_t super;
|
|
|
|
size_t num_btl_modules;
|
|
|
|
mca_btl_base_module_t** btl_modules;
|
|
|
|
size_t num_btl_progress;
|
|
|
|
mca_btl_base_component_progress_fn_t * btl_progress;
|
|
|
|
mca_bml_r2_recv_reg_t r2_reg[256];
|
2006-03-29 20:19:17 +04:00
|
|
|
bool btls_added;
|
2006-08-14 23:17:36 +04:00
|
|
|
bool show_unreach_errors;
|
2005-08-12 06:41:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct mca_bml_r2_module_t mca_bml_r2_module_t;
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
OMPI_DECLSPEC extern mca_bml_base_component_1_0_0_t mca_bml_r2_component;
|
2005-08-12 06:41:14 +04:00
|
|
|
extern mca_bml_r2_module_t mca_bml_r2;
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
int mca_bml_r2_component_open(void);
|
|
|
|
int mca_bml_r2_component_close(void);
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
mca_bml_base_module_t* mca_bml_r2_component_init( int* priority,
|
|
|
|
bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads );
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
int mca_bml_r2_progress(void);
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
int mca_bml_r2_add_procs( size_t nprocs,
|
|
|
|
struct ompi_proc_t** procs,
|
|
|
|
struct mca_bml_base_endpoint_t** bml_endpoints,
|
|
|
|
struct ompi_bitmap_t* reachable );
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
int mca_bml_r2_del_procs( size_t nprocs,
|
|
|
|
struct ompi_proc_t** procs );
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-03-28 02:48:12 +04:00
|
|
|
int mca_bml_r2_add_btl( mca_btl_base_module_t* btl );
|
|
|
|
|
|
|
|
int mca_bml_r2_del_btl( mca_btl_base_module_t* btl );
|
|
|
|
|
2006-05-04 19:19:12 +04:00
|
|
|
int mca_bml_r2_del_proc_btl( struct ompi_proc_t* proc, mca_btl_base_module_t* btl );
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
int mca_bml_r2_register( mca_btl_base_tag_t tag,
|
|
|
|
mca_bml_base_module_recv_cb_fn_t cbfunc,
|
|
|
|
void* data );
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-17 00:21:38 +04:00
|
|
|
int mca_bml_r2_register_error( mca_btl_base_module_error_cb_fn_t cbfunc );
|
2005-08-12 06:41:14 +04:00
|
|
|
|
|
|
|
int mca_bml_r2_finalize( void );
|
|
|
|
|
2005-08-24 14:39:23 +04:00
|
|
|
int mca_bml_r2_component_fini(void);
|
2005-08-12 06:41:14 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-08-12 06:41:14 +04:00
|
|
|
#endif /* OMPI_MCA_BML_R2_H */
|