MPI_Rsend 

Nazwa: 

MPI_Rsend - Proste "przygotowane" wysyłanie

Wejściowe parametry: 

buf - początkowy adres buforu do wysłania;
count
- ilość elementów w buforze (integer);
datatype
- typ danych (uchwyt);
dest
- rank procesu odbierającego lub MPI_ANY_SOURCE (integer);
tag
- identyfikator wiadomości lub MPI_ANY_TAG (integer);
comm
- komunikator (uchwyt);

Użycie:

#include "mpi.h"
int MPI_Rsend( buf, count, datatype, dest, tag, comm )
void *buf;
int count, dest, tag;
MPI_Datatype datatype;
MPI_Comm comm;