VmstatMemoryGauge.F90 Source File


This file depends on

sourcefile~~vmstatmemorygauge.f90~~EfferentGraph sourcefile~vmstatmemorygauge.f90 VmstatMemoryGauge.F90 sourcefile~abstractgauge.f90 AbstractGauge.F90 sourcefile~vmstatmemorygauge.f90->sourcefile~abstractgauge.f90 sourcefile~errorhandling.f90 ErrorHandling.F90 sourcefile~vmstatmemorygauge.f90->sourcefile~errorhandling.f90 sourcefile~abstractmeter.f90 AbstractMeter.F90 sourcefile~abstractgauge.f90->sourcefile~abstractmeter.f90 sourcefile~mapl_throw.f90 MAPL_Throw.F90 sourcefile~errorhandling.f90->sourcefile~mapl_throw.f90 sourcefile~abstractmeter.f90->sourcefile~errorhandling.f90

Files dependent on this one

sourcefile~~vmstatmemorygauge.f90~~AfferentGraph sourcefile~vmstatmemorygauge.f90 VmstatMemoryGauge.F90 sourcefile~mapl_profiler.f90 MAPL_Profiler.F90 sourcefile~mapl_profiler.f90->sourcefile~vmstatmemorygauge.f90 sourcefile~memoryprofiler.f90 MemoryProfiler.F90 sourcefile~mapl_profiler.f90->sourcefile~memoryprofiler.f90 sourcefile~memoryprofiler.f90->sourcefile~vmstatmemorygauge.f90 sourcefile~abstractserver.f90 AbstractServer.F90 sourcefile~abstractserver.f90->sourcefile~mapl_profiler.f90 sourcefile~applicationsupport.f90 ApplicationSupport.F90 sourcefile~applicationsupport.f90->sourcefile~mapl_profiler.f90 sourcefile~base_base_implementation.f90 Base_Base_implementation.F90 sourcefile~base_base_implementation.f90->sourcefile~mapl_profiler.f90 sourcefile~demo.f90 demo.F90 sourcefile~demo.f90->sourcefile~mapl_profiler.f90 sourcefile~extdatadrivergridcomp.f90 ExtDataDriverGridComp.F90 sourcefile~extdatadrivergridcomp.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl.f90 MAPL.F90 sourcefile~mapl.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl_bundleio_test.f90 mapl_bundleio_test.F90 sourcefile~mapl_bundleio_test.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl_capgridcomp.f90 MAPL_CapGridComp.F90 sourcefile~mapl_capgridcomp.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl_generic.f90 MAPL_Generic.F90 sourcefile~mapl_generic.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl_nuopcwrappermod.f90 MAPL_NUOPCWrapperMod.F90 sourcefile~mapl_nuopcwrappermod.f90->sourcefile~mapl_profiler.f90 sourcefile~mapl_verticalmethods.f90 MAPL_VerticalMethods.F90 sourcefile~mapl_verticalmethods.f90->sourcefile~mapl_profiler.f90 sourcefile~maplframework.f90 MaplFramework.F90 sourcefile~maplframework.f90->sourcefile~mapl_profiler.f90 sourcefile~mpi_demo.f90 mpi_demo.F90 sourcefile~mpi_demo.f90->sourcefile~mapl_profiler.f90 sourcefile~mpiserver.f90 MpiServer.F90 sourcefile~mpiserver.f90->sourcefile~mapl_profiler.f90 sourcefile~multigroupserver.f90 MultiGroupServer.F90 sourcefile~multigroupserver.f90->sourcefile~mapl_profiler.f90 sourcefile~regrid_util.f90 Regrid_Util.F90 sourcefile~regrid_util.f90->sourcefile~mapl_profiler.f90 sourcefile~serverthread.f90 ServerThread.F90 sourcefile~serverthread.f90->sourcefile~mapl_profiler.f90 sourcefile~test_advancedmeter.pf test_AdvancedMeter.pf sourcefile~test_advancedmeter.pf->sourcefile~mapl_profiler.f90 sourcefile~test_column.pf test_Column.pf sourcefile~test_column.pf->sourcefile~mapl_profiler.f90 sourcefile~test_distributedmeter.pf test_DistributedMeter.pf sourcefile~test_distributedmeter.pf->sourcefile~mapl_profiler.f90 sourcefile~test_exclusivecolumn.pf test_ExclusiveColumn.pf sourcefile~test_exclusivecolumn.pf->sourcefile~mapl_profiler.f90 sourcefile~test_meternode.pf test_MeterNode.pf sourcefile~test_meternode.pf->sourcefile~mapl_profiler.f90 sourcefile~test_meternodeiterator.pf test_MeterNodeIterator.pf sourcefile~test_meternodeiterator.pf->sourcefile~mapl_profiler.f90 sourcefile~test_namecolumn.pf test_NameColumn.pf sourcefile~test_namecolumn.pf->sourcefile~mapl_profiler.f90 sourcefile~test_percentagecolumn.pf test_PercentageColumn.pf sourcefile~test_percentagecolumn.pf->sourcefile~mapl_profiler.f90 sourcefile~test_profilereporter.pf test_ProfileReporter.pf sourcefile~test_profilereporter.pf->sourcefile~mapl_profiler.f90 sourcefile~test_timeprofiler.pf test_TimeProfiler.pf sourcefile~test_timeprofiler.pf->sourcefile~mapl_profiler.f90

Source Code

#include "unused_dummy.H"
#include "MAPL_ErrLog.h"
module MAPL_VmstatMemoryGauge
   use MAPL_ErrorHandlingMod
   use, intrinsic :: iso_fortran_env, only: REAL64, INT64
   use MAPL_AbstractGauge
   implicit none
   private

   public :: VmstatMemoryGauge


   type, extends(AbstractGauge) :: VmstatMemoryGauge
      private
      integer(kind=INT64) :: baseline = 0
   contains
      procedure :: get_measurement
   end type VmstatMemoryGauge

   interface VmstatMemoryGauge
      module procedure :: new_VmstatMemoryGauge
   end interface VmstatMemoryGauge


contains


   function new_VmstatMemoryGauge() result(gauge)
      type (VmstatMemoryGauge) :: gauge
      gauge%baseline = 0
   end function new_VmstatMemoryGauge


   function get_measurement(this) result(mem_use)
      class (VmstatMemoryGauge), intent(inout) :: this
      real(kind=REAL64) :: mem_use

      integer :: unit
      integer(kind=INT64) :: MEM_UNITS = 4096 ! page size is 4096 bytes
      character(:), allocatable :: tmp_file

      _UNUSED_DUMMY(this)
      block
        use MPI
        integer :: rank, ierror, status, rc
        call MPI_Comm_rank(MPI_COMM_WORLD, rank, ierror)
        _VERIFY(ierror)
        allocate(character(4) :: tmp_file)
        write(tmp_file,'(i4.4)')rank
        tmp_file = 'tmp_' // tmp_file // '.dat'
        if (rank == 0) then
           call execute_command_line("vm_stat | grep free | awk '{ print $3 }'> " // tmp_file)
      
           open(newunit=unit, file=tmp_file, form='formatted', access='sequential', status='old')
           read(unit,*) mem_use
           mem_use = - mem_use * MEM_UNITS ! mem free is negative memory used
           close(unit, status='delete')
        else
           mem_use = 0
        end if
      end block



   end function get_measurement


end module MAPL_VmstatMemoryGauge