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;
|
|
|
|
}
|