test_accumulate_sub Subroutine

public subroutine test_accumulate_sub()

Arguments

None

Calls

proc~~test_accumulate_sub~~CallsGraph proc~test_accumulate_sub test_accumulate_sub assertequal assertequal proc~test_accumulate_sub->assertequal asserttrue asserttrue proc~test_accumulate_sub->asserttrue has_child has_child proc~test_accumulate_sub->has_child none~accumulate~2 BaseProfiler%accumulate proc~test_accumulate_sub->none~accumulate~2 none~finalize~6 BaseProfiler%finalize proc~test_accumulate_sub->none~finalize~6 none~get_num_meters BaseProfiler%get_num_meters proc~test_accumulate_sub->none~get_num_meters none~get_root_node BaseProfiler%get_root_node proc~test_accumulate_sub->none~get_root_node none~start~82 TimeProfiler%start proc~test_accumulate_sub->none~start~82 none~accumulate~2->none~get_root_node accumulate accumulate none~accumulate~2->accumulate none~back~32 MeterNodeStack%back none~accumulate~2->none~back~32 none~finalize~8 AbstractMeter%finalize none~finalize~6->none~finalize~8 none~get_meter MeterNode%get_meter none~finalize~6->none~get_meter none~pop_back~32 MeterNodeStack%pop_back none~finalize~6->none~pop_back~32 none~get_num_nodes MeterNode%get_num_nodes none~get_num_meters->none~get_num_nodes none~start_self BaseProfiler%start_self none~start~82->none~start_self mpi_op_free mpi_op_free none~finalize~8->mpi_op_free mpi_type_free mpi_type_free none~finalize~8->mpi_type_free get_num_nodes get_num_nodes none~get_num_nodes->get_num_nodes none~begin~26 MeterNodeVector%begin none~get_num_nodes->none~begin~26 none~get~58 MeterNodeVectorIterator%get none~get_num_nodes->none~get~58 none~next~27 MeterNodeVectorIterator%next none~get_num_nodes->none~next~27 interface~mapl_assert MAPL_Assert none~start_self->interface~mapl_assert none~get_name~2 MeterNode%get_name none~start_self->none~get_name~2 none~start~46 BaseProfiler%start none~start_self->none~start~46 proc~mapl_return MAPL_Return none~start_self->proc~mapl_return none~start~46->none~start_self at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception

Source Code

   subroutine test_accumulate_sub()
      type(TimeProfiler), target :: main, lap
      class(AbstractMeterNode), pointer :: main_node

      main = TimeProfiler('main')
      call main%start()
      lap = TimeProfiler('lap')
      call lap%start()
      call lap%finalize()
      call main%accumulate(lap)

      ! should now have 'lap' as a subtimer of 'main'
      @assertEqual(2, main%get_num_meters())

      main_node => main%get_root_node()
      @assertTrue(main_node%has_child('lap'))
      
   end subroutine test_accumulate_sub