#include <Epetra_Comm.h>
Inheritance diagram for Epetra_Comm:

Public Member Functions | |
Constructor / Destructor | |
| virtual Epetra_Comm * | Clone () const =0 |
| Epetra_Comm clone constructor. | |
| virtual | ~Epetra_Comm () |
| Epetra_Comm Destructor. | |
Barrier Methods | |
| virtual void | Barrier () const =0 |
| Epetra_Comm Barrier function. | |
Broadcast Methods | |
| virtual int | Broadcast (double *MyVals, int Count, int Root) const =0 |
| Epetra_Comm Broadcast function. | |
| virtual int | Broadcast (int *MyVals, int Count, int Root) const =0 |
| Epetra_Comm Broadcast function. | |
| virtual int | Broadcast (long *MyVals, int Count, int Root) const =0 |
| Epetra_Comm Broadcast function. | |
Gather Methods | |
| virtual int | GatherAll (double *MyVals, double *AllVals, int Count) const =0 |
| Epetra_Comm All Gather function. | |
| virtual int | GatherAll (int *MyVals, int *AllVals, int Count) const =0 |
| Epetra_Comm All Gather function. | |
| virtual int | GatherAll (long *MyVals, long *AllVals, int Count) const =0 |
| Epetra_Comm All Gather function. | |
Sum Methods | |
| virtual int | SumAll (double *PartialSums, double *GlobalSums, int Count) const =0 |
| Epetra_Comm Global Sum function. | |
| virtual int | SumAll (int *PartialSums, int *GlobalSums, int Count) const =0 |
| Epetra_Comm Global Sum function. | |
| virtual int | SumAll (long *PartialSums, long *GlobalSums, int Count) const =0 |
| Epetra_Comm Global Sum function. | |
Max/Min Methods | |
| virtual int | MaxAll (double *PartialMaxs, double *GlobalMaxs, int Count) const =0 |
| Epetra_Comm Global Max function. | |
| virtual int | MaxAll (int *PartialMaxs, int *GlobalMaxs, int Count) const =0 |
| Epetra_Comm Global Max function. | |
| virtual int | MaxAll (long *PartialMaxs, long *GlobalMaxs, int Count) const =0 |
| Epetra_Comm Global Max function. | |
| virtual int | MinAll (double *PartialMins, double *GlobalMins, int Count) const =0 |
| Epetra_Comm Global Min function. | |
| virtual int | MinAll (int *PartialMins, int *GlobalMins, int Count) const =0 |
| Epetra_Comm Global Min function. | |
| virtual int | MinAll (long *PartialMins, long *GlobalMins, int Count) const =0 |
| Epetra_Comm Global Min function. | |
Parallel Prefix Methods | |
| virtual int | ScanSum (double *MyVals, double *ScanSums, int Count) const =0 |
| Epetra_Comm Scan Sum function. | |
| virtual int | ScanSum (int *MyVals, int *ScanSums, int Count) const =0 |
| Epetra_Comm Scan Sum function. | |
| virtual int | ScanSum (long *MyVals, long *ScanSums, int Count) const =0 |
| Epetra_Comm Scan Sum function. | |
Attribute Accessor Methods | |
| virtual int | MyPID () const =0 |
| Return my process ID. | |
| virtual int | NumProc () const =0 |
| Returns total number of processes. | |
Gather/Scatter and Directory Constructors | |
| virtual Epetra_Distributor * | CreateDistributor () const =0 |
| Create a distributor object. | |
| virtual Epetra_Directory * | CreateDirectory (const Epetra_BlockMap &Map) const =0 |
| Create a directory object for the given Epetra_BlockMap. | |
I/O methods | |
| virtual void | PrintInfo (ostream &os) const =0 |
| Print object to an output stream. | |
The Epetra_Comm class is an interface that encapsulates the general information and services needed for other Epetra classes to run on a parallel computer. An Epetra_Comm object is required for building all Epetra Map objects, which in turn are required for all other Epetra classes.
Epetra_Comm has default implementations, via Epetra_SerialComm and Epetra_MpiComm, for both serial execution and MPI distributed memory execution. It is meant to insulate the user from the specifics of communication that are not required for normal manipulation of linear algebra objects. Most Epetra_Comm interfaces are similar to MPI interfaces, except that the type of data is not required as an argument since C++ can bind to the appropriate interface based on argument typing.
Any implementation of the Epetra_Comm interface is also responsible for generating an Epetra_Distributor and Epetra_Directory object.
|
|
Epetra_Comm Barrier function. Each processor must wait at the point the barrier is called until all processors have arrived. Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Broadcast function. Take list of input values from the root processor and sends to all other processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Broadcast function. Take list of input values from the root processor and sends to all other processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Broadcast function. Take list of input values from the root processor and sends to all other processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
|
Epetra_Comm clone constructor. The clone function will return a new heap-allocated Comm instance. It is the responsibility of the caller to ensure that this new instance is properly destroyed. Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm All Gather function. Take list of input values from all processors in the communicator and creates an ordered contiguous list of those values on each processor.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm All Gather function. Take list of input values from all processors in the communicator and creates an ordered contiguous list of those values on each processor.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm All Gather function. Take list of input values from all processors in the communicator and creates an ordered contiguous list of those values on each processor.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Max function. Take list of input values from all processors in the communicator, computes the max and returns the max to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Max function. Take list of input values from all processors in the communicator, computes the max and returns the max to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Max function. Take list of input values from all processors in the communicator, computes the max and returns the max to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Min function. Take list of input values from all processors in the communicator, computes the min and returns the min to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Min function. Take list of input values from all processors in the communicator, computes the min and returns the min to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Min function. Take list of input values from all processors in the communicator, computes the min and returns the min to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
|
Return my process ID. In MPI mode returns the rank of the calling process. In serial mode returns 0. Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
|
Returns total number of processes. In MPI mode returns the size of the MPI communicator. In serial mode returns 1. Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Scan Sum function. Take list of input values from all processors in the communicator, computes the scan sum and returns it to all processors such that processor i contains the sum of values from processor 0 up to and including processor i.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Scan Sum function. Take list of input values from all processors in the communicator, computes the scan sum and returns it to all processors such that processor i contains the sum of values from processor 0 up to and including processor i.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Scan Sum function. Take list of input values from all processors in the communicator, computes the scan sum and returns it to all processors such that processor i contains the sum of values from processor 0 up to and including processor i.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Sum function. Take list of input values from all processors in the communicator, computes the sum and returns the sum to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Sum function. Take list of input values from all processors in the communicator, computes the sum and returns the sum to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
|
||||||||||||||||
|
Epetra_Comm Global Sum function. Take list of input values from all processors in the communicator, computes the sum and returns the sum to all processors.
Implemented in Epetra_MpiComm, Epetra_MpiSmpComm, and Epetra_SerialComm. |
1.3.9.1