1
1
openmpi/src/mca/topo/base/topo_base_graphdims_get.c

31 строка
763 B
C
Исходник Обычный вид История

/*
* $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_graphdims_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;
}