MPI_Testsome
--- Tests for some given communications to complete
Input Parameters
- incount
- length of array_of_requests (integer)
- array_of_requests
- array of requests (array of handles)
Output Parameters
- outcount
- number of completed requests (integer)
- array_of_indices
- array of indices of operations that
completed (array of integers)
- array_of_statuses
- array of status objects for
operations that completed (array of Status)
Synopsis
#include "mpi.h"
int MPI_Testsome( incount, array_of_requests, outcount, array_of_indices,
array_of_statuses )
int incount, *outcount, array_of_indices[];
MPI_Request array_of_requests[];
MPI_Status array_of_statuses[];
Location: testsome.c