report Subroutine

private subroutine report(self)

报告

Type Bound

memory_type

Arguments

Type IntentOptional Attributes Name
class(memory_type), intent(in) :: self

Contents

Source Code


Source Code

    subroutine report(self)
        class(memory_type), intent(in) :: self

        call terminal_obj%info('post-report')
        call display(self%maxpairs, 'max pairs:', inline=.true.)
        call display(self%region, 'memory usage by region (MB):', inline=.true.)
        ! call display(self%nnps, 'memory_type usage by nnps (MB):', inline=.true.)
        ! call display(self%total, 'total memory_type usage (MB, approximate):', inline=.true.)

    end subroutine report