Condividi tramite


funzione MPI_Testsome

Verifica il completamento di alcune richieste fornite.

Sintassi

int MPIAPI MPI_Testsome(
        int                                                incount,
        _Inout_count_(incount) MPI_Request                 *array_of_requests,
  _Out_ int                                                *outcount,
        _Out_cap_post_count_(incount,*outcount) int        *array_of_indices,
        _Out_cap_post_count_(incount,*outcount) MPI_Status *array_of_statuses
);

Parametri

  • conteggio
    Numero di voci nel parametro array_of_requests .

  • array_of_requests
    Matrice di MPI_Request handle di operazioni in sospeso.

  • outcount [out]
    Numero di richieste completate.

  • array_of_indices
    Matrice di indici nel array_of_requests di operazioni completate. Il array_of_requests viene indicizzato da zero in C e da uno in Fortran.

  • array_of_statuses
    Matrice di oggetti di stato per le operazioni completate o MPI_STATUSES_IGNORE.

Valore restituito

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

In Fortran il valore restituito viene archiviato nel parametro IERROR .

Fortran

    MPI_TESTSOME(INCOUNT, ARRAY_OF_REQUESTS, OUTCOUNT, ARRAY_OF_INDICES, ARRAY_OF_STATUSES, IERROR)
        INTEGER INCOUNT, ARRAY_OF_REQUESTS(*), OUTCOUNT, ARRAY_OF_INDICES(*),
        ARRAY_OF_STATUSES(MPI_STATUS_SIZE,*), IERROR

Commenti

Anche se è possibile elencare più volte un handle di richiesta nella array_of_requests, tale azione viene considerata errata e può causare l'annullamento dell'esecuzione del programma o la generazione di risultati non corretti.

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