flop_rate_stop_time Subroutine

private subroutine flop_rate_stop_time(self)

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

Usage: call my_flop_rate%stop_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

Source Code

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

      call self%m_timer%stop()

   end subroutine flop_rate_stop_time