profiler_timer_t Derived Type

type, private :: profiler_timer_t


Components

Type Visibility Attributes Name Initial
integer, public :: calls = 0
character(len=NAME_LEN), public :: name = ''
real(kind=rk), public :: total_time = 0.0_rk

Source Code

   type :: profiler_timer_t
      character(len=NAME_LEN) :: name = ''
      integer :: calls = 0
      real(rk) :: total_time = 0.0_rk
   end type profiler_timer_t