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

Function AllGatherV

Parallel/Core/vtkCommunicator.h:835–840  ·  view source on GitHub ↗

@{ * Same as GatherV except that the result is placed in all processes. */

Source from the content-addressed store, hash-verified

833 * Same as GatherV except that the result is placed in all processes.
834 */
835 int AllGatherV(const int* sendBuffer, int* recvBuffer, vtkIdType sendLength,
836 vtkIdType* recvLengths, vtkIdType* offsets)
837 {
838 return this->AllGatherVVoidArray(
839 sendBuffer, recvBuffer, sendLength, recvLengths, offsets, VTK_INT);
840 }
841 int AllGatherV(const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType sendLength,
842 vtkIdType* recvLengths, vtkIdType* offsets)
843 {

Callers

nothing calls this directly

Calls 1

AllGatherVVoidArrayMethod · 0.45

Tested by

no test coverage detected