6f808d9b05
- This patch solely _adds_ required headers and is rather localized The next patch (after RFC) heavily removes headers (based on script) - ompi/communicator/communicator.h: For sources that use ompi_mpi_comm_world, don't require them to include "mpi.h" - ompi/debuggers/ompi_common_dll.c: mca_topo_base_comm_1_0_0_t needs #include "ompi/mca/topo/topo.h" - ompi/errhandler/errhandler_predefined.h: ompi/communicator/communicator.h depends on this header file! To prevent recursion just have fwd declarations. #include "ompi/types.h" for fwd declarations of the main structs. - ompi/mca/btl/btl.h: #include "opal/types.h" for ompi_ptr_t - ompi/mca/mpool/base/mpool_base_tree.c: We use ompi_free_list_t and ompi_rb_tree_t, so have the proper classes - ompi/mca/op/op.h: Op is pretty self-contained: Nobody up to now has done #include "opal/class/opal_object.h" - ompi/mca/osc/pt2pt/osc_pt2pt_replyreq.h: #include "opal/types.h" for ompi_ptr_t - ompi/mca/pml/base/base.h: We use opal_lists - ompi/mca/pml/dr/pml_dr_vfrag.h: #include "opal/types.h" for ompi_ptr_t - ompi/mca/pml/ob1/pml_ob1_hdr.h: #include "ompi/mca/btl/btl.h" for mca_btl_base_segment_t - opal/dss/dss_unpack.c: #include "opal/types.h" - opal/mca/base/base.h: #include "opal/util/cmd_line.h" for opal_cmd_line_t - orte/mca/oob/tcp/oob_tcp.c: #include "opal/types.h" for opal_socklen_t - orte/mca/oob/tcp/oob_tcp.h: #include "opal/threads/threads.h" for opal_thread_t - orte/mca/oob/tcp/oob_tcp_msg.c: #include "opal/types.h" - orte/mca/oob/tcp/oob_tcp_peer.c: #include "opal/types.h" for opal_socklen_t - orte/mca/oob/tcp/oob_tcp_send.c: #include "opal/types.h" - orte/mca/plm/base/plm_base_proxy.c: #include "orte/util/name_fns.h" for ORTE_NAME_PRINT - orte/mca/rml/base/rml_base_receive.c: #include "opal/util/output.h" for OPAL_OUTPUT_VERBOSE - orte/mca/rml/oob/rml_oob_recv.c: #include "opal/types.h" for ompi_iov_base_ptr_t - orte/mca/rml/oob/rml_oob_send.c: #include "opal/types.h" for ompi_iov_base_ptr_t - orte/runtime/orte_data_server.c #include "opal/util/output.h" for OPAL_OUTPUT_VERBOSE - orte/runtime/orte_globals.h: #include "orte/util/name_fns.h" for ORTE_NAME_PRINT Tested on Linux/x86-64 This commit was SVN r20817.
72 строки
2.3 KiB
C
72 строки
2.3 KiB
C
/* -*- Mode: C; c-basic-offset:4 ; -*- */
|
|
/*
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. 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$
|
|
*/
|
|
|
|
#ifndef MCA_PML_BASE_H
|
|
#define MCA_PML_BASE_H
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "ompi/mca/pml/pml.h"
|
|
#include "opal/class/opal_list.h"
|
|
#include "opal/class/opal_pointer_array.h"
|
|
|
|
/*
|
|
* Global functions for the PML
|
|
*/
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* This is the base priority for a PML wrapper component
|
|
* If there exists more than one then it is undefined
|
|
* which one is picked.
|
|
*/
|
|
#define PML_SELECT_WRAPPER_PRIORITY -128
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_open(void);
|
|
OMPI_DECLSPEC int mca_pml_base_progress(void);
|
|
OMPI_DECLSPEC int mca_pml_base_select(bool enable_progress_threads,
|
|
bool enable_mpi_threads);
|
|
/* share in modex the name of the selected component */
|
|
OMPI_DECLSPEC int mca_pml_base_pml_selected(const char *name);
|
|
/* verify that all new procs are using the currently selected component */
|
|
OMPI_DECLSPEC int mca_pml_base_pml_check_selected(const char *my_pml,
|
|
struct ompi_proc_t **procs,
|
|
size_t nprocs);
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_finalize(void);
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_close(void);
|
|
|
|
OMPI_DECLSPEC int mca_pml_base_ft_event(int state);
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
OMPI_DECLSPEC extern int mca_pml_base_output;
|
|
OMPI_DECLSPEC extern opal_list_t mca_pml_base_components_available;
|
|
OMPI_DECLSPEC extern mca_pml_base_component_t mca_pml_base_selected_component;
|
|
OMPI_DECLSPEC extern mca_pml_base_module_t mca_pml;
|
|
OMPI_DECLSPEC extern opal_pointer_array_t mca_pml_base_pml;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_PML_BASE_H */
|