timing_data_type Derived Type

type, public :: timing_data_type

Data about each stopwatch - for timing routines


Inherited by

type~~timing_data_type~~InheritedByGraph type~timing_data_type timing_data_type type~timer_list_type timer_list_type type~timer_list_type->type~timing_data_type clocks type~lib_common_type lib_common_type type~lib_common_type->type~timer_list_type timer

Components

Type Visibility Attributes Name Initial
integer, public :: ncalls

Number of times stopwatch has been called

real(kind=DP), public :: ctime

Total time on stopwatch

real(kind=DP), public :: ptime

Temporary record of time when watch is started

character(len=60), public :: label

What is this stopwatch timing


Source Code

  type timing_data_type                                          !! Data about each stopwatch - for timing routines
    integer :: ncalls                                            !! Number of times stopwatch has been called
    real(kind=DP) :: ctime                                       !! Total time on stopwatch
    real(kind=DP) :: ptime                                       !! Temporary record of time when watch is started
    character(len=60) :: label                                   !! What is this stopwatch timing
  end type timing_data_type