Skip to content

Commit da2c458

Browse files
author
Bill Ladwig
committed
Merge branch 'release/1.1.2'
2 parents 32a9a52 + cbe0805 commit da2c458

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

doc/source/new.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ What's New
44
Releases
55
-------------
66

7+
v1.1.2
8+
^^^^^^^^^^^^^^
9+
10+
- Release 1.1.2
11+
- Fix OpenMP directive issue with cloud top temperature.
12+
13+
714
v1.1.1
815
^^^^^^^^^^^^^^
916

fortran/wrf_fctt.f90

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ SUBROUTINE wrfcttcalc(prs, tk, qci, qcw, qvp, ght, ter, ctt, haveqci, nz, ns, ew
2626
!$OMP PARALLEL
2727

2828
! Calculate the surface pressure
29-
!$OMP DO COLLAPSE(2) SCHEDULE(runtime)
29+
!$OMP DO COLLAPSE(2) PRIVATE(i, j, ratmix, arg1, arg2, vt, agl_hgt) &
30+
!$OMP SCHEDULE(runtime)
3031
DO j=1,ns
3132
DO i=1,ew
3233
ratmix = .001D0*qvp(i,j,1)
@@ -40,7 +41,7 @@ SUBROUTINE wrfcttcalc(prs, tk, qci, qcw, qvp, ght, ter, ctt, haveqci, nz, ns, ew
4041
END DO
4142
!$OMP END DO
4243

43-
!$OMP DO COLLAPSE(3) SCHEDULE(runtime)
44+
!$OMP DO COLLAPSE(3) PRIVATE(i, j, k, ripk) SCHEDULE(runtime)
4445
DO k=1,nz-1
4546
DO j=1,ns
4647
DO i=1,ew

src/wrf/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.1.1"
1+
__version__ = "1.1.2"
22

0 commit comments

Comments
 (0)