get the number of flops recorded in the flop rate type
Usage: flops = my_flop_rate%get_flops()
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_flops(self) result(flops) !! get the number of flops recorded in the flop rate type !! !! Usage: flops = my_flop_rate%get_flops() !! !! where my_flop_rate is an instance of flop_rate_type !! class(flop_rate_type), intent(in) :: self integer(int64) :: flops flops = self%m_flops%get() end function flop_rate_get_flops