2004-03-07 01:40:26 +03: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.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2008-07-29 02:40:57 +04:00
|
|
|
* Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
2009-03-13 01:38:14 +03:00
|
|
|
* Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-03-07 01:40:26 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_TOPO_BASE_H
|
|
|
|
#define MCA_TOPO_BASE_H
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-03-07 01:40:26 +03:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
#include "opal/class/opal_list.h"
|
2009-03-13 01:38:14 +03:00
|
|
|
#include "opal/mca/mca.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mca/topo/topo.h"
|
|
|
|
#include "ompi/proc/proc.h"
|
2009-03-13 01:38:14 +03:00
|
|
|
#include "ompi/communicator/communicator.h"
|
2004-03-08 09:48:24 +03:00
|
|
|
|
2004-03-07 01:40:26 +03:00
|
|
|
/*
|
|
|
|
* All stuff goes in here
|
|
|
|
*/
|
2007-05-16 19:46:52 +04:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2008-07-29 02:40:57 +04:00
|
|
|
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_open(void);
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_close(void);
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
int mca_topo_base_comm_select(ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_base_component_t *preferred);
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
int mca_topo_base_comm_unselect(ompi_communicator_t *comm);
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
int mca_topo_base_find_available (bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads);
|
2004-03-07 01:40:26 +03:00
|
|
|
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_init_comm (ompi_communicator_t *comm);
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_get_param (ompi_communicator_t *comm, int keyval);
|
2004-03-07 01:40:26 +03:00
|
|
|
|
|
|
|
/*
|
2004-08-02 04:24:22 +04:00
|
|
|
* All the glue functions which we will provide to the users by
|
|
|
|
* default. The component authors need to only write back-end
|
|
|
|
* functions for graph_map() and cart_map() for their topology
|
|
|
|
* components. But they can implement these glue functions if
|
|
|
|
* they want.
|
2004-03-07 01:40:26 +03:00
|
|
|
*/
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_coords (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int rank,
|
|
|
|
int maxdims,
|
|
|
|
int *coords);
|
|
|
|
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_create (mca_topo_base_comm_t *topo_data,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *proc_count,
|
|
|
|
ompi_proc_t **proc_pointers,
|
|
|
|
int *new_rank,
|
|
|
|
int ndims,
|
|
|
|
int *dims,
|
|
|
|
int *periods,
|
|
|
|
bool reorder);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cartdim_get (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *ndims);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_get (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int maxdims,
|
|
|
|
int *dims,
|
|
|
|
int *periods,
|
|
|
|
int *coords);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_rank (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *coords,
|
|
|
|
int *rank);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_shift (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int direction,
|
|
|
|
int disp,
|
|
|
|
int *rank_source,
|
|
|
|
int *rank_dest);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_cart_sub (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *remain_dims,
|
2009-03-13 01:38:14 +03:00
|
|
|
ompi_communicator_t **new_comm);
|
2004-08-02 04:24:22 +04:00
|
|
|
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_graph_create (mca_topo_base_comm_t *topo_data,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *proc_count,
|
|
|
|
ompi_proc_t **proc_pointers,
|
|
|
|
int *new_rank,
|
|
|
|
int nnodes,
|
|
|
|
int *index,
|
|
|
|
int *edges,
|
|
|
|
bool reorder);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_graphdims_get (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int *nodes,
|
|
|
|
int *nedges);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_graph_get (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int maxindex,
|
|
|
|
int maxedges,
|
|
|
|
int *index,
|
|
|
|
int *edges);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_graph_neighbors (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int rank,
|
|
|
|
int maxneighbors,
|
|
|
|
int *neighbors);
|
|
|
|
|
2009-03-13 01:38:14 +03:00
|
|
|
OMPI_DECLSPEC int mca_topo_base_graph_neighbors_count (ompi_communicator_t *comm,
|
2004-08-02 04:24:22 +04:00
|
|
|
int rank,
|
|
|
|
int *nneighbors);
|
2004-03-07 01:40:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC extern int mca_topo_base_output;
|
2007-05-16 19:46:52 +04:00
|
|
|
extern int mca_topo_base_param;
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
OMPI_DECLSPEC extern opal_list_t mca_topo_base_components_available;
|
|
|
|
OMPI_DECLSPEC extern opal_list_t mca_topo_base_components_opened;
|
2004-07-21 02:32:45 +04:00
|
|
|
|
2007-05-16 19:46:52 +04:00
|
|
|
extern bool mca_topo_base_components_opened_valid;
|
|
|
|
extern bool mca_topo_base_components_available_valid;
|
|
|
|
|
|
|
|
END_C_DECLS
|
2004-03-07 01:40:26 +03:00
|
|
|
|
|
|
|
#endif /* MCA_BASE_TOPO_H */
|