MCPcopy Create free account
hub / github.com/Kitware/VTK / NoBlockReceive

Function NoBlockReceive

Parallel/MPI/vtkMPIController.h:245–250  ·  view source on GitHub ↗

@{ * This method receives data from a corresponding send (non-blocking). * The last argument, * vtkMPICommunicator::Request& req can later be used (with * req.Test() ) to test the success of the message. Return values are * 1 for success and 0 otherwise. * Note: These methods delegate to the communicator */

Source from the content-addressed store, hash-verified

243 * Note: These methods delegate to the communicator
244 */
245 int NoBlockReceive(
246 int* data, int length, int remoteProcessId, int tag, vtkMPICommunicator::Request& req)
247 {
248 return ((vtkMPICommunicator*)this->Communicator)
249 ->NoBlockReceive(data, length, remoteProcessId, tag, req);
250 }
251 int NoBlockReceive(
252 unsigned long* data, int length, int remoteProcessId, int tag, vtkMPICommunicator::Request& req)
253 {

Callers

nothing calls this directly

Calls 1

NoBlockReceiveMethod · 0.80

Tested by

no test coverage detected