Changeset 2623


Ignore:
Timestamp:
Feb 17, 2022, 2:29:31 PM (3 years ago)
Author:
emillour
Message:

Common dynamics:
OpenMP fix for ifort as this compiler refuses to have an OpenMP critical region which has the same symbol (name) as a known routine.
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/dyn3dpar/planetary_operations_p.F90

    r2126 r2623  
    4242
    4343  ! broadcast the result to all procs
    44 !$OMP CRITICAL (MPI_BCAST)
     44!$OMP CRITICAL (MPI)
    4545#ifdef CPP_MPI
    4646  call MPI_BCAST(value,1,MPI_REAL8,0,COMM_LMDZ,ierr)
    4747#endif
    48 !$OMP END CRITICAL (MPI_BCAST)
     48!$OMP END CRITICAL (MPI)
    4949 
    5050  end subroutine planetary_atm_mass_from_ps_p
     
    9898 
    9999  ! broadcast the result to all procs
    100 !$OMP CRITICAL (MPI_BCAST)
     100!$OMP CRITICAL (MPI)
    101101#ifdef CPP_MPI
    102102  call MPI_BCAST(amount,1,MPI_REAL8,0,COMM_LMDZ,ierr)
    103103#endif
    104 !$OMP END CRITICAL (MPI_BCAST)
     104!$OMP END CRITICAL (MPI)
    105105
    106106  end subroutine planetary_tracer_amount_from_mass_p
Note: See TracChangeset for help on using the changeset viewer.