Skip to content
Snippets Groups Projects
Commit 9941ea84 authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 05/03/2021: budgets: measure cpu_time for budgets

parent daf162e4
No related branches found
No related tags found
No related merge requests found
...@@ -6,16 +6,19 @@ ...@@ -6,16 +6,19 @@
! Modifications ! Modifications
! P. Wautelet 28/01/2020: new subroutines: Budget_store_init, Budget_store_end and Budget_source_id_find in new module mode_budget ! P. Wautelet 28/01/2020: new subroutines: Budget_store_init, Budget_store_end and Budget_source_id_find in new module mode_budget
! P. Wautelet 17/08/2020: treat LES budgets correctly ! P. Wautelet 17/08/2020: treat LES budgets correctly
! P. Wautelet 05/03/2021: measure cpu_time for budgets
!----------------------------------------------------------------- !-----------------------------------------------------------------
!################# !#################
module mode_budget module mode_budget
!################# !#################
use modd_budget, only: cbutype, nbutime, tbudgetdata use modd_budget, only: cbutype, nbutime, tbudgetdata, xtime_bu, xtime_bu_process
use modd_les_budget, only: xtime_les_bu, xtime_les_bu_process
use modi_cart_compress, only: Cart_compress use modi_cart_compress, only: Cart_compress
use modi_mask_compress, only: Mask_compress use modi_mask_compress, only: Mask_compress
use modi_second_mnh, only: Second_mnh
use mode_msg use mode_msg
...@@ -27,6 +30,7 @@ public :: Budget_store_init ...@@ -27,6 +30,7 @@ public :: Budget_store_init
public :: Budget_store_end public :: Budget_store_end
public :: Budget_store_add public :: Budget_store_add
real :: ztime1, ztime2
contains contains
...@@ -42,6 +46,8 @@ subroutine Budget_store_init( tpbudget, hsource, pvars ) ...@@ -42,6 +46,8 @@ subroutine Budget_store_init( tpbudget, hsource, pvars )
call Print_msg( NVERB_DEBUG, 'BUD', 'Budget_store_init', trim( tpbudget%cname )//':'//trim( hsource ) ) call Print_msg( NVERB_DEBUG, 'BUD', 'Budget_store_init', trim( tpbudget%cname )//':'//trim( hsource ) )
if ( lles_call ) then if ( lles_call ) then
call Second_mnh( ztime1 )
if ( allocated( tpbudget%xtmplesstore ) ) then if ( allocated( tpbudget%xtmplesstore ) ) then
call Print_msg( NVERB_ERROR, 'BUD', 'Budget_store_init', 'xtmplesstore already allocated' ) call Print_msg( NVERB_ERROR, 'BUD', 'Budget_store_init', 'xtmplesstore already allocated' )
else else
...@@ -50,11 +56,17 @@ subroutine Budget_store_init( tpbudget, hsource, pvars ) ...@@ -50,11 +56,17 @@ subroutine Budget_store_init( tpbudget, hsource, pvars )
tpbudget%xtmplesstore(:, :, :) = pvars(:, :, :) tpbudget%xtmplesstore(:, :, :) = pvars(:, :, :)
tpbudget%clessource = hsource tpbudget%clessource = hsource
call Second_mnh( ztime2 )
xtime_les_bu = xtime_les_bu + ztime2 - ztime1
xtime_les_bu_process = xtime_les_bu_process + ztime2 - ztime1
end if end if
! Nothing else to do if budgets are not enabled ! Nothing else to do if budgets are not enabled
if ( .not. tpbudget%lenabled ) return if ( .not. tpbudget%lenabled ) return
call Second_mnh( ztime1 )
call Budget_source_id_find( tpbudget, hsource, iid ) call Budget_source_id_find( tpbudget, hsource, iid )
if ( tpbudget%ntmpstoresource /= 0 ) then if ( tpbudget%ntmpstoresource /= 0 ) then
...@@ -91,7 +103,11 @@ subroutine Budget_store_init( tpbudget, hsource, pvars ) ...@@ -91,7 +103,11 @@ subroutine Budget_store_init( tpbudget, hsource, pvars )
end if end if
end if end if
end subroutine Budget_store_init call Second_mnh( ztime2 )
xtime_bu = xtime_bu + ztime2 - ztime1
xtime_bu_process = xtime_bu_process + ztime2 - ztime1
end subroutine Budget_store_init
subroutine Budget_store_end( tpbudget, hsource, pvars ) subroutine Budget_store_end( tpbudget, hsource, pvars )
...@@ -133,6 +149,8 @@ subroutine Budget_store_end( tpbudget, hsource, pvars ) ...@@ -133,6 +149,8 @@ subroutine Budget_store_end( tpbudget, hsource, pvars )
! Nothing to do if budgets are not enabled ! Nothing to do if budgets are not enabled
if ( .not. tpbudget%lenabled ) return if ( .not. tpbudget%lenabled ) return
call Second_mnh( ztime1 )
call Budget_source_id_find( tpbudget, hsource, iid ) call Budget_source_id_find( tpbudget, hsource, iid )
if ( tpbudget%tsources(iid)%lenabled ) then if ( tpbudget%tsources(iid)%lenabled ) then
...@@ -196,6 +214,10 @@ subroutine Budget_store_end( tpbudget, hsource, pvars ) ...@@ -196,6 +214,10 @@ subroutine Budget_store_end( tpbudget, hsource, pvars )
tpbudget%ntmpstoresource = 0 tpbudget%ntmpstoresource = 0
end if end if
call Second_mnh( ztime2 )
xtime_bu = xtime_bu + ztime2 - ztime1
xtime_bu_process = xtime_bu_process + ztime2 - ztime1
end subroutine Budget_store_end end subroutine Budget_store_end
...@@ -221,6 +243,8 @@ subroutine Budget_store_add( tpbudget, hsource, pvars ) ...@@ -221,6 +243,8 @@ subroutine Budget_store_add( tpbudget, hsource, pvars )
! Nothing to do if budgets are not enabled ! Nothing to do if budgets are not enabled
if ( .not. tpbudget%lenabled ) return if ( .not. tpbudget%lenabled ) return
call Second_mnh( ztime1 )
call Budget_source_id_find( tpbudget, hsource, iid ) call Budget_source_id_find( tpbudget, hsource, iid )
if ( tpbudget%tsources(iid)%lenabled ) then if ( tpbudget%tsources(iid)%lenabled ) then
...@@ -240,6 +264,10 @@ subroutine Budget_store_add( tpbudget, hsource, pvars ) ...@@ -240,6 +264,10 @@ subroutine Budget_store_add( tpbudget, hsource, pvars )
end if end if
end if end if
call Second_mnh( ztime2 )
xtime_bu = xtime_bu + ztime2 - ztime1
xtime_bu_process = xtime_bu_process + ztime2 - ztime1
end subroutine Budget_store_add end subroutine Budget_store_add
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment