Get the int64 number of FLOPs we currently have in the counter
Usage: flops = my_flop_recorder%get()
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(flop_recorder_type), | intent(in) | :: | self |
function get_flops(self) result(flops) !! Get the int64 number of FLOPs we currently have in the counter !! !! Usage: flops = my_flop_recorder%get() !! class(flop_recorder_type), intent(in) :: self integer(int64) :: flops flops = self%flop_count end function get_flops