MPI_Ibsend

Nazwa:

MPI_Ibsend - Rozpoczyna nie blokowe buforowane wysyłanie;

Wejściowe parametry:

buf - początkowy adres bufora wysyłanego;
count - ilość elementów do wysłania (integer);
datatype
- typ danych (uchwyt);
dest
- rank procesu przeznaczenia (integer);
tag - identyfikator (tag) wiadomości (integer) ;
comm
- komunikator (uchwyt) ;

Wyjściowe parametry:

request - kontekst wiadomości (uchwyt) ;

Użycie:

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