reset_flop_counter Subroutine

private subroutine reset_flop_counter(self)

Resets the flop counter to 0_int64

Usage: call my_flop_recorder%reset()

Type Bound

flop_recorder_type

Arguments

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

Called by

proc~~reset_flop_counter~~CalledByGraph proc~reset_flop_counter flop_recorder_type%reset_flop_counter proc~flop_rate_reset flop_rate_type%flop_rate_reset proc~flop_rate_reset->proc~reset_flop_counter

Source Code

   subroutine reset_flop_counter(self)
    !! Resets the flop counter to 0_int64
    !!
    !! Usage: call my_flop_recorder%reset()
    !!
      class(flop_recorder_type), intent(inout) :: self

      self%flop_count = 0_int64

   end subroutine reset_flop_counter