Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (8 weeks ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3dmem/times.F90

    r5101 r5103  
    22  integer,private,save :: Last_Count=0
    33  real, private,save :: Last_cpuCount=0
    4   logical, private,save :: AllTimer_IsActive=.false.
     4  logical, private,save :: AllTimer_IsActive=.FALSE.
    55 
    66  integer, parameter :: nb_timer = 4
     
    2424  contains
    2525 
    26   subroutine init_timer
     26  SUBROUTINE init_timer
    2727    USE parallel_lmdz
    2828    implicit none
     
    4646    timer_delta(:,:,:)=0
    4747    timer_state(:)=stopped     
    48   end subroutine init_timer
    49  
    50   subroutine start_timer(no_timer)
     48  END SUBROUTINE init_timer
     49 
     50  SUBROUTINE start_timer(no_timer)
    5151    implicit none
    5252    integer :: no_timer
     
    6565    endif
    6666   
    67   end subroutine start_timer
    68  
    69   subroutine suspend_timer(no_timer)
     67  END SUBROUTINE start_timer
     68 
     69  SUBROUTINE suspend_timer(no_timer)
    7070    implicit none
    7171    integer :: no_timer
     
    8282      timer_running(no_timer)=timer_running(no_timer)+last_time(no_timer)
    8383    endif
    84   end subroutine suspend_timer
    85  
    86   subroutine resume_timer(no_timer)
     84  END SUBROUTINE suspend_timer
     85 
     86  SUBROUTINE resume_timer(no_timer)
    8787    implicit none
    8888    integer :: no_timer
     
    9898    endif
    9999   
    100   end subroutine resume_timer
    101 
    102   subroutine stop_timer(no_timer)
     100  END SUBROUTINE resume_timer
     101
     102  SUBROUTINE stop_timer(no_timer)
    103103    USE parallel_lmdz
    104104    implicit none
     
    133133    endif
    134134   
    135   end subroutine stop_timer
     135  END SUBROUTINE stop_timer
    136136   
    137   subroutine allgather_timer
     137  SUBROUTINE allgather_timer
    138138    USE parallel_lmdz
    139139    USE lmdz_mpi
     
    163163    ENDIF ! using_mpi
    164164   
    165   end subroutine allgather_timer
    166  
    167   subroutine allgather_timer_average
     165  END SUBROUTINE allgather_timer
     166 
     167  SUBROUTINE allgather_timer_average
    168168    USE parallel_lmdz
    169169    USE lmdz_mpi
     
    195195     
    196196    ENDIF  ! using_mpi
    197   end subroutine allgather_timer_average
    198  
    199   subroutine InitTime
     197  END SUBROUTINE allgather_timer_average
     198 
     199  SUBROUTINE InitTime
    200200  implicit none
    201201    integer :: count,count_rate,count_max
     
    207207      Last_Count=count
    208208    endif
    209   end subroutine InitTime
     209  END SUBROUTINE InitTime
    210210 
    211211  function DiffTime()
Note: See TracChangeset for help on using the changeset viewer.