1
1
This commit was SVN r1077.
Этот коммит содержится в:
Prabhanjan Kambadur 2004-04-21 21:07:44 +00:00
родитель 8d28895224
Коммит 7723dc1dc0

Просмотреть файл

@ -1,34 +0,0 @@
/*
* $HEADER$
*/
#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
*/
int topo_base_graph_dims_get (MPI_Comm comm,
int *nodes,
int *nedges){
*nodes = comm->c_topo_comm->mtc_nprocs;
*nedges = comm->c_topo_comm->mtc_nedges;
return MPI_SUCCESS;
}