flop_rate_start_time Subroutine

private subroutine flop_rate_start_time(self)

Calls the start method for the timer contained in the flop rate type

Usage: call my_flop_rate%start_time()

where my_flop_rate is an instance of flop_rate_type

Type Bound

flop_rate_type

Arguments

Type IntentOptional Attributes Name
class(flop_rate_type), intent(inout) :: self

Calls

proc~~flop_rate_start_time~~CallsGraph proc~flop_rate_start_time flop_rate_type%flop_rate_start_time proc~timer_start pic_timer_type%timer_start proc~flop_rate_start_time->proc~timer_start

Source Code

   subroutine flop_rate_start_time(self)
      !! Calls the start method for the timer contained in the flop rate type
      !!
      !! Usage: call my_flop_rate%start_time()
      !!
      !! where my_flop_rate is an instance of flop_rate_type
      !!
      class(flop_rate_type), intent(inout) :: self

      call self%m_timer%start()
   end subroutine flop_rate_start_time