flop_rate_reset Subroutine

private subroutine flop_rate_reset(self)

reset the flop rate type, this will reset the timer and the flop recorder

Usage: call my_flop_rate%reset()

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_reset~~CallsGraph proc~flop_rate_reset flop_rate_type%flop_rate_reset proc~reset_flop_counter flop_recorder_type%reset_flop_counter proc~flop_rate_reset->proc~reset_flop_counter

Source Code

   subroutine flop_rate_reset(self)
      !! reset the flop rate type, this will reset the timer and the flop recorder
      !!
      !! Usage: call my_flop_rate%reset()
      !!
      !! where my_flop_rate is an instance of flop_rate_type
      !!
      class(flop_rate_type), intent(inout) :: self

      call self%m_flops%reset()
   end subroutine flop_rate_reset