@{ * 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
| 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 | { |
nothing calls this directly
no test coverage detected