Public Types | |
| typedef Parallel::Request | Request |
| typedef Parallel::eReduceType | eReduceType |
Public Member Functions | |
| virtual | ~IParallelSuperMng () |
| Frees resources. | |
| virtual void | build ()=0 |
| Constructs the instance members. | |
| virtual void | initialize ()=0 |
| Initializes the instance. | |
| virtual IApplication * | application () const =0 |
| Returns the main manager. | |
| virtual IThreadMng * | threadMng () const =0 |
| Thread manager. | |
| virtual bool | isParallel () const =0 |
| Returns true if the execution is parallel. | |
| virtual Int32 | commRank () const =0 |
| Returns the process number (between 0 and nbProcess()-1). | |
| virtual Int32 | commSize () const =0 |
| Returns the total number of processes used. | |
| virtual Int32 | traceRank () const =0 |
| Rank of this instance for traces. | |
| virtual void * | getMPICommunicator ()=0 |
| Address of the MPI communicator associated with this manager. | |
| virtual Parallel::Communicator | communicator () const =0 |
| MPI communicator associated with this manager. | |
| virtual Ref< IParallelMng > | internalCreateWorldParallelMng (Int32 local_rank)=0 |
| virtual Int32 | nbLocalSubDomain ()=0 |
| Number of subdomains to create locally. | |
| virtual void | tryAbort ()=0 |
| Attempts to abort. | |
| virtual bool | isMasterIO () const =0 |
| Returns true if the instance is a master I/O manager. | |
| virtual Int32 | masterIORank () const =0 |
| Rank of the instance managing input/output (for which isMasterIO() is true). | |
| virtual void | barrier ()=0 |
| Parallelism manager for all allocated resources. | |
broadcast operations | |
| virtual void | broadcast (ByteArrayView send_buf, Integer process_id)=0 |
| Sends an array of values to all processes This operation synchronizes the value array send_buf across all processes. The array used is that of the process whose identifier (processId()) is process_id. All processes must call this method with the same parameter process_id and have a send_buf array containing the same number of elements. | |
| virtual void | broadcast (Int32ArrayView send_buf, Integer process_id)=0 |
| virtual void | broadcast (Int64ArrayView send_buf, Integer process_id)=0 |
| virtual void | broadcast (RealArrayView send_buf, Integer process_id)=0 |
Definition at line 41 of file IParallelSuperMng.h.
Definition at line 46 of file IParallelSuperMng.h.
| typedef Parallel::Request Arcane::IParallelSuperMng::Request |
Definition at line 45 of file IParallelSuperMng.h.
|
inlinevirtual |
Frees resources.
Definition at line 50 of file IParallelSuperMng.h.
|
pure virtual |
Parallelism manager for all allocated resources.
Performs a barrier
|
pure virtual |
Sends an array of values to all processes This operation synchronizes the value array send_buf across all processes. The array used is that of the process whose identifier (processId()) is process_id. All processes must call this method with the same parameter process_id and have a send_buf array containing the same number of elements.
Implemented in Arcane::ParallelSuperMngDispatcher.
References broadcast().
Referenced by broadcast().
|
pure virtual |
Constructs the instance members.
The instance is not usable until this method has been called. This method must be called before initialize().
|
pure virtual |
MPI communicator associated with this manager.
|
pure virtual |
Address of the MPI communicator associated with this manager.
The communicator is only valid if MPI is used. Otherwise, the returned address is 0. The returned value is of type (MPI_Comm*).
|
pure virtual |
Initializes the instance.
The instance is not usable until this method has been called.
|
pure virtual |
Rank of the instance managing input/output (for which isMasterIO() is true).
In the current implementation, this is always the rank 0 processor.
|
pure virtual |
Number of subdomains to create locally.
|
pure virtual |
Attempts to abort.
This method is called when an exception has been generated and the current execution case must stop. It allows performing cleanup operations on the manager if necessary.