MPI_Send

Nazwa: 

MPI_Send - proste wysyłanie; 

Wejściowe parametry: 

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

Użycie:

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