Ignore:
Timestamp:
Jan 10, 2020 2:00:44 PM (5 years ago)
Author:
raasch
Message:

bugfixes for previous commit: unused variables removed, Temperton-fft usage on GPU, openacc porting of vector version of Obukhov length calculation, collective read switched off on NEC to avoid hanging; some vector directives added in prognostic equations to force vectorization on Intel19 compiler, configuration files for NEC Aurora added

File:
1 edited

Legend:

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

    r4362 r4370  
    2525! -----------------
    2626! $Id$
     27! collective read switched off on NEC Aurora to avoid hang situations
     28!
     29! 4362 2020-01-07 17:15:02Z suehring
    2730! Input of plant canopy variables from static driver moved to plant-canopy
    2831! model
     
    41354138          collective_read = .FALSE.
    41364139       ELSE
     4140#if defined( __nec )
     4141          collective_read = .FALSE.   ! collective read causes hang situations on NEC Aurora
     4142#else
    41374143          collective_read = .TRUE.
     4144#endif
    41384145       ENDIF
    41394146#else
Note: See TracChangeset for help on using the changeset viewer.