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

Method AllGatherVoidArray

Parallel/Core/vtkCommunicator.cxx:1438–1445  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1436
1437//------------------------------------------------------------------------------
1438int 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//------------------------------------------------------------------------------
1448int vtkCommunicator::AllGather(vtkDataArray* sendBuffer, vtkDataArray* recvBuffer)

Callers 4

AllGatherMethod · 0.95
AllGatherFunction · 0.45
OptimizeBoundingBoxMethod · 0.45
UpdateClusterCentersMethod · 0.45

Calls 2

GatherVoidArrayMethod · 0.95
BroadcastVoidArrayMethod · 0.95

Tested by

no test coverage detected