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/diffusion_e.f90

    r1341 r1374  
    2020! Current revisions:
    2121! -----------------
    22 !
     22! missing variables added to ONLY list
     23! rif removed from acc-present-list
    2324!
    2425! Former revisions:
     
    113114           
    114115       USE indices,                                                            &
    115            ONLY:  nxl, nxr, nyn, nys, nzb, nzb_s_inner, nzt
     116           ONLY:  nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzb_s_inner,&
     117                  nzt
    116118           
    117119       USE kinds
     
    317319           
    318320       USE indices,                                                            &
    319            ONLY:  i_left, i_right, j_north, j_south, nzb_s_inner, nzt
     321           ONLY:  i_left, i_right, j_north, j_south, nxlg, nxrg, nyng, nysg,   &
     322                  nzb, nzb_s_inner, nzt
    320323           
    321324       USE kinds
     
    349352
    350353          !$acc kernels present( ddzu, ddzw, dd2zu, diss, e, km, l_grid ) &
    351           !$acc         present( nzb_s_inner, rif, tend, var, zu, zw )
     354          !$acc         present( nzb_s_inner, tend, var, zu, zw )
    352355          DO  i = i_left, i_right
    353356             DO  j = j_south, j_north
     
    416419
    417420          !$acc kernels present( ddzu, ddzw, dd2zu, diss, e, km, l_grid ) &
    418           !$acc         present( nzb_s_inner, rif, tend, var, zu, zw )
     421          !$acc         present( nzb_s_inner, tend, var, zu, zw )
    419422          DO  i = i_left, i_right
    420423             DO  j = j_south, j_north
     
    513516           
    514517       USE indices,                                                            &
    515            ONLY:  nzb, nzb_s_inner, nzt
     518           ONLY:  nxlg, nxrg, nyng, nysg, nzb, nzb_s_inner, nzt
    516519           
    517520       USE kinds
Note: See TracChangeset for help on using the changeset viewer.