Changes between Version 7 and Version 8 of OfflineAddingMemoryandTimingInformation
- Timestamp:
- May 18, 2025, 7:53:50 PM (5 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OfflineAddingMemoryandTimingInformation
v7 v8 24 24 == Displaying memory information == 25 25 26 Information about the memory required by PDAF through allocated arrays is provided by the call26 Information about the memory required by PDAF through allocated arrays is provided by the line 27 27 {{{ 28 if(mype_world==0) CALL PDAF_print_info(10)28 IF (mype_world==0) CALL PDAF_print_info(10) 29 29 }}} 30 30 The function displays the following information … … 46 46 This 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 47 47 {{{ 48 CALL PDAF_print_info(11)48 IF (mype_world==0) CALL PDAF_print_info(11) 49 49 }}} 50 50 to the routine `finalize_pdaf`. … … 54 54 Timing information is displayed by the call 55 55 {{{ 56 CALL PDAF_print_info(3)56 IF (mype_world==0) CALL PDAF_print_info(3) 57 57 }}} 58 58 to the code. This will provide an output like