![]() |
ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This module contains the timer procedures and derived types to facilitate timing applications at runtime.
More...
Data Types | |
interface | getTime_proc |
This is the abstract interface of the setTime static type-bound procedure component of timer_type abstract type that performs the timing since a user-specified or a processor-dependent origin. More... | |
interface | setIdle_proc |
This is the abstract interface of the wait static type-bound procedure component of timer_type abstract type that keeps the system waiting for the specified amount of seconds.More... | |
interface | timer_type |
This is the abstract base derived type that serves as a simple container template for other timer classes in the ParaMonte library. More... | |
interface | timerCPU_type |
This is the timerCPU_type class, containing attributes and static methods for setting up a timer based on the CPU-clock, using the Fortran intrinsic cpu_time() . More... | |
interface | timerDAT_type |
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... | |
interface | timerMPI_type |
This is the timerMPI_type class, containing attributes and static methods for setting up a timer based on the MPI intrinsic MPI_Wtime() . More... | |
interface | timerOMP_type |
This is the timerMPI_type class, containing attributes and static methods for setting up a timer based on the OpenMP intrinsic omp_get_wtime() . More... | |
interface | timerSYS_type |
This is the timerSYS_type class, containing attributes and static methods for setting up a timer based on the system-clock, using the Fortran intrinsic system_clock() . More... | |
Functions/Subroutines | |
type(timerMPI_type) type(timerOMP_type) type(timerSYS_type) function | timer_typer () |
This is the constructor of the timer_type class. More... | |
type(timerCPU_type) function | timerCPU_typer () |
This is the constructor of the timerCPU_type class. More... | |
type(timerDAT_type) function | timerDAT_typer () |
This is the constructor of the timerDAT_type class. More... | |
type(timerMPI_type) function | timerMPI_typer () |
This is the constructor of the timerMPI_type class. More... | |
type(timerOMP_type) function | timerOMP_typer () |
This is the constructor of the timerOMP_type class. More... | |
type(timerSYS_type) function | timerSYS_typer () |
This is the constructor of the timerSYS_type class. More... | |
real(RKD) function | getTime (since) |
Generate and return the time in units of seconds since the specified time since or since an arbitrary processor-dependent time. More... | |
real(RKD) function | getTimeCPU (since) |
Generate and return the CPU time in units of seconds since the specified time since or since an arbitrary processor-dependent time. More... | |
real(RKD) function | getTimeDAT (since) |
Generate and return the calendrical clock time in units of seconds since the specified time since or since the Gregorian calendrical time origin. More... | |
real(RKD) function | getTimeMPI (since) |
Generate and return the MPI clock time in units of seconds since the specified time since or since an arbitrary time origin set by the MPI library. More... | |
real(RKD) function | getTimeOMP (since) |
Generate and return the OpenMP clock time in units of seconds since the specified time since or since an arbitrary time origin set by the OpenMP library. More... | |
real(RKD) function | getTimeSYS (since) |
Generate and return the system clock time in units of seconds since the specified time since or since an arbitrary processor-dependent time origin. More... | |
real(RKD) function | getResTimer () |
Generate and return the time resolution by the build-time default timer of the ParaMonte library as used in timer_type, in units of seconds. More... | |
real(RKD) function | getResTimerCPU () |
Generate and return the time resolution of the Fortran intrinsic cpu_time() , used in timerCPU_type, in units of seconds. More... | |
pure real(RKD) function | getResTimerDAT () |
Generate and return the time resolution of the Fortran intrinsic date_and_time() , used in timerDAT_type, in units of seconds. More... | |
real(RKD) function | getResTimerMPI () |
Generate and return the time resolution of the MPI intrinsic timer, used in timerMPI_type, in units of seconds. More... | |
real(RKD) function | getResTimerOMP () |
Generate and return the time resolution of the OpenMP intrinsic timer, used in timerOMP_type, in units of seconds. More... | |
real(RKD) function | getResTimerSYS () |
Generate and return the time resolution of the Fortran intrinsic system_clock() , used in timerSYS_type, in units of seconds. More... | |
subroutine | setIdle (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the default timer of the ParaMonte library. More... | |
subroutine | setIdleCPU (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic cpu_time() . More... | |
subroutine | setIdleDAT (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic date_and_time() . More... | |
subroutine | setIdleMPI (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the MPI intrinsic timer MPI_Wtime() . More... | |
subroutine | setIdleOMP (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the OpenMP intrinsic timer omp_get_wtime() . More... | |
subroutine | setIdleSYS (seconds) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic system_clock() . More... | |
Variables | |
character(*, SK), parameter | MODULE_NAME = "@pm_timer" |
This module contains the timer procedures and derived types to facilitate timing applications at runtime.
Currently, five types of timers are available in this module in addition to a generic timer class.
cpu_time()
.cpu_time()
returns the sum of the total time spent by all processes.cpu_time()
is processor-dependent.cpu_time()
.cpu_time()
.cpu_time()
.cpu_time()
is negative to indicate the lack of a processor clock.CHECK_ENABLED=1
.date_and_time()
.mpi_wtime()
.mpi_wtick()
.mpi_init()
and not have been finalized via mpi_finalize()
.CHECK_ENABLED=1
. omp_get_wtime()
.omp_get_wtick()
.system_clock()
.sysctem_clock()
returns a negative clock count
to indicate the lack of a processor clock.CHECK_ENABLED=1
.
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.
real(RKD) function pm_timer::getResTimer |
Generate and return the time resolution by the build-time default timer of the ParaMonte library as used in timer_type, in units of seconds.
This function relies on either of the following lower-level module functions depending on the ParaMonte library build:
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of the clock in units of seconds.
Possible calling interfaces ⛓
impure
.
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 1261 of file pm_timer.F90.
References getResTimerMPI(), getResTimerOMP(), and getResTimerSYS().
real(RKD) function pm_timer::getResTimerCPU |
Generate and return the time resolution of the Fortran intrinsic cpu_time()
, used in timerCPU_type, in units of seconds.
See also the documentation details of pm_timer.
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of the CPU clock in units of seconds.
Possible calling interfaces ⛓
impure
.
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 1316 of file pm_timer.F90.
Referenced by pm_timer::timerCPU_type::timerCPU_typer().
pure real(RKD) function pm_timer::getResTimerDAT |
Generate and return the time resolution of the Fortran intrinsic date_and_time()
, used in timerDAT_type, in units of seconds.
See also the documentation details of pm_timer.
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of date_and_time()
in units of seconds.
Possible calling interfaces ⛓
pure
.
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 1373 of file pm_timer.F90.
real(RKD) function pm_timer::getResTimerMPI |
Generate and return the time resolution of the MPI intrinsic timer, used in timerMPI_type, in units of seconds.
See also the documentation details of pm_timer.
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of mpi_wtime()
in units of seconds.
Possible calling interfaces ⛓
MPI_ENABLED=1
.
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 1424 of file pm_timer.F90.
Referenced by getResTimer().
real(RKD) function pm_timer::getResTimerOMP |
Generate and return the time resolution of the OpenMP intrinsic timer, used in timerOMP_type, in units of seconds.
See also the documentation details of pm_timer.
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of mpi_wtime()
in units of seconds.
Possible calling interfaces ⛓
OMP_ENABLED=1
.
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 1477 of file pm_timer.F90.
Referenced by getResTimer().
real(RKD) function pm_timer::getResTimerSYS |
Generate and return the time resolution of the Fortran intrinsic system_clock()
, used in timerSYS_type, in units of seconds.
See also the documentation details of pm_timer.
resolution
: The output scalar of type real
of kind double precision RKD, containing the time resolution of the system clock in units of seconds.
Possible calling interfaces ⛓
impure
.
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 1528 of file pm_timer.F90.
Referenced by getResTimer(), and pm_timer::timerSYS_type::timerSYS_typer().
real(RKD) function pm_timer::getTime | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the time in units of seconds since the specified time since
or since an arbitrary processor-dependent time.
This function relies on either of the following lower-level module functions depending on the ParaMonte library build:
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is processor-dependent but constant at runtime.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since a specified time since
or since an arbitrary processor-dependent time.
Possible calling interfaces ⛓
impure
.
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 858 of file pm_timer.F90.
References getTimeMPI(), getTimeOMP(), and getTimeSYS().
real(RKD) function pm_timer::getTimeCPU | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the CPU time in units of seconds since the specified time since
or since an arbitrary processor-dependent time.
See also the documentation details of pm_timer.
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is processor-dependent but constant at runtime.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since a specified time since
or since an arbitrary processor-dependent time.
Possible calling interfaces ⛓
impure
.
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 918 of file pm_timer.F90.
Referenced by setIdleCPU().
real(RKD) function pm_timer::getTimeDAT | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the calendrical clock time in units of seconds since the specified time since
or since the Gregorian calendrical time origin.
See also the documentation details of pm_timer.
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is the Gregorian calendrical time origin.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since the specified time origin.
Possible calling interfaces ⛓
impure
.
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 973 of file pm_timer.F90.
References pm_kind::IK, pm_kind::RKD, and pm_dateTime::SECONDS_PER_DAY.
Referenced by setIdleDAT().
real(RKD) function pm_timer::getTimeMPI | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the MPI clock time in units of seconds since the specified time since
or since an arbitrary time origin set by the MPI library.
See also the documentation details of pm_timer.
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is an arbitrary time origin set by the MPI library.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since the specified time origin.
Possible calling interfaces ⛓
MPI_ENABLED=1
.impure
.
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 1036 of file pm_timer.F90.
References pm_kind::IK, and pm_kind::RKD.
Referenced by getTime(), and setIdleMPI().
real(RKD) function pm_timer::getTimeOMP | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the OpenMP clock time in units of seconds since the specified time since
or since an arbitrary time origin set by the OpenMP library.
See also the documentation details of pm_timer.
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is an arbitrary time origin set by the OpenMP library.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since the specified time origin.
Possible calling interfaces ⛓
OMP_ENABLED=1
.impure
.
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 1097 of file pm_timer.F90.
References pm_kind::IK, and pm_kind::RKD.
Referenced by getTime(), and setIdleOMP().
real(RKD) function pm_timer::getTimeSYS | ( | real(RKD), intent(in), optional | since | ) |
Generate and return the system clock time in units of seconds since the specified time since
or since an arbitrary processor-dependent time origin.
See also the documentation details of pm_timer.
[in] | since | : The input scalar of type real of kind double precision RKD representing the time origin (epoch) in seconds.(optional. If not present, its value is processor-dependent but constant at runtime.) |
timeInSec
: The output scalar of type real
of kind double precision RKD, containing the time in seconds since a processor-defined origin of time.
Possible calling interfaces ⛓
impure
.
Example usage ⛓
ifort
compiler ⛓ ifort
compiler ⛓ gfortran
compiler ⛓ The above code yields highly similar time costs for multiplication vs. division operation in most benchmarks.
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 1198 of file pm_timer.F90.
Referenced by getTime(), and setIdleSYS().
subroutine pm_timer::setIdle | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the default timer of the ParaMonte library.
This function relies on either of the following lower-level module functions depending on the ParaMonte library build:
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
impure
.
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 1593 of file pm_timer.F90.
References pm_kind::RKD, setIdleMPI(), setIdleOMP(), and setIdleSYS().
subroutine pm_timer::setIdleCPU | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic cpu_time()
.
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
CHECK_ENABLED=1
.impure
.
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 1658 of file pm_timer.F90.
References getTimeCPU(), and pm_kind::RKD.
subroutine pm_timer::setIdleDAT | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic date_and_time()
.
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
CHECK_ENABLED=1
.impure
.
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 1721 of file pm_timer.F90.
References getTimeDAT(), and pm_kind::RKD.
subroutine pm_timer::setIdleMPI | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the MPI intrinsic timer MPI_Wtime()
.
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
MPI_ENABLED=1
.CHECK_ENABLED=1
.impure
.
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 1787 of file pm_timer.F90.
References getTimeMPI(), and pm_kind::RKD.
Referenced by setIdle().
subroutine pm_timer::setIdleOMP | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the OpenMP intrinsic timer omp_get_wtime()
.
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
OMP_ENABLED=1
.impure
.
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 1850 of file pm_timer.F90.
References getTimeOMP(), and pm_kind::RKD.
Referenced by setIdle().
subroutine pm_timer::setIdleSYS | ( | real(RKD), intent(in) | seconds | ) |
Set the processor in sleep mode for the input requested number of seconds via the Fortran intrinsic system_clock()
.
[in] | seconds | : The input scalar of type real of kind double precision RKD representing the number of seconds to put the system into sleep. |
Possible calling interfaces ⛓
CHECK_ENABLED=1
.impure
.
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 1914 of file pm_timer.F90.
References getTimeSYS(), and pm_kind::RKD.
Referenced by setIdle().
type(timerMPI_type) type(timerOMP_type) type(timerSYS_type) function pm_timer::timer_typer |
This is the constructor of the timer_type class.
Upon return, the constructor initializes all components of the timer object.
See also the documentation details of pm_timer.
timer
: The output scalar object of class timer_type.MPI_ENABLED
defined. OMP_ENABLED
defined.
Possible calling interfaces ⛓
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 556 of file pm_timer.F90.
type(timerCPU_type) function pm_timer::timerCPU_typer |
This is the constructor of the timerCPU_type class.
Upon return, the constructor initializes all components of the timer object.
See also the documentation details of pm_timer.
timer
: The output scalar object of class timerCPU_type.
Possible calling interfaces ⛓
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 601 of file pm_timer.F90.
type(timerDAT_type) function pm_timer::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.
type(timerMPI_type) function pm_timer::timerMPI_typer |
This is the constructor of the timerMPI_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 timerMPI_type.CHECK_ENABLED=1
.MPI_ENABLED=1
.
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 689 of file pm_timer.F90.
type(timerOMP_type) function pm_timer::timerOMP_typer |
This is the constructor of the timerOMP_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 timerOMP_type.OMP_ENABLED=1
.
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 753 of file pm_timer.F90.
type(timerSYS_type) function pm_timer::timerSYS_typer |
This is the constructor of the timerSYS_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 timerSYS_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 795 of file pm_timer.F90.
character(*, SK), parameter pm_timer::MODULE_NAME = "@pm_timer" |
Definition at line 117 of file pm_timer.F90.