Skip to content

Commit 169448a

Browse files
committed
Merge branch 'jonbob/mpaso/fix-subglacial-omp' (PR #6656)
Add missing omp private variables for data subglacial runoff Adds some variables were introduced in PR #6508 and not icluded in the appropriate omp private statement. These variables are only used for data subglacial runoff, so this does not impact current tests. Also changes the current GMPAS-JRA1p5-DIB-PISMF-DSGR test to PET to watch for threading issues. [BFB]
2 parents 721f8ca + 16e8080 commit 169448a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cime_config/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
"ERS_P480_Ld5.TL319_IcoswISC30E3r5.GMPAS-JRA1p5-DIB-PISMF.mpaso-jra_1958",
278278
"PEM_P480_Ld5.TL319_IcoswISC30E3r5.GMPAS-JRA1p5-DIB-PISMF.mpaso-jra_1958",
279279
"SMS_P480_Ld5.TL319_IcoswISC30E3r5.GMPAS-JRA1p5-DIB-PISMF-TMIX.mpaso-jra_1958",
280-
"SMS_P480_Ld5.TL319_IcoswISC30E3r5.GMPAS-JRA1p5-DIB-PISMF-DSGR.mpaso-jra_1958",
280+
"PET_P480_Ld2.TL319_IcoswISC30E3r5.GMPAS-JRA1p5-DIB-PISMF-DSGR.mpaso-jra_1958",
281281
)
282282
},
283283

components/mpas-ocean/src/shared/mpas_ocn_diagnostics.F

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3540,6 +3540,7 @@ subroutine ocn_compute_KPP_input_fields(statePool, forcingPool, &
35403540
!$omp parallel
35413541
!$omp do schedule(runtime) &
35423542
!$omp private(kmin, fracAbsorbed, fracAbsorbedRunoff, fracAbsorbedSubglacialRunoff, &
3543+
!$omp zTop, k, zBot, transmissionCoeffTop, transmissionCoeffBot, &
35433544
!$omp sumSurfaceStressSquared, i, iEdge)
35443545
do iCell = 1, nCells
35453546

0 commit comments

Comments
 (0)