From 94442eddc773f0e04ca078d44ea3ca88353901ee Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Mon, 1 May 2023 00:52:17 -0500 Subject: [PATCH] Change write tasks back to per thread After additional investigation, it was found that `WRTTASK_PER_GROUP` really has changed to a per-thread value. Refs: #1446, #1499 --- parm/config/config.resources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parm/config/config.resources b/parm/config/config.resources index cf010f5831..1e5b747982 100644 --- a/parm/config/config.resources +++ b/parm/config/config.resources @@ -530,7 +530,7 @@ elif [[ "${step}" = "fcst" || "${step}" = "efcs" ]]; then # PETS for quilting if [[ "${QUILTING:-}" = ".true." ]]; then (( QUILTPETS = ntasks_quilt * nthreads_fv3 )) - (( WRTTASK_PER_GROUP = WRTTASK_PER_GROUP_PER_THREAD * nthreads_fv3 )) + (( WRTTASK_PER_GROUP = WRTTASK_PER_GROUP_PER_THREAD )) export WRTTASK_PER_GROUP else QUILTPETS=0