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

Method ReceiveVoidArray

Parallel/Core/vtkSubCommunicator.cxx:42–55  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

40
41//------------------------------------------------------------------------------
42int vtkSubCommunicator::ReceiveVoidArray(
43 void* data, vtkIdType length, int type, int remoteHandle, int tag)
44{
45 int realHandle;
46 if (remoteHandle == vtkMultiProcessController::ANY_SOURCE)
47 {
48 realHandle = vtkMultiProcessController::ANY_SOURCE;
49 }
50 else
51 {
52 realHandle = this->Group->GetProcessId(remoteHandle);
53 }
54 return this->Group->GetCommunicator()->ReceiveVoidArray(data, length, type, realHandle, tag);
55}
56
57//------------------------------------------------------------------------------
58void vtkSubCommunicator::SetGroup(vtkProcessGroup* group)

Callers 8

ReceiveMethod · 0.45
BroadcastVoidArrayMethod · 0.45
GatherVoidArrayMethod · 0.45
GatherVVoidArrayMethod · 0.45
ScatterVoidArrayMethod · 0.45
ScatterVVoidArrayMethod · 0.45
ReduceVoidArrayMethod · 0.45
ReceiveFunction · 0.45

Calls 2

GetProcessIdMethod · 0.80
GetCommunicatorMethod · 0.45

Tested by

no test coverage detected