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

Function Broadcast

Parallel/Core/vtkCommunicator.h:316–319  ·  view source on GitHub ↗

@{ * Broadcast sends the array in the process with id \c srcProcessId to all of * the other processes. All processes must call these method with the same * arguments in order for it to complete. */

Source from the content-addressed store, hash-verified

314 * arguments in order for it to complete.
315 */
316 int Broadcast(int* data, vtkIdType length, int srcProcessId)
317 {
318 return this->BroadcastVoidArray(data, length, VTK_INT, srcProcessId);
319 }
320 int Broadcast(unsigned int* data, vtkIdType length, int srcProcessId)
321 {
322 return this->BroadcastVoidArray(data, length, VTK_UNSIGNED_INT, srcProcessId);

Callers 1

GenerateCutsMethod · 0.50

Calls 1

BroadcastVoidArrayMethod · 0.45

Tested by

no test coverage detected