コード例 #1
0
ファイル: visual_mess.c プロジェクト: pkestene/mpe
int  MPI_Rsend(MPE_CONST void *buf, int count, MPI_Datatype datatype,
	       int dest, int tag, MPI_Comm comm)
{
  int  returnVal;
  int typesize;

  
  
  returnVal = PMPI_Rsend( buf, count, datatype, dest, tag, comm );

  if (dest != MPI_PROC_NULL) {
    MPI_Type_size( datatype, &typesize );
    prof_send( procid_1, dest, tag, typesize*count,
	       "MPI_Rsend" );
  }

  return returnVal;
}
コード例 #2
0
ファイル: MPI_Rsend.c プロジェクト: 00liujj/trilinos
/*=============================================================================================*/
int MPI_Rsend (void* message, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
{
  _MPI_COVERAGE();
  return PMPI_Rsend(message, count, datatype, dest, tag, comm); 
}
コード例 #3
0
ファイル: smpi_mpi.c プロジェクト: FlorianPO/simgrid
int MPI_Rsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) {
  return PMPI_Rsend(buf, count, datatype, dest, tag, comm);
}