Ignore:
Timestamp:
Feb 6, 2019 1:10:18 PM (5 years ago)
Author:
kanani
Message:

Correct and clean-up cpu_logs, some overlapping counts (chemistry_model_mod, disturb_heatflux, large_scale_forcing_nudging_mod, ocean_mod, palm, prognostic_equations, synthetic_turbulence_generator_mod, time_integration, time_integration_spinup, turbulence_closure_mod)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/ocean_mod.f90

    r3684 r3719  
    2525! -----------------
    2626! $Id$
     27! Changed log_point to log_point_s, otherwise this overlaps with
     28! 'all progn.equations' cpu measurement.
     29!
     30! 3684 2019-01-20 20:20:58Z knoop
    2731! nopointer option removed
    2832!
     
    14921496
    14931497    USE cpulog,                                                                &
    1494         ONLY:  cpu_log, log_point
     1498        ONLY:  cpu_log, log_point_s
    14951499
    14961500    USE diffusion_s_mod,                                                       &
     
    15291533    IF ( salinity )  THEN
    15301534
    1531        CALL cpu_log( log_point(37), 'sa-equation', 'start' )
     1535       CALL cpu_log( log_point_s(20), 'sa-equation', 'start' )
    15321536
    15331537!
     
    16161620       ENDIF
    16171621
    1618        CALL cpu_log( log_point(37), 'sa-equation', 'stop' )
     1622       CALL cpu_log( log_point_s(20), 'sa-equation', 'stop' )
    16191623
    16201624    ENDIF
     
    16221626!
    16231627!-- Calculate density by the equation of state for seawater
    1624     CALL cpu_log( log_point(38), 'eqns-seawater', 'start' )
     1628    CALL cpu_log( log_point_s(21), 'eqns-seawater', 'start' )
    16251629    CALL eqn_state_seawater
    1626     CALL cpu_log( log_point(38), 'eqns-seawater', 'stop' )
     1630    CALL cpu_log( log_point_s(21), 'eqns-seawater', 'stop' )
    16271631
    16281632 END SUBROUTINE ocean_prognostic_equations
Note: See TracChangeset for help on using the changeset viewer.