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

Function NoBlockSend

Parallel/MPI/vtkMPIController.h:140–145  ·  view source on GitHub ↗

@{ * This method sends data to another process (non-blocking). * Tag eliminates ambiguity when multiple sends or receives * exist in the same process. 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

138 * Note: These methods delegate to the communicator
139 */
140 int NoBlockSend(
141 const int* data, int length, int remoteProcessId, int tag, vtkMPICommunicator::Request& req)
142 {
143 return ((vtkMPICommunicator*)this->Communicator)
144 ->NoBlockSend(data, length, remoteProcessId, tag, req);
145 }
146 int NoBlockSend(const unsigned long* data, int length, int remoteProcessId, int tag,
147 vtkMPICommunicator::Request& req)
148 {

Callers

nothing calls this directly

Calls 1

NoBlockSendMethod · 0.80

Tested by

no test coverage detected