39#ifndef vtkMPICommunicator_h
40#define vtkMPICommunicator_h
42#include "vtkParallelMPIModule.h"
48class vtkMPICommunicatorOpaqueComm;
49class vtkMPICommunicatorOpaqueRequest;
50class vtkMPICommunicatorReceiveDataInfo;
66 vtkMPICommunicatorOpaqueRequest*
Req;
104 int remoteProcessId,
int tag);
106 int remoteProcessId,
int tag);
130#ifdef VTK_USE_64BIT_IDS
147 int remoteProcessId,
int tag,
Request& req);
156#ifdef VTK_USE_64BIT_IDS
190 int operation,
int destProcessId);
193 Operation *operation,
int destProcessId);
244 const int count,
Request requests[],
int &NCompleted,
int *completed );
265 int& NCompleted,
int *completed);
271 return this->MPIComm;
285 vtkSetClampMacro(UseSsend,
int, 0, 1);
286 vtkGetMacro(UseSsend,
int);
343 int remoteProcessId,
int tag,
344 vtkMPICommunicatorReceiveDataInfo*
info,
345 int useCopy,
int& senderId);
A custom operation to use in a reduce command.
Used to send/receive messages in a multiprocess environment.
a simple class to control print indentation
vtkMPICommunicatorOpaqueRequest * Req
Class for creating user defined MPI communicators.
virtual int ReceiveVoidArray(void *data, vtkIdType length, int type, int remoteProcessId, int tag)
Subclasses have to supply this method to receive various arrays of data.
virtual int ScatterVVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType *sendLengths, vtkIdType *offsets, vtkIdType recvLength, int type, int srcProcessId)
int NoBlockReceive(double *data, int length, int remoteProcessId, int tag, Request &req)
virtual int AllReduceVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, Operation *operation)
int NoBlockReceive(unsigned char *data, int length, int remoteProcessId, int tag, Request &req)
void InitializeCopy(vtkMPICommunicator *source)
static vtkMPICommunicator * WorldCommunicator
int InitializeNumberOfProcesses()
virtual int GatherVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, int destProcessId)
int SplitInitialize(vtkCommunicator *oldcomm, int color, int key)
Used to initialize the communicator (i.e.
int InitializeExternal(vtkMPICommunicatorOpaqueComm *comm)
static vtkMPICommunicator * New()
Creates an empty communicator.
int Initialize(vtkProcessGroup *group)
Used to initialize the communicator (i.e.
virtual int ReceiveDataInternal(char *data, int length, int sizeoftype, int remoteProcessId, int tag, vtkMPICommunicatorReceiveDataInfo *info, int useCopy, int &senderId)
Implementation for receive data.
int NoBlockSend(const unsigned char *data, int length, int remoteProcessId, int tag, Request &req)
static vtkMPICommunicator * GetWorldCommunicator()
Returns the singleton which behaves as the global communicator (MPI_COMM_WORLD)
virtual int ReduceVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, Operation *operation, int destProcessId)
int NoBlockSend(const char *data, int length, int remoteProcessId, int tag, Request &req)
int TestAny(const int count, Request requests[], int &idx, int &flag)
Check if at least one of the specified requests has completed.
virtual int AllReduceVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, int operation)
static char * Allocate(size_t size)
int NoBlockReceive(int *data, int length, int remoteProcessId, int tag, Request &req)
This method receives data from a corresponding send (non-blocking).
int NoBlockSend(const float *data, int length, int remoteProcessId, int tag, Request &req)
vtkMPICommunicatorOpaqueComm * MPIComm
virtual void Barrier()
More efficient implementations of collective operations that use the equivalent MPI commands.
virtual int GatherVVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int type, int destProcessId)
virtual int AllGatherVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type)
int NoBlockSend(const int *data, int length, int remoteProcessId, int tag, Request &req)
This method sends data to another process (non-blocking).
int Iprobe(int source, int tag, int *flag, int *actualSource)
Nonblocking test for a message.
static void Free(char *ptr)
virtual int BroadcastVoidArray(void *data, vtkIdType length, int type, int srcProcessId)
Subclasses should reimplement these if they have a more efficient implementation.
int NoBlockReceive(unsigned long *data, int length, int remoteProcessId, int tag, Request &req)
int TestAll(const int count, Request requests[], int &flag)
Checks if the given communication request objects are complete.
int Iprobe(int source, int tag, int *flag, int *actualSource, int *type, int *size)
int WaitSome(const int count, Request requests[], int &NCompleted, int *completed)
Blocks until one or more of the specified requests in the given request request array completes.
virtual int ReduceVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, int operation, int destProcessId)
int WaitAll(const int count, Request requests[])
Given the request objects of a set of non-blocking operations (send and/or receive) this method block...
void CopyFrom(vtkMPICommunicator *source)
Copies all the attributes of source, deleting previously stored data.
virtual int AllGatherVVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType sendLength, vtkIdType *recvLengths, vtkIdType *offsets, int type)
int TestSome(const int count, Request requests[], int &NCompleted, int *completed)
Checks the status of all the given request communication object handles.
int WaitAny(const int count, Request requests[], int &idx)
Blocks until one of the specified requests in the given request array completes.
int Iprobe(int source, int tag, int *flag, int *actualSource, unsigned long *type, int *size)
virtual int SendVoidArray(const void *data, vtkIdType length, int type, int remoteProcessId, int tag)
Performs the actual communication.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
int NoBlockSend(const unsigned long *data, int length, int remoteProcessId, int tag, Request &req)
int NoBlockSend(const double *data, int length, int remoteProcessId, int tag, Request &req)
virtual int ScatterVoidArray(const void *sendBuffer, void *recvBuffer, vtkIdType length, int type, int srcProcessId)
int NoBlockReceive(char *data, int length, int remoteProcessId, int tag, Request &req)
int Iprobe(int source, int tag, int *flag, int *actualSource, float *type, int *size)
static int CheckForMPIError(int err)
vtkMPICommunicatorOpaqueComm * GetMPIComm()
void Duplicate(vtkMPICommunicator *source)
Copies all the attributes of source, deleting previously stored data EXCEPT the MPI communicator hand...
int NoBlockReceive(float *data, int length, int remoteProcessId, int tag, Request &req)
int Iprobe(int source, int tag, int *flag, int *actualSource, const char *type, int *size)
int Iprobe(int source, int tag, int *flag, int *actualSource, double *type, int *size)
Process communication using MPI.
A subgroup of processes from a communicator.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.