Ignore:
Timestamp:
Jul 23, 2024, 8:22:55 AM (4 months ago)
Author:
abarral
Message:

Handle DEBUG_IO in lmdz_cppkeys_wrapper.F90
Transform some files .F -> .[fF]90
[ne compile pas à cause de writefield_u non défini - en attente de réponse Laurent]

File:
1 edited

Legend:

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

    r5093 r5101  
    6161     
    6262      timer_running(no_timer)=0
    63       call cpu_time(last_time(no_timer))
     63      CALL cpu_time(last_time(no_timer))
    6464   
    6565    endif
     
    7979   
    8080      timer_running(no_timer)=timer_running(no_timer)-last_time(no_timer)
    81       call cpu_time(last_time(no_timer))
     81      CALL cpu_time(last_time(no_timer))
    8282      timer_running(no_timer)=timer_running(no_timer)+last_time(no_timer)
    8383    endif
     
    9595      endif
    9696     
    97       call cpu_time(last_time(no_timer))
     97      CALL cpu_time(last_time(no_timer))
    9898    endif
    9999   
     
    116116   
    117117      timer_running(no_timer)=timer_running(no_timer)-last_time(no_timer)
    118       call cpu_time(last_time(no_timer))
     118      CALL cpu_time(last_time(no_timer))
    119119      timer_running(no_timer)=timer_running(no_timer)+last_time(no_timer)
    120120   
     
    154154   
    155155      tmp_table(:,:)=timer_table(:,:,mpi_rank)
    156       call mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_table(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
     156      CALL mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_table(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
    157157      tmp_table(:,:)=timer_table_sqr(:,:,mpi_rank)
    158       call mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_table_sqr(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
     158      CALL mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_table_sqr(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
    159159      deallocate(tmp_table)
    160160   
     
    185185
    186186      tmp_table(:,:)=timer_average(:,:,mpi_rank)
    187       call mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_average(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
     187      CALL mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_average(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
    188188      tmp_table(:,:)=timer_delta(:,:,mpi_rank)
    189       call mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_delta(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
     189      CALL mpi_allgather(tmp_table(1,1),data_size,MPI_REAL_LMDZ,timer_delta(1,1,0),data_size,MPI_REAL_LMDZ,COMM_LMDZ,ierr)
    190190      tmp_iter(:,:)=timer_iteration(:,:,mpi_rank)
    191       call mpi_allgather(tmp_iter(1,1),data_size,MPI_INTEGER,timer_iteration(1,1,0),data_size,MPI_INTEGER,COMM_LMDZ,ierr)
     191      CALL mpi_allgather(tmp_iter(1,1),data_size,MPI_INTEGER,timer_iteration(1,1,0),data_size,MPI_INTEGER,COMM_LMDZ,ierr)
    192192      deallocate(tmp_table)
    193193   
     
    203203    AllTimer_IsActive=.TRUE.
    204204    if (AllTimer_IsActive) then
    205       call system_clock(count,count_rate,count_max)
    206       call cpu_time(Last_cpuCount)
     205      CALL system_clock(count,count_rate,count_max)
     206      CALL cpu_time(Last_cpuCount)
    207207      Last_Count=count
    208208    endif
     
    214214    integer :: count,count_rate,count_max
    215215 
    216     call system_clock(count,count_rate,count_max)
     216    CALL system_clock(count,count_rate,count_max)
    217217    if (Count>=Last_Count) then
    218218      DiffTime=(1.*(Count-last_Count))/count_rate
     
    228228    real :: Count
    229229   
    230     call cpu_time(Count)
     230    CALL cpu_time(Count)
    231231    DiffCpuTime=Count-Last_cpuCount
    232232    Last_cpuCount=Count
Note: See TracChangeset for help on using the changeset viewer.