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

Function AllGather

Parallel/Core/vtkCommunicator.h:761–764  ·  view source on GitHub ↗

@{ * Same as gather except that the result ends up on all processes. */

Source from the content-addressed store, hash-verified

759 * Same as gather except that the result ends up on all processes.
760 */
761 int AllGather(const int* sendBuffer, int* recvBuffer, vtkIdType length)
762 {
763 return this->AllGatherVoidArray(sendBuffer, recvBuffer, length, VTK_INT);
764 }
765 int AllGather(const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType length)
766 {
767 return this->AllGatherVoidArray(sendBuffer, recvBuffer, length, VTK_UNSIGNED_INT);

Callers

nothing calls this directly

Calls 1

AllGatherVoidArrayMethod · 0.45

Tested by

no test coverage detected