VTK
|
Multiprocessing communication superclass. More...
#include <vtkMultiProcessController.h>
Public Types | |
enum | Errors { RMI_NO_ERROR, RMI_TAG_ERROR, RMI_ARG_ERROR } |
enum | Consts { ANY_SOURCE = -1, INVALID_SOURCE = -2 } |
enum | Tags { RMI_TAG = 1, RMI_ARG_TAG = 2, BREAK_RMI_TAG = 3, XML_WRITER_DATA_INFO = 4 } |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. More... | |
vtkMultiProcessController * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | Initialize (int *vtkNotUsed(argc), char ***vtkNotUsed(argv))=0 |
This method is for setting up the processes. More... | |
virtual void | Initialize (int *vtkNotUsed(argc), char ***vtkNotUsed(argv), int initializedExternally)=0 |
This method is for setting up the processes. More... | |
virtual void | Finalize ()=0 |
This method is for cleaning up. More... | |
virtual void | Finalize (int finalizedExternally)=0 |
This method is for cleaning up. More... | |
void | SetSingleMethod (vtkProcessFunctionType, void *data) |
Set the SingleMethod to f() and the UserData of the for the method to be executed by all of the processes when SingleMethodExecute is called. More... | |
void | SetSingleProcessObject (vtkProcess *p) |
Object-oriented flavor of SetSingleMethod(). More... | |
virtual void | SingleMethodExecute ()=0 |
Execute the SingleMethod (as define by SetSingleMethod) using this->NumberOfProcesses processes. More... | |
void | SetMultipleMethod (int index, vtkProcessFunctionType, void *data) |
Set the MultipleMethod to f() and the UserData of the for the method to be executed by the process index when MultipleMethodExecute is called. More... | |
virtual void | MultipleMethodExecute ()=0 |
Execute the MultipleMethods (as define by calling SetMultipleMethod for each of the required this->NumberOfProcesses methods) using this->NumberOfProcesses processes. More... | |
int | GetLocalProcessId () |
Tells you which process [0, NumProcess) you are in. More... | |
virtual void | CreateOutputWindow ()=0 |
This method can be used to tell the controller to create a special output window in which all messages are preceded by the process id. More... | |
virtual vtkMultiProcessController * | CreateSubController (vtkProcessGroup *group) |
Creates a new controller with the processes specified by the given group. More... | |
virtual vtkMultiProcessController * | PartitionController (int localColor, int localKey) |
Partitions this controller based on a coloring. More... | |
virtual unsigned long | AddRMI (vtkRMIFunctionType, void *localArg, int tag) |
Register remote method invocation in the receiving process which makes the call. More... | |
virtual int | RemoveFirstRMI (int tag) |
Remove the first RMI matching the tag. More... | |
virtual int | RemoveRMI (unsigned long id) |
Remove the RMI matching the id. More... | |
virtual void | RemoveRMI (vtkRMIFunctionType f, void *arg, int tag) |
Take an RMI away. More... | |
virtual unsigned long | AddRMICallback (vtkRMIFunctionType, void *localArg, int tag) |
These methods are a part of the newer API to add multiple rmi callbacks. More... | |
virtual void | RemoveAllRMICallbacks (int tag) |
These methods are a part of the newer API to add multiple rmi callbacks. More... | |
virtual bool | RemoveRMICallback (unsigned long id) |
Remove a callback. More... | |
void | TriggerRMI (int remoteProcessId, void *arg, int argLength, int tag) |
A method to trigger a method invocation in another process. More... | |
void | TriggerBreakRMIs () |
A convenience method. More... | |
void | TriggerRMI (int remoteProcessId, const char *arg, int tag) |
Convenience method when the arg is a string. More... | |
void | TriggerRMI (int remoteProcessId, int tag) |
Convenience method when there is no argument. More... | |
void | Barrier () |
This method can be used to synchronize processes. More... | |
int | Send (const vtkMultiProcessStream &stream, int remoteId, int tag) |
Send a stream to another process. More... | |
int | Receive (vtkMultiProcessStream &stream, int remoteId, int tag) |
Receive a stream from the other processes. More... | |
vtkDataObject * | ReceiveDataObject (int remoteId, int tag) |
vtkIdType | GetCount () |
Returns the number of words received by the most recent Receive(). More... | |
int | Broadcast (vtkMultiProcessStream &stream, int srcProcessId) |
int | Gather (vtkDataObject *sendBuffer, std::vector< vtkSmartPointer< vtkDataObject > > &recvBuffer, int destProcessId) |
Gathers vtkDataObject (sendBuffer ) from all ranks to the destProcessId . More... | |
int | GatherV (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
int | GatherV (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, vtkIdTypeArray *recvLengths, vtkIdTypeArray *offsets, int destProcessId) |
int | AllGatherV (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer) |
This special form of AllGatherV will automatically determine recvLengths and offsets to tightly pack the data in the recvBuffer in process order. More... | |
int | AllReduce (const int *sendBuffer, int *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const short *sendBuffer, short *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const long *sendBuffer, long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const char *sendBuffer, char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const float *sendBuffer, float *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const double *sendBuffer, double *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation) |
int | AllReduce (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, vtkCommunicator::Operation *operation) |
void | SetNumberOfProcesses (int num) |
Set the number of processes you will be using. More... | |
int | GetNumberOfProcesses () |
Set the number of processes you will be using. More... | |
void | TriggerRMIOnAllChildren (void *arg, int argLength, int tag) |
This is a convenicence method to trigger an RMI call on all the "children" of the current node. More... | |
void | TriggerRMIOnAllChildren (const char *arg, int tag) |
This is a convenicence method to trigger an RMI call on all the "children" of the current node. More... | |
void | TriggerRMIOnAllChildren (int tag) |
This is a convenicence method to trigger an RMI call on all the "children" of the current node. More... | |
void | BroadcastTriggerRMIOnAllChildren (void *arg, int argLength, int tag) |
This is a convenicence method to trigger an RMI call on all the "children" of the current node. More... | |
int | ProcessRMIs (int reportErrors, int dont_loop=0) |
Calling this method gives control to the controller to start processing RMIs. More... | |
int | ProcessRMIs () |
Calling this method gives control to the controller to start processing RMIs. More... | |
int | BroadcastProcessRMIs (int reportErrors, int dont_loop=0) |
Calling this method gives control to the controller to start processing RMIs. More... | |
virtual void | SetBreakFlag (int) |
Setting this flag to 1 will cause the ProcessRMIs loop to return. More... | |
virtual int | GetBreakFlag () |
Setting this flag to 1 will cause the ProcessRMIs loop to return. More... | |
virtual void | SetBroadcastTriggerRMI (bool) |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites. More... | |
virtual bool | GetBroadcastTriggerRMI () |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites. More... | |
virtual void | BroadcastTriggerRMIOn () |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites. More... | |
virtual void | BroadcastTriggerRMIOff () |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites. More... | |
virtual vtkCommunicator * | GetCommunicator () |
Returns the communicator associated with this controller. More... | |
int | Send (const int *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const short *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const unsigned short *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const unsigned int *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const unsigned long *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const long *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const signed char *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const char *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const unsigned char *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const float *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const double *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const long long *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (const unsigned long long *data, vtkIdType length, int remoteProcessId, int tag) |
This method sends data to another process. More... | |
int | Send (vtkDataObject *data, int remoteId, int tag) |
This method sends data to another process. More... | |
int | Send (vtkDataArray *data, int remoteId, int tag) |
This method sends data to another process. More... | |
int | Receive (int *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (unsigned int *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (short *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (unsigned short *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (long *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (unsigned long *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (char *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (unsigned char *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (signed char *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (float *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (double *data, vtkIdType maxlength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (long long *data, vtkIdType maxLength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (unsigned long long *data, vtkIdType maxLength, int remoteProcessId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (vtkDataObject *data, int remoteId, int tag) |
This method receives data from a corresponding send. More... | |
int | Receive (vtkDataArray *data, int remoteId, int tag) |
This method receives data from a corresponding send. More... | |
int | Broadcast (int *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (unsigned int *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (short *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (unsigned short *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (long *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (unsigned long *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (unsigned char *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (char *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (signed char *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (float *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (double *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (long long *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (unsigned long long *data, vtkIdType length, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (vtkDataObject *data, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Broadcast (vtkDataArray *data, int srcProcessId) |
Broadcast sends the array in the process with id srcProcessId to all of the other processes. More... | |
int | Gather (const int *sendBuffer, int *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const short *sendBuffer, short *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const long *sendBuffer, long *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const char *sendBuffer, char *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const float *sendBuffer, float *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const double *sendBuffer, double *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | Gather (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, int destProcessId) |
Gather collects arrays in the process with id destProcessId . More... | |
int | GatherV (const int *sendBuffer, int *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const short *sendBuffer, short *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const long *sendBuffer, long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const char *sendBuffer, char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const float *sendBuffer, float *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const double *sendBuffer, double *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const long long *sendBuffer, long long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int destProcessId) |
GatherV is the vector variant of Gather. More... | |
int | GatherV (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, int destProcessId) |
This special form of GatherV will automatically determine recvLengths and offsets to tightly pack the data in the recvBuffer in process order. More... | |
int | GatherV (vtkDataObject *sendData, vtkSmartPointer< vtkDataObject > *recvData, int destProcessId) |
This special form of GatherV will automatically determine recvLengths and offsets to tightly pack the data in the recvBuffer in process order. More... | |
int | Scatter (const int *sendBuffer, int *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const short *sendBuffer, short *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const long *sendBuffer, long *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const char *sendBuffer, char *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const float *sendBuffer, float *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const double *sendBuffer, double *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | Scatter (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, int srcProcessId) |
Scatter takes an array in the process with id srcProcessId and distributes it. More... | |
int | ScatterV (const int *sendBuffer, int *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const short *sendBuffer, short *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const long *sendBuffer, long *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const char *sendBuffer, char *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const float *sendBuffer, float *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const double *sendBuffer, double *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const long long *sendBuffer, long long *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | ScatterV (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int srcProcessId) |
ScatterV is the vector variant of Scatter. More... | |
int | AllGather (const int *sendBuffer, int *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const short *sendBuffer, short *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const long *sendBuffer, long *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const char *sendBuffer, char *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const float *sendBuffer, float *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const double *sendBuffer, double *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const long long *sendBuffer, long long *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGather (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer) |
Same as gather except that the result ends up on all processes. More... | |
int | AllGatherV (const int *sendBuffer, int *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const short *sendBuffer, short *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const long *sendBuffer, long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const char *sendBuffer, char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const float *sendBuffer, float *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const double *sendBuffer, double *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const long long *sendBuffer, long long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | AllGatherV (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, vtkIdType *recvLengths, vtkIdType *offsets) |
Same as GatherV except that the result is placed in all processes. More... | |
int | Reduce (const int *sendBuffer, int *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const short *sendBuffer, short *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const long *sendBuffer, long *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const char *sendBuffer, char *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const float *sendBuffer, float *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const double *sendBuffer, double *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, int operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const int *sendBuffer, int *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const short *sendBuffer, short *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const long *sendBuffer, long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const char *sendBuffer, char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const float *sendBuffer, float *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const double *sendBuffer, double *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | Reduce (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, vtkCommunicator::Operation *operation, int destProcessId) |
Reduce an array to the given destination process. More... | |
int | AllReduce (const int *sendBuffer, int *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const unsigned int *sendBuffer, unsigned int *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const short *sendBuffer, short *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const unsigned short *sendBuffer, unsigned short *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const long *sendBuffer, long *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const unsigned long *sendBuffer, unsigned long *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const unsigned char *sendBuffer, unsigned char *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const char *sendBuffer, char *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const signed char *sendBuffer, signed char *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const float *sendBuffer, float *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const double *sendBuffer, double *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const long long *sendBuffer, long long *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (const unsigned long long *sendBuffer, unsigned long long *recvBuffer, vtkIdType length, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
int | AllReduce (vtkDataArray *sendBuffer, vtkDataArray *recvBuffer, int operation) |
Same as Reduce except that the result is placed in all of the processes. More... | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. More... | |
virtual void | DebugOff () |
Turn debugging output off. More... | |
bool | GetDebug () |
Get the value of the debug flag. More... | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. More... | |
virtual void | Modified () |
Update the modification time for this object. More... | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. More... | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. More... | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. More... | |
virtual void | Delete () |
Delete a VTK object. More... | |
virtual void | FastDelete () |
Delete a reference to this object. More... | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. More... | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). More... | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). More... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
void | PrintRevisions (ostream &) |
Legacy. More... | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
Static Public Member Functions | |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkMultiProcessController * | SafeDownCast (vtkObjectBase *o) |
static vtkMultiProcessController * | GetGlobalController () |
This convenience method returns the controller associated with the local process. More... | |
static int | GetBreakRMITag () |
Accessor to some default tags. More... | |
static int | GetRMITag () |
static int | GetRMIArgTag () |
static void | SetGlobalController (vtkMultiProcessController *controller) |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. More... | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. More... | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkMultiProcessController () | |
~vtkMultiProcessController () override | |
virtual void | TriggerRMIInternal (int remoteProcessId, void *arg, int argLength, int rmiTag, bool propagate) |
Implementation for TriggerRMI() provides subclasses an opportunity to modify the behaviour eg. More... | |
void | GetMultipleMethod (int index, vtkProcessFunctionType &func, void *&data) |
void | ProcessRMI (int remoteProcessId, void *arg, int argLength, int rmiTag) |
virtual vtkMultiProcessController * | GetLocalController () |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. More... | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. More... | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | CollectRevisions (ostream &) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
vtkProcessFunctionType | SingleMethod |
void * | SingleData |
int | BreakFlag |
int | ForceDeepCopy |
bool | BroadcastTriggerRMI |
vtkOutputWindow * | OutputWindow |
vtkCommunicator * | Communicator |
vtkCommunicator * | RMICommunicator |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Multiprocessing communication superclass.
vtkMultiProcessController is used to control multiple processes in a distributed computing environment. It has methods for executing single/multiple method(s) on multiple processors, triggering registered callbacks (Remote Methods) (AddRMI(), TriggerRMI()) and communication. Please note that the communication is done using the communicator which is accessible to the user. Therefore it is possible to get the communicator with GetCommunicator() and use it to send and receive data. This is the encouraged communication method. The internal (RMI) communications are done using a second internal communicator (called RMICommunicator).
There are two modes for RMI communication: (1) Send/Receive mode and (2) Broadcast (collective) mode. The Send/Receive mode arranges processes in a binary tree using post-order traversal and propagates the RMI trigger starting from the root (rank 0) to the children. It is commonly employed to communicate between client/server over TCP. Although, the Send/Receive mode can be employed transparently over TCP or MPI, it is not optimal for triggering the RMIs on the satellite ranks. The Broadcast mode provides a more desirable alternative, namely, it uses MPI_Broadcast for communication, which is the nominal way of achieving this in an MPI context. The underlying communication mode used for triggering RMIs is controlled by the "BroadcastTriggerRMI" variable. Note, that mixing between the two modes for RMI communication is not correct behavior. All processes within the vtkMultiProcessController must use the same mode for triggering RMI.
Definition at line 82 of file vtkMultiProcessController.h.
Definition at line 85 of file vtkMultiProcessController.h.
Enumerator | |
---|---|
RMI_NO_ERROR | |
RMI_TAG_ERROR | |
RMI_ARG_ERROR |
Definition at line 362 of file vtkMultiProcessController.h.
Enumerator | |
---|---|
ANY_SOURCE | |
INVALID_SOURCE |
Definition at line 369 of file vtkMultiProcessController.h.
Enumerator | |
---|---|
RMI_TAG | |
RMI_ARG_TAG | |
BREAK_RMI_TAG | |
XML_WRITER_DATA_INFO |
Definition at line 375 of file vtkMultiProcessController.h.
|
protected |
|
overrideprotected |
|
static |
|
virtual |
Return 1 if this class is the same type of (or a subclass of) the named class.
Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObjectBase.
Reimplemented in vtkMPIController, vtkSocketController, and vtkDummyController.
|
static |
|
protectedvirtual |
Reimplemented in vtkMPIController, vtkSocketController, and vtkDummyController.
vtkMultiProcessController* vtkMultiProcessController::NewInstance | ( | ) | const |
|
overridevirtual |
Methods invoked by print to print information about the object including superclasses.
Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkObject.
Reimplemented in vtkMPIController, and vtkSocketController.
|
pure virtual |
This method is for setting up the processes.
If a subclass needs to initialize process communication (i.e. MPI) it would over ride this method.
|
pure virtual |
This method is for setting up the processes.
If a subclass needs to initialize process communication (i.e. MPI) it would over ride this method. Provided for initialization outside vtk.
Implemented in vtkMPIController.
|
pure virtual |
This method is for cleaning up.
If a subclass needs to clean up process communication (i.e. MPI) it would over ride this method.
Implemented in vtkMPIController, vtkSocketController, and vtkDummyController.
|
pure virtual |
This method is for cleaning up.
If a subclass needs to clean up process communication (i.e. MPI) it would over ride this method. Provided for finalization outside vtk.
Implemented in vtkMPIController, vtkSocketController, and vtkDummyController.
void vtkMultiProcessController::SetNumberOfProcesses | ( | int | num | ) |
Set the number of processes you will be using.
This defaults to the maximum number available. If you set this to a value higher than the default, you will get an error.
int vtkMultiProcessController::GetNumberOfProcesses | ( | ) |
Set the number of processes you will be using.
This defaults to the maximum number available. If you set this to a value higher than the default, you will get an error.
void vtkMultiProcessController::SetSingleMethod | ( | vtkProcessFunctionType | , |
void * | data | ||
) |
Set the SingleMethod to f() and the UserData of the for the method to be executed by all of the processes when SingleMethodExecute is called.
All the processes will start by calling this function.
void vtkMultiProcessController::SetSingleProcessObject | ( | vtkProcess * | p | ) |
Object-oriented flavor of SetSingleMethod().
Instead of passing some function pointer and user data, a vtkProcess object is passed where the method to execute is Execute() and the data the object itself.
|
pure virtual |
Execute the SingleMethod (as define by SetSingleMethod) using this->NumberOfProcesses processes.
This will only return when all the processes finish executing their methods.
Implemented in vtkMPIController, vtkSocketController, and vtkDummyController.
void vtkMultiProcessController::SetMultipleMethod | ( | int | index, |
vtkProcessFunctionType | , | ||
void * | data | ||
) |
Set the MultipleMethod to f() and the UserData of the for the method to be executed by the process index when MultipleMethodExecute is called.
This is for having each process start with a different function and data argument.
|
pure virtual |
Execute the MultipleMethods (as define by calling SetMultipleMethod for each of the required this->NumberOfProcesses methods) using this->NumberOfProcesses processes.
Implemented in vtkMPIController, vtkSocketController, and vtkDummyController.
int vtkMultiProcessController::GetLocalProcessId | ( | ) |
Tells you which process [0, NumProcess) you are in.
|
static |
This convenience method returns the controller associated with the local process.
It returns nullptr until the processes are spawned. It is better if you hang on to the controller passed as an argument to the SingleMethod or MultipleMethod functions.
|
pure virtual |
This method can be used to tell the controller to create a special output window in which all messages are preceded by the process id.
Implemented in vtkMPIController, vtkSocketController, and vtkDummyController.
|
virtual |
Creates a new controller with the processes specified by the given group.
The new controller will already be initialized for you. You are responsible for deleting the controller once you are done. It is invalid to pass this method a group with a different communicator than is used by this controller. This operation is collective across all processes defined in the group. It is undefined what will happen if the group is not the same on all processes. This method must be called by all processes in the controller regardless of whether they are in the group. nullptr is returned on all process not in the group.
Reimplemented in vtkMPIController.
|
virtual |
Partitions this controller based on a coloring.
That is, each process passes in a color. All processes with the same color are grouped into the same partition. The processes are ordered by their self-assigned key. Lower keys have lower process ids. Ties are broken by the current process ids. (For example, if all the keys are 0, then the resulting processes will be ordered in the same way.) This method returns a new controller to each process that represents the local partition. This is basically the same operation as MPI_Comm_split.
Reimplemented in vtkMPIController.
|
virtual |
Register remote method invocation in the receiving process which makes the call.
It must have a unique tag as an RMI id. The vtkRMIFunctionType has several arguments: localArg (same as passed in), remoteArg, remoteArgLength (memory passed by process triggering the RMI), remoteProcessId. Since only one callback can be registered per tag, this method will remove any previously registered callback for the given tag. Returns a unique Id for the RMI registration which can be used to unregister the callback. RemoveRMI() should be preferred over RemoveFirstRMI() since it avoid accidental removal of callbacks.
Remove the first RMI matching the tag.
|
virtual |
Remove the RMI matching the id.
The id is the same id returned by AddRMI().
|
inlinevirtual |
Take an RMI away.
Definition at line 241 of file vtkMultiProcessController.h.
|
virtual |
These methods are a part of the newer API to add multiple rmi callbacks.
When the RMI is triggered, all the callbacks are called Adds a new callback for an RMI. Returns the identifier for the callback.
|
virtual |
These methods are a part of the newer API to add multiple rmi callbacks.
When the RMI is triggered, all the callbacks are called Removes all callbacks for the tag.
|
virtual |
Remove a callback.
Returns true is the remove was successful.
void vtkMultiProcessController::TriggerRMI | ( | int | remoteProcessId, |
void * | arg, | ||
int | argLength, | ||
int | tag | ||
) |
A method to trigger a method invocation in another process.
void vtkMultiProcessController::TriggerBreakRMIs | ( | ) |
A convenience method.
Called on process 0 to break "ProcessRMIs" loop on all other processes.
|
inline |
Convenience method when the arg is a string.
Definition at line 277 of file vtkMultiProcessController.h.
Convenience method when there is no argument.
Definition at line 284 of file vtkMultiProcessController.h.
This is a convenicence method to trigger an RMI call on all the "children" of the current node.
The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
|
inline |
This is a convenicence method to trigger an RMI call on all the "children" of the current node.
The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
Definition at line 297 of file vtkMultiProcessController.h.
|
inline |
This is a convenicence method to trigger an RMI call on all the "children" of the current node.
The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
Definition at line 302 of file vtkMultiProcessController.h.
void vtkMultiProcessController::BroadcastTriggerRMIOnAllChildren | ( | void * | arg, |
int | argLength, | ||
int | tag | ||
) |
This is a convenicence method to trigger an RMI call on all the "children" of the current node.
The children of the current node can be determined by drawing a binary tree starting at node 0 and then assigned nodes ids incrementally in a breadth-first fashion from left to right. This is designed to be used when trigger an RMI call on all satellites from the root node.
Calling this method gives control to the controller to start processing RMIs.
Possible return values are: RMI_NO_ERROR, RMI_TAG_ERROR : rmi tag could not be received, RMI_ARG_ERROR : rmi arg could not be received. If reportErrors is false, no vtkErrorMacro is called. ProcessRMIs() calls ProcessRMIs(int) with reportErrors = 0. If dont_loop is 1, this call just process one RMI message and exits.
int vtkMultiProcessController::ProcessRMIs | ( | ) |
Calling this method gives control to the controller to start processing RMIs.
Possible return values are: RMI_NO_ERROR, RMI_TAG_ERROR : rmi tag could not be received, RMI_ARG_ERROR : rmi arg could not be received. If reportErrors is false, no vtkErrorMacro is called. ProcessRMIs() calls ProcessRMIs(int) with reportErrors = 0. If dont_loop is 1, this call just process one RMI message and exits.
Calling this method gives control to the controller to start processing RMIs.
Possible return values are: RMI_NO_ERROR, RMI_TAG_ERROR : rmi tag could not be received, RMI_ARG_ERROR : rmi arg could not be received. If reportErrors is false, no vtkErrorMacro is called. ProcessRMIs() calls ProcessRMIs(int) with reportErrors = 0. If dont_loop is 1, this call just process one RMI message and exits.
|
virtual |
Setting this flag to 1 will cause the ProcessRMIs loop to return.
This also causes vtkUpStreamPorts to return from their WaitForUpdate loops.
|
virtual |
Setting this flag to 1 will cause the ProcessRMIs loop to return.
This also causes vtkUpStreamPorts to return from their WaitForUpdate loops.
|
virtual |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites.
|
virtual |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites.
|
virtual |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites.
|
virtual |
Setting this flag to 1 will cause the TriggerRMIOnAllChildren to use a collective broadcast operation to communicate the RMI tag to the satellites.
|
virtual |
Returns the communicator associated with this controller.
A default communicator is created in constructor.
|
inlinestatic |
Accessor to some default tags.
Definition at line 358 of file vtkMultiProcessController.h.
|
inlinestatic |
Definition at line 359 of file vtkMultiProcessController.h.
|
inlinestatic |
Definition at line 360 of file vtkMultiProcessController.h.
|
inline |
This method can be used to synchronize processes.
Definition at line 1929 of file vtkMultiProcessController.h.
|
static |
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1520 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1533 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1546 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1559 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1572 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1587 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1602 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1615 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1628 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1642 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1655 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1668 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1682 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1494 of file vtkMultiProcessController.h.
|
inline |
This method sends data to another process.
Tag eliminates ambiguity when multiple sends or receives exist in the same process. It is recommended to use custom tag number over 100. vtkMultiProcessController has reserved tags between 1 and 4. vtkCommunicator has reserved tags between 10 and 16.
Definition at line 1507 of file vtkMultiProcessController.h.
|
inline |
Send a stream to another process.
vtkMultiProcessStream makes it possible to send data with arbitrary length and different base types to the other process(es). Instead of making several Send() requests for each type of arguments, it's generally more efficient to push the arguments into the stream and the send the stream over.
Definition at line 1696 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1745 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1758 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1771 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1784 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1797 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1811 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1826 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1839 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1853 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1867 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1880 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1893 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1906 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1706 of file vtkMultiProcessController.h.
|
inline |
This method receives data from a corresponding send.
It blocks until the receive is finished. It calls methods in "data" to communicate the sending data. In the overrloads that take in a maxlength
argument, this length is the maximum length of the message to receive. If the maxlength is less than the length of the message sent by the sender, an error will be flagged. Once a message is received, use the GetCount() method to determine the actual size of the data received.
Definition at line 1732 of file vtkMultiProcessController.h.
|
inline |
Receive a stream from the other processes.
Definition at line 1919 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1719 of file vtkMultiProcessController.h.
|
inline |
Returns the number of words received by the most recent Receive().
Note that this is not the number of bytes received, but the number of items of the data-type received by the most recent Receive() eg. if Receive(int*,..) was used, then this returns the number of ints received; if Receive(double*,..) was used, then this returns the number of doubles received etc. The return value is valid only after a successful Receive().
Definition at line 1937 of file vtkMultiProcessController.h.
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 482 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 485 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 488 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 491 of file vtkMultiProcessController.h.
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 494 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 497 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 500 of file vtkMultiProcessController.h.
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 503 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 506 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 509 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 512 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 515 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 518 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 521 of file vtkMultiProcessController.h.
|
inline |
Broadcast sends the array in the process with id srcProcessId
to all of the other processes.
All processes must call these method with the same arguments in order for it to complete.
Definition at line 524 of file vtkMultiProcessController.h.
|
inline |
Definition at line 529 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 543 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 548 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 553 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 558 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 563 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 568 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 573 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 578 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 583 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 588 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 593 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 598 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 603 of file vtkMultiProcessController.h.
|
inline |
Gather collects arrays in the process with id destProcessId
.
Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The length
argument (which must be the same on all processes) is the length of the sendBuffers. The recvBuffer
(on the destination process) must be of length length*numProcesses. Gather is the inverse operation of Scatter.
Definition at line 608 of file vtkMultiProcessController.h.
|
inline |
Gathers vtkDataObject (sendBuffer
) from all ranks to the destProcessId
.
[in] | sendBuffer | - data object to send from local process. Can be null if not sending any data from the current process. |
[out] | recvBuffer | - vector of data objects to receive data on the receiving rank (identified by destProcessId ). This may be empty or filled with data object instances. If empty, data objects will be created as needed. If not empty, existing data object will be used. |
[in] | destProcessId | - process id to gather on. |
Definition at line 626 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 645 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 652 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 659 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 666 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 673 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 680 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 687 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 694 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 701 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 708 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 715 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 722 of file vtkMultiProcessController.h.
|
inline |
GatherV is the vector variant of Gather.
It extends the functionality of Gather by allowing a varying count of data from each process. GatherV collects arrays in the process with id destProcessId
. Each process (including the destination) sends the contents of its send buffer to the destination process. The destination process receives the messages and stores them in rank order. The sendLength
argument defines how much the local process sends to destProcessId
and recvLengths
is an array containing the amount destProcessId
receives from each process, in rank order.
Definition at line 729 of file vtkMultiProcessController.h.
|
inline |
Definition at line 738 of file vtkMultiProcessController.h.
|
inline |
Definition at line 744 of file vtkMultiProcessController.h.
|
inline |
This special form of GatherV will automatically determine recvLengths
and offsets
to tightly pack the data in the recvBuffer
in process order.
It will also resize recvBuffer
in order to accommodate the incoming data (unlike the other GatherV variants).
Definition at line 761 of file vtkMultiProcessController.h.
|
inline |
This special form of GatherV will automatically determine recvLengths
and offsets
to tightly pack the data in the recvBuffer
in process order.
It will also resize recvBuffer
in order to accommodate the incoming data (unlike the other GatherV variants).
Definition at line 765 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 780 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 785 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 790 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 795 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 800 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 805 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 810 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 815 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 820 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 825 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 830 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 835 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 840 of file vtkMultiProcessController.h.
|
inline |
Scatter takes an array in the process with id srcProcessId
and distributes it.
Each process (including the source) receives a portion of the send buffer. Process 0 receives the first length
values, process 1 receives the second length
values, and so on. Scatter is the inverse operation of Gather.
Definition at line 845 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 859 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 866 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 873 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 880 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 887 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 894 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 901 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 908 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 915 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 922 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 929 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 936 of file vtkMultiProcessController.h.
|
inline |
ScatterV is the vector variant of Scatter.
It extends the functionality of Scatter by allowing a varying count of data to each process. ScatterV takes an array in the process with id srcProcessId
and distributes it. Each process (including the source) receives a portion of the send buffer defined by the sendLengths
and offsets
arrays.
Definition at line 943 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 956 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 959 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 962 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 965 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 968 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 971 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 975 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 979 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 982 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 985 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 988 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 992 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 995 of file vtkMultiProcessController.h.
|
inline |
Same as gather except that the result ends up on all processes.
Definition at line 998 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1007 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1014 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1021 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1028 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1035 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1042 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1049 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1056 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1063 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1070 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1077 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1084 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1091 of file vtkMultiProcessController.h.
|
inline |
Same as GatherV except that the result is placed in all processes.
Definition at line 1098 of file vtkMultiProcessController.h.
|
inline |
This special form of AllGatherV will automatically determine recvLengths
and offsets
to tightly pack the data in the recvBuffer
in process order.
It will also resize recvBuffer
in order to accommodate the incoming data (unlike the other GatherV variants).
Definition at line 1111 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1121 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1126 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1131 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1136 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1141 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1146 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1151 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1156 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1161 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1166 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1171 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1176 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1181 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes an identifier defined in the vtkCommunicator::StandardOperations enum to define the operation.
Definition at line 1186 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1198 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1204 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1210 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1216 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1222 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1228 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1234 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1240 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1246 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1252 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1258 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1264 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1270 of file vtkMultiProcessController.h.
|
inline |
Reduce an array to the given destination process.
This version of Reduce takes a custom operation as a subclass of vtkCommunicator::Operation.
Definition at line 1276 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1287 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1292 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1297 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1302 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1307 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1312 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1317 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1322 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1327 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1332 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1337 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1342 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1347 of file vtkMultiProcessController.h.
|
inline |
Same as Reduce except that the result is placed in all of the processes.
Definition at line 1352 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1358 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1363 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1368 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1373 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1378 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1383 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1388 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1393 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1398 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1403 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1408 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1413 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1418 of file vtkMultiProcessController.h.
|
inline |
Definition at line 1423 of file vtkMultiProcessController.h.
|
protectedvirtual |
Implementation for TriggerRMI() provides subclasses an opportunity to modify the behaviour eg.
MPIController provides ability to use SSend instead of Send.
Reimplemented in vtkMPIController.
|
protected |
|
protected |
|
protectedvirtual |
|
protected |
Definition at line 1442 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1443 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1449 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1459 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1464 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1466 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1471 of file vtkMultiProcessController.h.
|
protected |
Definition at line 1480 of file vtkMultiProcessController.h.