@{ * Same as Reduce except that the result is placed in all of the processes. */
| 1092 | * Same as Reduce except that the result is placed in all of the processes. |
| 1093 | */ |
| 1094 | int AllReduce(const int* sendBuffer, int* recvBuffer, vtkIdType length, int operation) |
| 1095 | { |
| 1096 | return this->AllReduceVoidArray(sendBuffer, recvBuffer, length, VTK_INT, operation); |
| 1097 | } |
| 1098 | int AllReduce( |
| 1099 | const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType length, int operation) |
| 1100 | { |
no test coverage detected