Condividi tramite


funzione MPI_Testall

Verifica il completamento di tutte le richieste avviate in precedenza.

Sintassi

int MPIAPI MPI_Testall(
   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 di operazioni in sospeso.

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

Valore restituito

Restituisce MPI_SUCCESS in caso di 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_TESTALL(COUNT, ARRAY_OF_REQUESTS, FLAG, ARRAY_OF_STATUSES, IERROR)
        LOGICAL FLAG
        INTEGER COUNT, ARRAY_OF_REQUESTS(*),
        ARRAY_OF_STATUSES(MPI_STATUS_SIZE,*), IERROR

Requisiti

Prodotto

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

Intestazione

Mpi.h; Mpif.h

Libreria

Msmpi.lib

DLL

Msmpi.dll

Vedi anche

Funzioni da punto a punto MPI