2004-04-22 01:08:11 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* 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.
|
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.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-04-22 01:08:11 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-20 05:03:09 +04:00
|
|
|
#include "ompi_config.h"
|
2004-04-22 01:08:11 +04:00
|
|
|
#include "mca/topo/base/base.h"
|
|
|
|
#include "communicator/communicator.h"
|
|
|
|
#include "mca/topo/topo.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function - Retrieves graph topology information associated with a
|
|
|
|
* communicator
|
|
|
|
*
|
|
|
|
* @param comm - communicator for group with graph structure (handle)
|
|
|
|
* @param nodes - number of nodes in graph (integer)
|
|
|
|
* @param nedges - number of edges in graph (integer)
|
|
|
|
*
|
|
|
|
* @retval MPI_SUCCESS
|
|
|
|
* @retval MPI_ERR_TOPOLOGY
|
|
|
|
* @retval MPI_ERR_COMM
|
|
|
|
* @retval MPI_ERR_ARG
|
|
|
|
*/
|
2004-07-21 02:32:45 +04:00
|
|
|
int mca_topo_base_graphdims_get (MPI_Comm comm,
|
2004-04-22 01:08:11 +04:00
|
|
|
int *nodes,
|
|
|
|
int *nedges){
|
|
|
|
|
2004-07-21 02:32:45 +04:00
|
|
|
*nodes = ompi_comm_size(comm);
|
|
|
|
*nedges = comm->c_topo_comm->mtc_dims_or_index[*nodes -1];
|
2004-04-22 01:08:11 +04:00
|
|
|
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|