Ignore:
Timestamp:
Jun 11, 2020, 11:01:18 AM (5 years ago)
Author:
adurocher
Message:

Fixed compilation errors

  • Fixed some OpenMP syntax errors for scorep
  • Fix issues with ifort -check all -warn all -O0
Location:
LMDZ6/branches/Optimisation_LMDZ/libf/phylmd/cosp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Optimisation_LMDZ/libf/phylmd/cosp/dsd.F90

    r2428 r3703  
    1   subroutine dsd(Q,Re,Np,D,N,nsizes,dtype,rho_a,tk, &
     1  subroutine dsd(Q,Re_,Np,D,N,nsizes,dtype,rho_a,tk, &
    22             dmin,dmax,apm,bpm,rho_c,p1,p2,p3)
    33  use array_lib
     
    5757  integer, intent(in) :: nsizes
    5858  integer, intent(in) :: dtype
    59   real*8, intent(in)  :: Q,Re,Np,D(nsizes)
     59  real*8, intent(in)  :: Q,Re_,Np,D(nsizes)
    6060  real*8, intent(in)  :: rho_a,tk,dmin,dmax,rho_c,p1,p2,p3
    6161   
     
    7878  real*8 :: tmp1, tmp2
    7979  real*8 :: pi,rc,tc
     80  real*8 :: Re
    8081
    8182  integer k,lidx,uidx
     83
     84  Re = Re_
    8285
    8386  tc = tk - 273.15
  • LMDZ6/branches/Optimisation_LMDZ/libf/phylmd/cosp/radar_simulator.F90

    r2428 r3703  
    9696  real*8, dimension(hp%nhclass,nprof,ngate), intent(in) :: hm_matrix
    9797  real*8, dimension(hp%nhclass,nprof,ngate), intent(inout) :: re_matrix
    98   real*8, dimension(hp%nhclass,nprof,ngate), intent(in)    :: Np_matrix
     98  real*8, dimension(hp%nhclass,nprof,ngate), intent(inout)    :: Np_matrix
    9999
    100100! ----- OUTPUTS -----
Note: See TracChangeset for help on using the changeset viewer.