------------------------------------------------------------------------------
| 1436 | |
| 1437 | //------------------------------------------------------------------------------ |
| 1438 | int vtkCommunicator::AllGatherVoidArray( |
| 1439 | const void* sendBuffer, void* recvBuffer, vtkIdType length, int type) |
| 1440 | { |
| 1441 | int result = 1; |
| 1442 | result &= this->GatherVoidArray(sendBuffer, recvBuffer, length, type, 0); |
| 1443 | result &= this->BroadcastVoidArray(recvBuffer, length * this->NumberOfProcesses, type, 0); |
| 1444 | return result; |
| 1445 | } |
| 1446 | |
| 1447 | //------------------------------------------------------------------------------ |
| 1448 | int vtkCommunicator::AllGather(vtkDataArray* sendBuffer, vtkDataArray* recvBuffer) |
no test coverage detected