get the elapsed time in seconds from the timer contained in the flop rate type
Usage: time = my_flop_rate%get_time()
where my_flop_rate is an instance of flop_rate_type
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(flop_rate_type), | intent(in) | :: | self |
function flop_rate_get_time(self) result(time) !! get the elapsed time in seconds from the timer contained in the flop rate type !! !! Usage: time = my_flop_rate%get_time() !! !! where my_flop_rate is an instance of flop_rate_type !! class(flop_rate_type), intent(in) :: self real(dp) :: time time = self%m_timer%get_elapsed_time() end function flop_rate_get_time