Ignore:
Timestamp:
Apr 25, 2014 12:55:07 PM (10 years ago)
Author:
raasch
Message:

bugfixes:
missing variables added to ONLY lists in USE statements (advec_s_bc, advec_s_pw, advec_s_up, advec_ws, buoyancy, diffusion_e, diffusion_s, fft_xy, flow_statistics, palm, prognostic_equations)
missing module kinds added (cuda_fft_interfaces)
dpk renamed dp (fft_xy)
missing dependency for check_open added (Makefile)
variables removed from acc-present-list (diffusion_e, diffusion_w, diffusivities, production_e, wall_fluxes)
syntax errors removed from openacc-branch (flow_statistics)
USE-statement for nopointer-case added (swap_timelevel)

File:
1 edited

Legend:

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

    r1362 r1374  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! missing variables added to ONLY list
    2323!
    2424! Former revisions:
     
    389389
    390390       USE indices,                                                            &
    391            ONLY:  nxl, nxr, nyn, nys, nzb, nzb_max, nzt, wall_flags_0
     391           ONLY:  nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzb_max,    &
     392                  nzt, wall_flags_0
    392393
    393394       USE kinds
     
    22302231
    22312232       USE indices,                                                           &
    2232            ONLY:  nxl, nxr, nyn, nys, nzb, nzb_max, nzt, wall_flags_0
     2233           ONLY:  nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzb_max,   &
     2234                  nzt, wall_flags_0
    22332235           
    22342236       USE kinds
     
    27492751!
    27502752!--    Computation of fluxes and tendency terms
    2751        !$acc kernels present( ddzw, sk, tend, u, v, w, wall_flags_0, wall_flags_00 )
     2753       !$acc kernels present( ddzw, sk, tend, u, v, w, wall_flags_0 )
    27522754       DO  i = i_left, i_right
    27532755          DO  j = j_south, j_north
     
    35453547!
    35463548!--    Computation of fluxes and tendency terms
    3547        !$acc  kernels present( ddzw, tend, u, v, w, wall_flags_0, wall_flags_00 )
     3549       !$acc  kernels present( ddzw, tend, u, v, w, wall_flags_0 )
    35483550       DO i = i_left, i_right
    35493551          DO  j = j_south, j_north
     
    43494351!
    43504352!--    Computation of fluxes and tendency terms
    4351        !$acc kernels present( ddzw, tend, u, v, w, wall_flags_0, wall_flags_00 )
     4353       !$acc kernels present( ddzw, tend, u, v, w, wall_flags_0 )
    43524354       DO  i = i_left, i_right
    43534355          DO  j = j_south, j_north
Note: See TracChangeset for help on using the changeset viewer.