MPI_Isend

Nazwa:

MPI_Isend - Rozpoczyna nie blokowane wysyłanie w trybie standardowym;

Wejściowe parametry:

buf - poczatkowy adres buforu do wyslania;
count
- ilośc elementów w buforze(integer);
datatype
- typ danych bufora wysyłanego(uchwyt);
dest
- rank procesu przeznaczenia (integer);
tag
- identyfikator wiadomości (integer);
comm
- komunikator (uchwyt);

Wyjściowe parametry:

request - kontekst wiadomości używany do badania stanu wiadomości (uchwyt);

Użycie:

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