Condividi tramite


funzione MPI_Waitany

Completa una delle diverse operazioni in sospeso.

Sintassi

int MPIAPI MPI_Waitany(
        int                              count,
        _Inout_count_(count) MPI_Request *array_of_requests,
  _Out_ int                              *index,
  _Out_ MPI_Status                       *status
);

Parametri

  • count
    Numero di voci nel parametro array_of_requests .

  • array_of_requests
    Matrice di MPI_Request handle delle operazioni in sospeso.

  • indice [out]
    Puntatore a un intero che indica l'indice nel parametro array_of_requests dell'operazione completata. La matrice viene indicizzata da zero in C e da una in Fortran.

  • stato [out]
    Puntatore a un oggetto MPI_Status che descrive l'operazione completata.

Valore restituito

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

In Fortran il valore restituito viene archiviato nel parametro IERROR .

Fortran

    MPI_WAITANY(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 può dipendere dalle operazioni corrispondenti in altri processi.

Questa funzione restituisce quando viene completata una delle operazioni associate alle richieste attive nel parametro array_of_requests . Se viene completata più operazioni in sospeso, viene scelto arbitrariamente. Se l'operazione completata è un'operazione di comunicazione persistente, la richiesta persistente viene contrassegnata come inattiva. Un'operazione nonpersistente viene deallocata e la relativa voce corrispondente nel parametro array_of_requests è impostata 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_Testany

MPI_Wait

MPI_Waitall

MPI_Waitsome

MPI_Status