Closed
Description
Description
PR #418 added regression test fv3_ccpp_gfs_v16_RRTMGP_2thrd
, but they way the test was written doesn't work on wcoss_cray.
Solution
The following change from @DusanJovic-NOAA will allow us to run test fv3_ccpp_gfs_v16_RRTMGP_2thrd
on wcoss_cray (re-enable in rt.conf
):
diff --git a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN
index 1eb9124..0d6df12 100644
--- a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN
+++ b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN
@@ -41,7 +41,7 @@ deflate_level=1
/
&fv_core_nml
- layout = 3,8
+ layout = @[INPES],@[JNPES]
io_layout = 1,1
npx = 97
npy = 97
diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd
index d009b4d..ec4d6d1 100644
--- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd
+++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd
@@ -74,7 +74,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \
export_fv3
export THRD=2
+export TASKS=$TASKS_thrd
export TPN=$TPN_thrd
+export INPES=$INPES_thrd
+export JNPES=$JNPES_thrd
+export WRTTASK_PER_GROUP=12
+
DT_ATMOS="1200"
export DO_RRTMGP=.T.
Alternatives
Don't run the test on wcoss_cray.