Ignore:
Timestamp:
May 10, 2013 2:33:08 PM (11 years ago)
Author:
raasch
Message:

code adjustment of accelerator version for PGI 12.3 / CUDA 5.0

File:
1 edited

Legend:

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

    r1116 r1153  
    2323! Current revisions:
    2424! ------------------
    25 !
     25! diss array is allocated with dummy elements even if it is not needed
     26! (required by PGI 12.3 / CUDA 5.0)
    2627!
    2728! Former revisions:
     
    501502!-- particle velocities
    502503    IF ( use_sgs_for_particles  .OR.  wang_kernel  .OR.  turbulence )  THEN
    503        ALLOCATE ( diss(nzb:nzt+1,nysg:nyng,nxlg:nxrg) )
     504       ALLOCATE( diss(nzb:nzt+1,nysg:nyng,nxlg:nxrg) )
     505    ELSE
     506       ALLOCATE( diss(2,2,2) )
    504507    ENDIF
    505508
Note: See TracChangeset for help on using the changeset viewer.