ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is the timerDAT_type
class, containing attributes and static methods for setting up a timer based on the system-clock, using the Fortran intrinsic date_and_time()
.
More...
Public Member Functions | |
procedure, nopass | time => getTimeDAT |
See getTime_proc. More... | |
procedure, nopass | wait => setIdleDAT |
See setIdle_proc. More... | |
type(timerDAT_type) function | timerDAT_typer () |
This is the constructor of the timerDAT_type class. More... | |
Public Member Functions inherited from pm_timer::timer_type | |
procedure(getTime_proc), deferred, nopass | time |
See getTime_proc. More... | |
procedure(setIdle_proc), deferred, nopass | wait |
See setIdle_proc. More... | |
type(timerMPI_type) type(timerOMP_type) type(timerSYS_type) function | timer_typer () |
This is the constructor of the timer_type class. More... | |
Additional Inherited Members | |
Public Attributes inherited from pm_timer::timer_type | |
real(RKD) | start |
The protected scalar real of kind double precision RKD provided as a convenience for the user to contain the start time of the timer since the processor epoch (a processor-dependent past time) in seconds.More... | |
real(RKD) | clock |
The scalar real of kind double precision RKD provided as a convenience for the user to contain the total time in seconds elapsed since the start of the timer.The clock time can be readily can be computed as timer%clock = timer%time(since = timer%start) .More... | |
real(RKD) | delta |
The scalar real of kind double precision RKD provided as a convenience for the user to contain the delta time in seconds since the last timing (last timer call).The delta time can be readily can be computed as timer%delta = timer%time(since = timer%start) - timer%clock where timer%clock is the last clock read as timer%clock = timer%time(since = timer%start) .More... | |
real(RKD) | resol |
The protected scalar real of kind double precision RKD provided as a convenience for the user to contain the time in seconds between the timer clock tics.More... | |
This is the timerDAT_type
class, containing attributes and static methods for setting up a timer based on the system-clock, using the Fortran intrinsic date_and_time()
.
See the documentation of timerDAT_typer for the non-default constructor interface of this type.
See also the documentation details of pm_timer.
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 322 of file pm_timer.F90.
procedure, nopass pm_timer::timerDAT_type::time |
type(timerDAT_type) function pm_timer::timerDAT_type::timerDAT_typer |
This is the constructor of the timerDAT_type class.
Upon return, the constructor initializes all components of the timer object.
See also the documentation details of pm_timer.
Possible calling interfaces ⛓
timer
: The output scalar object of class timerDAT_type.
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 641 of file pm_timer.F90.
procedure, nopass pm_timer::timerDAT_type::wait |