![]() |
ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is the base class for creating low-level benchmark objects. More...
Public Attributes | |
real(RKD) | minsec = 0.05_RKD |
The minimum time in units of seconds that the benchmark should last. It could take longer, but not less than minsec . More... | |
integer(IK) | miniter = 1_IK |
The minimum number of timing of the user-specified wrapper procedure. It could run more, but not fewer than miniter . More... | |
type(timing_type) | timing |
The object of type timing_type containing the timing information and statistics of the benchmark. More... | |
character(:, SK), allocatable | name |
The name of the procedure to be timed. More... | |
class(timer_type), allocatable | timer |
The allocatable component of abstract class timer_type used for internal timing.Public access to this component provided is provided solely for the convenience of the user when access to a timer is needed. Otherwise, it not meant to be directly accessed or manipulated. The concrete type of this class component is set by the user at runtime depending on their choice of timer. More... | |
This is the base class for creating low-level benchmark objects.
See also the constructor of this type.
Possible calling interfaces ⛓
Example usage ⛓
ifort
compiler ⛓ ifort
compiler ⛓ gfortran
compiler ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Definition at line 200 of file pm_bench.F90.
integer(IK) pm_bench::benchBase_type::miniter = 1_IK |
The minimum number of timing of the user-specified wrapper procedure. It could run more, but not fewer than miniter
.
Definition at line 202 of file pm_bench.F90.
real(RKD) pm_bench::benchBase_type::minsec = 0.05_RKD |
The minimum time in units of seconds that the benchmark should last. It could take longer, but not less than minsec
.
Definition at line 201 of file pm_bench.F90.
character(:, SK), allocatable pm_bench::benchBase_type::name |
The name of the procedure to be timed.
Definition at line 204 of file pm_bench.F90.
class(timer_type), allocatable pm_bench::benchBase_type::timer |
The allocatable
component of abstract
class timer_type used for internal timing.
Public access to this component provided is provided solely for the convenience of the user when access to a timer is needed.
Otherwise, it not meant to be directly accessed or manipulated.
The concrete type of this class component is set by the user at runtime depending on their choice of timer.
Definition at line 205 of file pm_bench.F90.
type(timing_type) pm_bench::benchBase_type::timing |
The object of type timing_type containing the timing information and statistics of the benchmark.
Definition at line 203 of file pm_bench.F90.