/**
 * Measurement wrapper for MPI_Graphdims_get
 * @note Auto-generated by wrapgen from template: std.w
 * @note C interface
 * @note Introduced with MPI 1.0
 * @ingroup topo
 */
int MPI_Graphdims_get(MPI_Comm comm,
                      int*     nnodes,
                      int*     nedges)
{
  int return_val;

  if (IS_EVENT_GEN_ON_FOR(TOPO))
  {
    EVENT_GEN_OFF();
    esd_enter(epk_mpi_regid[EPK__MPI_GRAPHDIMS_GET]);

    return_val = PMPI_Graphdims_get(comm, nnodes, nedges);

    esd_exit(epk_mpi_regid[EPK__MPI_GRAPHDIMS_GET]);
    EVENT_GEN_ON();
  }
  else
  {
    return_val = PMPI_Graphdims_get(comm, nnodes, nedges);
  }

  return return_val;
}
示例#2
0
int MPI_Graphdims_get ( MPI_Comm comm, int *nnodes, int *nedges )
{
  _MPI_COVERAGE();
  return PMPI_Graphdims_get (comm, nnodes, nedges);
}
示例#3
0
int MPI_Graphdims_get(MPI_Comm comm, int* nnodes, int* nedges) {
  return PMPI_Graphdims_get(comm, nnodes, nedges);
}