test_percent_inclusive Subroutine

public subroutine test_percent_inclusive()

Uses

  • proc~~test_percent_inclusive~~UsesGraph proc~test_percent_inclusive test_percent_inclusive iso_fortran_env iso_fortran_env proc~test_percent_inclusive->iso_fortran_env

Arguments

None

Calls

proc~~test_percent_inclusive~~CallsGraph proc~test_percent_inclusive test_percent_inclusive add_cycle add_cycle proc~test_percent_inclusive->add_cycle assertequal assertequal proc~test_percent_inclusive->assertequal at at proc~test_percent_inclusive->at none~add_child~3 MeterNode%add_child proc~test_percent_inclusive->none~add_child~3 none~get_child~25 MeterNode%get_child proc~test_percent_inclusive->none~get_child~25 none~get_meter~3 MeterNode%get_meter proc~test_percent_inclusive->none~get_meter~3 none~get_rows~8 PercentageColumn%get_rows proc~test_percent_inclusive->none~get_rows~8 none~find_child MeterNode%find_child none~add_child~3->none~find_child none~get_depth~2 MeterNode%get_depth none~add_child~3->none~get_depth~2 none~push_back~35 MeterNodeVector%push_back none~add_child~3->none~push_back~35 none~at~157 MeterNodeVector%at none~get_child~25->none~at~157 none~get_child~25->none~find_child none~get_rows~8->at get_rows get_rows none~get_rows~8->get_rows push_back push_back none~get_rows~8->push_back none~at_32~26 MeterNodeVector%at_32 none~at~157->none~at_32~26 none~find_child->none~at~157 none~capacity~205 MeterNodeVector%capacity none~push_back~35->none~capacity~205 none~resize~70 MeterNodeVector%resize none~push_back~35->none~resize~70 none~at_size_kind~35 MeterNodeVector%at_size_kind none~at_32~26->none~at_size_kind~35 none~resize_32~26 MeterNodeVector%resize_32 none~resize~70->none~resize_32~26

Source Code

   subroutine test_percent_inclusive()
      use, intrinsic :: iso_fortran_env, only: REAL64
      type (PercentageColumn) :: c
      type (MeterNode), target :: node
      class (AbstractMeterNode), pointer :: child
      class (AbstractMeter), pointer :: t
      type(UnlimitedVector), target :: v
      integer :: i
      integer :: expected(2)
      class(*), pointer :: q

      node = MeterNode('foo', AdvancedMeter(MpiTimerGauge()))
      t => node%get_meter()
      call t%add_cycle(10.0_REAL64)

      call node%add_child('a', AdvancedMeter(MpiTimerGauge()))
      child => node%get_child('a')
      t => child%get_meter()
      call t%add_cycle(5.0_REAL64)

      c = PercentageColumn(InclusiveColumn(),'MAX')

      v = c%get_rows(node)
      expected = [100.,50.]
      do i = 1, 2
         q => v%at(i)
         select type (q)
         type is (real(kind=REAL64))
            @assertEqual(expected(i), q)
         end select
      end do

   end subroutine test_percent_inclusive