![]() |
Stellarator-Tools
|
Base class representing a bmw parallel context. This contains all memory needed parameters needed to parallel processing. More...
Public Member Functions | |
procedure, pass | set_threads (this, num_threads) |
Set the number of threads. | |
procedure, pass | report (this, io_unit) |
Report the number of parallel processes and threads. | |
procedure, pass | reduce1 (this, buffer) |
Reduce parallel buffers. | |
procedure, pass | reduce2 (this, buffer) |
Reduce parallel buffers. | |
procedure, pass | reduce3 (this, buffer) |
Reduce parallel buffers. | |
procedure, pass | reduce4 (this, buffer) |
Reduce parallel buffers. | |
GENERIC | reduce reduce1, reduce2, reduce3, reduce4 |
procedure, pass | start (this, total) |
Compute the start index of a flat array. | |
procedure, pass | end (this, total) |
Compute the end index of a flat array. | |
FINAL | bmw_parallel_context_destruct (this) |
Deconstruct a bmw_parallel_context_class object. | |
class(bmw_parallel_context_class) function, pointer | bmw_parallel_context_construct (comm) |
Construct a bmw_context_class object. | |
Base class representing a bmw parallel context. This contains all memory needed parameters needed to parallel processing.
Interface for the bmw_parallel_context constructor.
class (bmw_parallel_context_class) function, pointer bmw_parallel_context::bmw_parallel_context_class::bmw_parallel_context_construct | ( | integer, intent(in) | comm | ) |
Construct a bmw_context_class object.
Allocates memory and initializes a bmw_parallel_context_class object.
[in] | comm | MPI communicator. Only used if MPI support has been compiled in. |
|
final |
Deconstruct a bmw_parallel_context_class object.
Deallocates memory and uninitializes a bmw_parallel_context_class object.
[in,out] | this | A bmw_parallel_context_class instance. |
[in] | finalize | Flag to call MPI_FINALIZE. Only used if MPI support has been compiled in. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::end | ( | class (bmw_parallel_context_class), intent(in) | this, |
integer, intent(in) | total | ||
) |
Compute the end index of a flat array.
The total problem size is divided by the number of processes. Any remaining elements are added to the first few processes.
[in] | this | A bmw_parallel_context_class instance. |
[in] | total | Total number of elements in the loop. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::reduce1 | ( | class (bmw_parallel_context_class), intent(in) | this, |
real (rprec), dimension(:), intent(inout) | buffer | ||
) |
Reduce parallel buffers.
Reduce a buffer from all parallel processes. In the single processes case, this reduces to nothing. This reduces a 1D buffer.
[in] | this | A bmw_parallel_context_class instance. |
[in,out] | buffer | Buffer to reduce. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::reduce2 | ( | class (bmw_parallel_context_class), intent(in) | this, |
real (rprec), dimension(:,:), intent(inout) | buffer | ||
) |
Reduce parallel buffers.
Reduce a buffer from all parallel processes. In the single processes case, this reduces to nothing. This reduces a 2D buffer.
[in] | this | A bmw_parallel_context_class instance. |
[in,out] | buffer | Buffer to reduce. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::reduce3 | ( | class (bmw_parallel_context_class), intent(in) | this, |
real (rprec), dimension(:,:,:), intent(inout) | buffer | ||
) |
Reduce parallel buffers.
Reduce a buffer from all parallel processes. In the single processes case, this reduces to nothing. This reduces a 3D buffer.
[in] | this | A bmw_parallel_context_class instance. |
[in,out] | buffer | Buffer to reduce. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::reduce4 | ( | class (bmw_parallel_context_class), intent(in) | this, |
real (rprec), dimension(:,:,:,:), intent(inout) | buffer | ||
) |
Reduce parallel buffers.
Reduce a buffer from all parallel processes. In the single processes case, this reduces to nothing. This reduces a 4D buffer.
[in] | this | A bmw_parallel_context_class instance. |
[in,out] | buffer | Buffer to reduce. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::report | ( | class (bmw_parallel_context_class), intent(inout) | this, |
integer, intent(in) | io_unit | ||
) |
Report the number of parallel processes and threads.
Provides a summary report if the number of threads and processes currently configured.
[in] | this | A bmw_parallel_context_class instance. |
[in] | io_unit | Unit number to write messages to. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::set_threads | ( | class (bmw_parallel_context_class), intent(inout) | this, |
integer, intent(in) | num_threads | ||
) |
Set the number of threads.
Sets the number of OpenMP threads to use.
[in] | this | A bmw_parallel_context_class instance. |
[in] | num_threads | Number of threads to use. |
procedure, pass bmw_parallel_context::bmw_parallel_context_class::start | ( | class (bmw_parallel_context_class), intent(in) | this, |
integer, intent(in) | total | ||
) |
Compute the start index of a flat array.
The total problem size is divided by the number of processes. Any remaining elements are added to the first few processes.
[in] | this | A bmw_parallel_context_class instance. |
[in] | total | Total number of elements in the loop. |