------------------------------------------------------------------------------
| 1637 | |
| 1638 | //------------------------------------------------------------------------------ |
| 1639 | int vtkCommunicator::AllReduceVoidArray( |
| 1640 | const void* sendBuffer, void* recvBuffer, vtkIdType length, int type, int operation) |
| 1641 | { |
| 1642 | if (this->ReduceVoidArray(sendBuffer, recvBuffer, length, type, operation, 0)) |
| 1643 | { |
| 1644 | return this->BroadcastVoidArray(recvBuffer, length, type, 0); |
| 1645 | } |
| 1646 | return 0; |
| 1647 | } |
| 1648 | |
| 1649 | //------------------------------------------------------------------------------ |
| 1650 | int vtkCommunicator::AllReduceVoidArray( |
no test coverage detected