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

Method AllReduceVoidArray

Parallel/Core/vtkCommunicator.cxx:1639–1647  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1637
1638//------------------------------------------------------------------------------
1639int 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//------------------------------------------------------------------------------
1650int vtkCommunicator::AllReduceVoidArray(

Callers 3

AllReduceMethod · 0.95
AllReduceFunction · 0.45
OptimizeBoundingBoxMethod · 0.45

Calls 2

ReduceVoidArrayMethod · 0.95
BroadcastVoidArrayMethod · 0.95

Tested by

no test coverage detected