Ignore:
Timestamp:
Sep 30, 2020 10:27:40 PM (4 years ago)
Author:
pavelkrc
Message:

Fixes and optimizations of OpenMP parallelization, formatting of OpenMP directives

File:
1 edited

Legend:

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

    r4671 r4717  
    2525! -----------------
    2626! $Id$
     27! Fixes and optimizations of OpenMP parallelization, formatting of OpenMP
     28! directives (J. Resler)
     29!
     30! 4671 2020-09-09 20:27:58Z pavelkrc
    2731! Implementation of downward facing USM and LSM surfaces
    2832!
    2933! 4649 2020-08-25 12:11:17Z raasch
    3034! File re-formatted to follow the PALM coding standard
    31 !
    3235!
    3336! 4370 2020-01-10 14:00:44Z raasch
     
    397400    CALL cpu_log( log_point(32), 'all progn.equations', 'start' )
    398401
    399     !$OMP PARALLEL PRIVATE (i,j)
    400     !$OMP DO
     402    !$OMP PARALLEL DO PRIVATE (i,j) SCHEDULE( STATIC )
    401403    DO  i = nxl, nxr
    402404       DO  j = nys, nyn
     
    409411!-- Module Inferface for exchange horiz after non_advective_processes but before advection.
    410412!-- Therefore, non_advective_processes must not run for ghost points.
    411     !$OMP END PARALLEL
    412413    CALL module_interface_exchange_horiz()
    413414!
Note: See TracChangeset for help on using the changeset viewer.