Skip to content

Commit

Permalink
- bis
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr-deltares committed Jan 25, 2025
1 parent 8e67dec commit f1109db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Utilities/Performance/Profiler.f90
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ module ProfilerModule
integer(I4B) :: tmr_prep_tstp !< handle to timed section "Prepare time step"
integer(I4B) :: tmr_do_tstp !< handle to timed section "Do time step"
integer(I4B) :: tmr_final_tstp !< handle to timed section "Finalize time step"
integer(I4B) :: tmr_output = -1 !< handle to timed section "Write output"
integer(I4B) :: tmr_nc_export = -1 !< handle to timed section "NetCDF export"
integer(I4B) :: tmr_output !< handle to timed section "Write output"
integer(I4B) :: tmr_nc_export !< handle to timed section "NetCDF export"
! private
integer(I4B), private :: iout !< output unit number, typically simulation listing file
integer(I4B), private :: pr_option !< 0 = NONE, 1 = SUMMARY, 2 = DETAIL
Expand Down Expand Up @@ -98,6 +98,8 @@ subroutine initialize(this)
this%tmr_prep_tstp = -1
this%tmr_do_tstp = -1
this%tmr_final_tstp = -1
this%tmr_output = -1
this%tmr_nc_export = -1

call this%callstack%init()

Expand Down

0 comments on commit f1109db

Please sign in to comment.