Changes between Version 7 and Version 8 of OfflineAddingMemoryandTimingInformation


Ignore:
Timestamp:
May 18, 2025, 7:53:50 PM (5 hours ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OfflineAddingMemoryandTimingInformation

    v7 v8  
    2424== Displaying memory information ==
    2525
    26 Information about the memory required by PDAF through allocated arrays is provided by the call
     26Information about the memory required by PDAF through allocated arrays is provided by the line
    2727{{{
    28   if (mype_world==0) CALL PDAF_print_info(10)
     28  IF (mype_world==0) CALL PDAF_print_info(10)
    2929}}}
    3030The function displays the following information
     
    4646This memory information shows only the memory required by a single filter processes. In the example codes, this is the process with `mype_world=0`. One can also display the overall allocated memory by adding
    4747{{{
    48   CALL PDAF_print_info(11)
     48  IF (mype_world==0) CALL PDAF_print_info(11)
    4949}}}
    5050to the routine `finalize_pdaf`.
     
    5454Timing information is displayed by the call
    5555{{{
    56   CALL PDAF_print_info(3)
     56  IF (mype_world==0) CALL PDAF_print_info(3)
    5757}}}
    5858to the code. This will provide an output like