Condividi tramite


funzione MPI_Waitall

Completa più operazioni in sospeso.

Sintassi

int MPIAPI MPI_Waitall(
   int                              count,
   _Inout_count_(count) MPI_Request *array_of_requests,
   _Out_cap_(count) MPI_Status      *array_of_statuses
);

Parametri

  • count
    Numero di voci nel parametro array_of_requests .

  • array_of_requests
    Matrice di MPI_Request handle delle operazioni in sospeso.

  • array_of_statuses
    Matrice di oggetti MPI_Status che descrivono le operazioni completate. Potrebbe essere MPI_STATUSES_IGNORE se non vengono richieste informazioni sullo stato.

Valore restituito

Restituisce MPI_SUCCESS sull'esito positivo. In caso contrario, il valore restituito è un codice di errore.

Restituisce MPI_ERR_IN_STATUS se una o più operazioni vengono completate in caso di errore. Lo stato delle operazioni non riuscite viene restituito nella voce corrispondente nel parametro array_of_statuses .

In Fortran il valore restituito viene archiviato nel parametro IERROR .

Fortran

    MPI_WAITALL(COUNT, ARRAY_OF_REQUESTS, INDEX, STATUS, IERROR)
        INTEGER COUNT, ARRAY_OF_REQUESTS, INDEX, STATUS(MPI_STATUS_SIZE), IERROR

Commenti

Questa funzione è un'operazione non locale, il completamento riuscito potrebbe dipendere dalle operazioni corrispondenti in altri processi.

Una chiamata a MPI_Waitall restituisce quando vengono completate tutte le operazioni associate alle richieste attive nella matrice array_of_requests . Tutte le voci associate alle operazioni di comunicazione persistenti comportano l'inserimento della richiesta persistente come inattiva. Altre operazioni vengono deallocate e le relative voci in array_of_requests sono impostate su MPI_REQUEST_NULL.

Le voci nel parametro array_of_requests possono essere MPI_REQUEST_NULL o un handle a una richiesta di comunicazione persistente inattiva. Se il parametro count è zero o tutte le voci in array_of_requests sono MPI_REQUEST_NULL o richieste di comunicazione persistenti inattive, la funzione restituisce immediatamente con il parametro di indiceimpostato suMPI_UNDEFINED e uno stato vuoto.

Requisiti

Prodotto

Pacchetto ridistribuibile HPC Pack 2012 MS-MPI Redistributable Package, HPC Pack 2008 R2 MS-MPI Redistributable Package, HPC Pack 2008 MS-MPI Redistributable Package o HPC Pack 2008 Utilità client

Intestazione

Mpi.h; Mpif.h

Libreria

Msmpi.lib

DLL

Msmpi.dll

Vedi anche

Funzioni mpI punta a punto

MPI_Testall

MPI_Wait

MPI_Waitany

MPI_Waitsome

MPI_Status