report the flop rate, this will print the flop rate in GFLOP/s
Usage: call my_flop_rate%report()
where my_flop_rate is an instance of flop_rate_type
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(flop_rate_type), | intent(inout) | :: | self |
subroutine flop_rate_report(self) !! report the flop rate, this will print the flop rate in GFLOP/s !! !! Usage: call my_flop_rate%report() !! !! where my_flop_rate is an instance of flop_rate_type !! class(flop_rate_type), intent(inout) :: self self%m_flop_rate = self%get_flop_rate() print *, "Flop rate is "//to_string(self%m_flop_rate)//" GFLOP/s" end subroutine flop_rate_report