|
ParaView
|
Moves/redistributes data between processes. More...
#include <vtkMPIMoveData.h>


Moves/redistributes data between processes.
This class combines all the duplicate and collection requirements into one filter. It can move polydata and unstructured grid between processes. It can redistributed polydata from M to N processors.
Definition at line 34 of file vtkMPIMoveData.h.
Definition at line 111 of file vtkMPIMoveData.h.
enum vtkMPIMoveData::Servers [protected] |
Definition at line 162 of file vtkMPIMoveData.h.
| vtkMPIMoveData::vtkMPIMoveData | ( | ) | [protected] |
| vtkMPIMoveData::~vtkMPIMoveData | ( | ) | [protected] |
| static vtkMPIMoveData* vtkMPIMoveData::New | ( | ) | [static] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual const char* vtkMPIMoveData::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| static int vtkMPIMoveData::IsTypeOf | ( | const char * | type | ) | [static] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual int vtkMPIMoveData::IsA | ( | const char * | type | ) | [virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| static vtkMPIMoveData* vtkMPIMoveData::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkPassInputTypeAlgorithm.
| void vtkMPIMoveData::PrintSelf | ( | ostream & | os, |
| vtkIndent | indent | ||
| ) | [virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual void vtkMPIMoveData::InitializeForCommunicationForParaView | ( | ) | [virtual] |
Use this method to initialize all communicators/sockets using ParaView defaults.
| void vtkMPIMoveData::SetController | ( | vtkMultiProcessController * | controller | ) |
Objects for communication. The controller is an MPI controller used to communicate between processes within one server (render or data). The client-data server socket controller is set on the client and data server and is used to communicate between the two. MPIMToNSocetConnection is set on the data server and render server when we are running with a render server. It has multiple sockets which are used to send data from the data server to the render server. ClientDataServerController==0 => One MPI program. MPIMToNSocketConnection==0 => Client-DataServer. MPIMToNSocketConnection==1 => Client-DataServer-RenderServer.
| void vtkMPIMoveData::SetMPIMToNSocketConnection | ( | vtkMPIMToNSocketConnection * | sc | ) |
Objects for communication. The controller is an MPI controller used to communicate between processes within one server (render or data). The client-data server socket controller is set on the client and data server and is used to communicate between the two. MPIMToNSocetConnection is set on the data server and render server when we are running with a render server. It has multiple sockets which are used to send data from the data server to the render server. ClientDataServerController==0 => One MPI program. MPIMToNSocketConnection==0 => Client-DataServer. MPIMToNSocketConnection==1 => Client-DataServer-RenderServer.
| void vtkMPIMoveData::SetClientDataServerSocketController | ( | vtkMultiProcessController * | ) |
Objects for communication. The controller is an MPI controller used to communicate between processes within one server (render or data). The client-data server socket controller is set on the client and data server and is used to communicate between the two. MPIMToNSocetConnection is set on the data server and render server when we are running with a render server. It has multiple sockets which are used to send data from the data server to the render server. ClientDataServerController==0 => One MPI program. MPIMToNSocketConnection==0 => Client-DataServer. MPIMToNSocketConnection==1 => Client-DataServer-RenderServer.
| virtual vtkMultiProcessController* vtkMPIMoveData::GetClientDataServerSocketController | ( | ) | [virtual] |
Objects for communication. The controller is an MPI controller used to communicate between processes within one server (render or data). The client-data server socket controller is set on the client and data server and is used to communicate between the two. MPIMToNSocetConnection is set on the data server and render server when we are running with a render server. It has multiple sockets which are used to send data from the data server to the render server. ClientDataServerController==0 => One MPI program. MPIMToNSocketConnection==0 => Client-DataServer. MPIMToNSocketConnection==1 => Client-DataServer-RenderServer.
| void vtkMPIMoveData::SetServerToClient | ( | ) | [inline] |
Tell the object on which client/server it resides. Whether the sockets are set helps determine which servers are running.
Definition at line 65 of file vtkMPIMoveData.h.
| void vtkMPIMoveData::SetServerToDataServer | ( | ) | [inline] |
Tell the object on which client/server it resides. Whether the sockets are set helps determine which servers are running.
Definition at line 66 of file vtkMPIMoveData.h.
| void vtkMPIMoveData::SetServerToRenderServer | ( | ) | [inline] |
Tell the object on which client/server it resides. Whether the sockets are set helps determine which servers are running.
Definition at line 67 of file vtkMPIMoveData.h.
| virtual void vtkMPIMoveData::SetServer | ( | int | ) | [virtual] |
Tell the object on which client/server it resides. Whether the sockets are set helps determine which servers are running.
| void vtkMPIMoveData::SetMoveModeToPassThrough | ( | ) | [inline] |
Specify how the data is to be redistributed.
Definition at line 73 of file vtkMPIMoveData.h.
| void vtkMPIMoveData::SetMoveModeToCollect | ( | ) | [inline] |
Specify how the data is to be redistributed.
Definition at line 74 of file vtkMPIMoveData.h.
| void vtkMPIMoveData::SetMoveModeToClone | ( | ) | [inline] |
Specify how the data is to be redistributed.
Definition at line 75 of file vtkMPIMoveData.h.
| virtual void vtkMPIMoveData::SetMoveMode | ( | int | ) | [virtual] |
Specify how the data is to be redistributed.
| virtual void vtkMPIMoveData::SetOutputDataType | ( | int | ) | [virtual] |
Controls the output type. This is required because processes receiving data cannot know their output type in RequestDataObject without communicating with other processes. Since communicating with other processes in RequestDataObject is dangerous (can cause deadlock because it may happen out-of-sync), the application has to set the output type. The default is VTK_POLY_DATA. Currently, only VTK_UNSTRUCTURED_GRID and VTK_POLY_DATA are supported. Make sure to call this before any pipeline updates occur.
| virtual int vtkMPIMoveData::GetOutputDataType | ( | ) | [virtual] |
Controls the output type. This is required because processes receiving data cannot know their output type in RequestDataObject without communicating with other processes. Since communicating with other processes in RequestDataObject is dangerous (can cause deadlock because it may happen out-of-sync), the application has to set the output type. The default is VTK_POLY_DATA. Currently, only VTK_UNSTRUCTURED_GRID and VTK_POLY_DATA are supported. Make sure to call this before any pipeline updates occur.
| virtual void vtkMPIMoveData::SetDeliverOutlineToClient | ( | int | ) | [virtual] |
Sometimes, the data may be too huge to deliver to the client. In that case, the client can request that only the outline for the data may be delivered to the client. This is supported only for vtkPolyData. Off by default.
| virtual int vtkMPIMoveData::GetDeliverOutlineToClient | ( | ) | [virtual] |
Sometimes, the data may be too huge to deliver to the client. In that case, the client can request that only the outline for the data may be delivered to the client. This is supported only for vtkPolyData. Off by default.
| static void vtkMPIMoveData::SetUseZLibCompression | ( | bool | b | ) | [static] |
When set to true, zlib compression is used. False by default. This value has any effect only on the data-sender processes. The receiver always checks the received data to see if zlib decompression is required.
| static bool vtkMPIMoveData::GetUseZLibCompression | ( | ) | [static] |
When set to true, zlib compression is used. False by default. This value has any effect only on the data-sender processes. The receiver always checks the received data to see if zlib decompression is required.
| virtual int vtkMPIMoveData::RequestDataObject | ( | vtkInformation * | request, |
| vtkInformationVector ** | inputVector, | ||
| vtkInformationVector * | outputVector | ||
| ) | [protected, virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual int vtkMPIMoveData::RequestInformation | ( | vtkInformation * | request, |
| vtkInformationVector ** | inputVector, | ||
| vtkInformationVector * | outputVector | ||
| ) | [protected, virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual int vtkMPIMoveData::RequestData | ( | vtkInformation * | request, |
| vtkInformationVector ** | inputVector, | ||
| vtkInformationVector * | outputVector | ||
| ) | [protected, virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| virtual int vtkMPIMoveData::FillInputPortInformation | ( | int | port, |
| vtkInformation * | info | ||
| ) | [protected, virtual] |
Reimplemented from vtkPassInputTypeAlgorithm.
| void vtkMPIMoveData::DataServerAllToN | ( | vtkDataObject * | inData, |
| vtkDataObject * | outData, | ||
| int | n | ||
| ) | [protected] |
| void vtkMPIMoveData::DataServerGatherAll | ( | vtkDataObject * | input, |
| vtkDataObject * | output | ||
| ) | [protected] |
| void vtkMPIMoveData::DataServerGatherToZero | ( | vtkDataObject * | input, |
| vtkDataObject * | output | ||
| ) | [protected] |
| void vtkMPIMoveData::DataServerSendToRenderServer | ( | vtkDataObject * | output | ) | [protected] |
| void vtkMPIMoveData::RenderServerReceiveFromDataServer | ( | vtkDataObject * | output | ) | [protected] |
| void vtkMPIMoveData::DataServerZeroSendToRenderServerZero | ( | vtkDataObject * | data | ) | [protected] |
| void vtkMPIMoveData::RenderServerZeroReceiveFromDataServerZero | ( | vtkDataObject * | data | ) | [protected] |
| void vtkMPIMoveData::RenderServerZeroBroadcast | ( | vtkDataObject * | data | ) | [protected] |
| void vtkMPIMoveData::DataServerSendToClient | ( | vtkDataObject * | output | ) | [protected] |
| void vtkMPIMoveData::ClientReceiveFromDataServer | ( | vtkDataObject * | output | ) | [protected] |
| void vtkMPIMoveData::ClearBuffer | ( | ) | [protected] |
| void vtkMPIMoveData::MarshalDataToBuffer | ( | vtkDataObject * | data | ) | [protected] |
| void vtkMPIMoveData::ReconstructDataFromBuffer | ( | vtkDataObject * | data | ) | [protected] |
vtkMultiProcessController* vtkMPIMoveData::Controller [protected] |
Definition at line 133 of file vtkMPIMoveData.h.
Definition at line 134 of file vtkMPIMoveData.h.
Definition at line 135 of file vtkMPIMoveData.h.
int vtkMPIMoveData::NumberOfBuffers [protected] |
Definition at line 148 of file vtkMPIMoveData.h.
vtkIdType* vtkMPIMoveData::BufferLengths [protected] |
Definition at line 149 of file vtkMPIMoveData.h.
vtkIdType* vtkMPIMoveData::BufferOffsets [protected] |
Definition at line 150 of file vtkMPIMoveData.h.
char* vtkMPIMoveData::Buffers [protected] |
Definition at line 151 of file vtkMPIMoveData.h.
vtkIdType vtkMPIMoveData::BufferTotalLength [protected] |
Definition at line 152 of file vtkMPIMoveData.h.
int vtkMPIMoveData::MoveMode [protected] |
Definition at line 158 of file vtkMPIMoveData.h.
int vtkMPIMoveData::Server [protected] |
Definition at line 159 of file vtkMPIMoveData.h.
int vtkMPIMoveData::OutputDataType [protected] |
Definition at line 169 of file vtkMPIMoveData.h.
int vtkMPIMoveData::DeliverOutlineToClient [protected] |
Definition at line 170 of file vtkMPIMoveData.h.
1.7.5.1