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

  if (IS_EVENT_GEN_ON_FOR(CG))
  {
    EVENT_GEN_OFF();
    esd_enter(epk_mpi_regid[EPK__MPI_COMM_REMOTE_SIZE]);

    return_val = PMPI_Comm_remote_size(comm, size);

    esd_exit(epk_mpi_regid[EPK__MPI_COMM_REMOTE_SIZE]);
    EVENT_GEN_ON();
  }
  else
  {
    return_val = PMPI_Comm_remote_size(comm, size);
  }

  return return_val;
}
示例#2
0
/* STUB */
int MPI_Comm_remote_size ( MPI_Comm comm, int *size )
{
  _MPI_COVERAGE();
  return PMPI_Comm_remote_size (comm, size);
}
示例#3
0
int MPI_Comm_remote_size(MPI_Comm comm, int* size) {
  return PMPI_Comm_remote_size(comm, size);
}