From b8f7fd84f92b05475c0388cab6b0586f5ff2de4b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 26 Feb 2021 20:31:39 +0000 Subject: [PATCH 01/15] Add capability for GNU and Add support for Cheyenne --- tests/auto/rt_auto.py | 116 +++++++++++++++++++++++++++--------------- tests/auto/rt_auto.sh | 32 +++++++----- 2 files changed, 94 insertions(+), 54 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index a5d23ff33e..464cf15d56 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -42,8 +42,8 @@ def parse_args_in(): parser = argparse.ArgumentParser() # Setup Input Arguments - choices = ['hera.intel', 'orion.intel', 'gaea.intel', 'jet.intel', 'wcoss_dell_p3'] - parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, type=str) + choices = ['hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] + parser.add_argument('-m', '--machine', help='Machine name', required=True, choices=choices, type=str) parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) # Get Arguments @@ -65,8 +65,13 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': 'cd tests && /bin/bash --login ./rt.sh -e', + 'command': 'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e', 'callback_fnc': 'move_rt_logs' + }, + { + 'name': 'GRT', + 'command': 'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -l rt_gnu.conf', + 'callback_fnc': 'move_grt_logs' }] return machine_dict, repo_list_dict, action_list_dict @@ -78,7 +83,7 @@ def match_label_with_action(machine, actions, label): if len(split_label) != 3: return False if not re.match(split_label[0], 'Auto'): return False - if not re.match(split_label[2], machine['name'].split('.')[0]): return False + if not re.match(split_label[2], machine['name']): return False action_match = next((action for action in actions if re.match(action['name'], split_label[1])), False) return action_match @@ -130,8 +135,25 @@ def remove_pr_label(self): self.logger.info(f'Removing Label: {self.preq_dict["label"]}') self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) - def send_log_name_as_comment(self): + def add_pr_label(self): + ''' Removes the pull request label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) + + def check_label_before_job_start(self): + # LETS Check the label still exists before the start of the job in the + # case of multiple jobs + label_to_check = f'Auto-{preq_dict["action"]}-{self.machine["name"]}' + print(f'REMOVE ME: label_to_check is: {label_to_check}') + label_match = next((label for label in self.preq_dict['preq'].get_labels() if re.match(label, label_to_check)), False) + + return label_match + + + def send_log_name_as_comment(self, log_filename): logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') + + #Remove LAST MONTHS LOGS logger.info('Removing last months logs (if any)') last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) rm_command = [[f'rm rt_auto_*_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] @@ -141,24 +163,16 @@ def send_log_name_as_comment(self): except Exception as e: logger.warning(f'"{rm_command}" failed with error:{e}') - new_log_name = f'rt_auto_{self.machine["name"]}_'\ - f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' - cp_command = [[f'cp rt_auto.log {new_log_name}', os.getcwd()]] - logger.info(f'Running "{cp_command}"') + # Add log information to PR. + comment_text = f'Log Name:{log_filename}\n'\ + f'Log Location:{os.getcwd()}\n'\ + 'Logs are kept for one month' try: - self.run_commands(cp_command) + self.preq_dict['preq'].create_issue_comment(comment_text) except Exception as e: - logger.warning('Renaming rt_auto failed') + logger.warning('Creating comment with log location failed with:{e}') else: - comment_text = f'Log Name:{new_log_name}\n'\ - f'Log Location:{os.getcwd()}\n'\ - 'Logs are kept for one month' - try: - self.preq_dict['preq'].create_issue_comment(comment_text) - except Exception as e: - logger.warning('Creating comment with log location failed with:{e}') - else: - logger.info(f'{comment_text}') + logger.info(f'{comment_text}') def run_commands(self, commands_with_cwd): logger = logging.getLogger('JOB/RUN_COMMANDS') @@ -225,6 +239,7 @@ def run_function(self): assert(e) else: if output.returncode != 0: + self.add_pr_label() logger.critical(f'{self.preq_dict["action"]["command"]} Failed') [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] @@ -245,28 +260,46 @@ def run_function(self): def move_rt_logs(self): ''' This is the callback function associated with the "RT" command ''' logger = logging.getLogger('JOB/MOVE_RT_LOGS') - rt_log = f'tests/RegressionTests_{self.machine["name"]}.log' + rt_log = f'tests/RegressionTests_{self.machine["name"]}.intel.log' filepath = f'{self.pr_repo_loc}/{rt_log}' - rm_filepath = '/'.join((self.pr_repo_loc.split('/'))[:-1]) if os.path.exists(filepath): move_rt_commands = [ + [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "Auto: Added Updated RT Log file: {rt_log}"', self.pr_repo_loc], - [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], + [f'git commit -m "Auto: Added Updated RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], ['sleep 10', self.pr_repo_loc], [f'git push origin {self.branch}', self.pr_repo_loc] ] self.run_commands(move_rt_commands) else: - logger.critical('Could not find RT log') - raise FileNotFoundError('Could not find RT log') + logger.critical('Could not find Intel RT log') + raise FileNotFoundError('Could not find Intel RT log') + + def move_grt_logs(self): + ''' This is the callback function associated with the "GRT" command ''' + logger = logging.getLogger('JOB/MOVE_GRT_LOGS') + rt_log = f'tests/RegressionTests_{self.machine["name"]}.gnu.log' + filepath = f'{self.pr_repo_loc}/{rt_log}' + if os.path.exists(filepath): + move_grt_commands = [ + [f'git add {rt_log}', self.pr_repo_loc], + [f'git commit -m "Auto: Added Updated RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], + [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], + ['sleep 10', self.pr_repo_loc], + [f'git push origin {self.branch}', self.pr_repo_loc] + ] + self.run_commands(move_grt_commands) + + else: + logger.critical('Could not find Gnu RT log') + raise FileNotFoundError('Could not find Gnu RT log') def main(): # handle logging log_path = os.getcwd() - log_filename = 'rt_auto.log' + log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' # Please don't run the following on cron with level=logging.DEBUG # as it exposes the GH API Token # Only set it to DEBUG while debugging @@ -294,20 +327,21 @@ def main(): jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] for job in jobs: logger.info(f'Starting Job: {job}') - try: - logger.info('Calling remove_pr_label') - job.remove_pr_label() - logger.info('Calling clone_pr_repo') - job.clone_pr_repo() - logger.info('Calling run_function') - job.run_function() - logger.info('Calling remove_pr_dir') - job.remove_pr_dir() - logger.info('Calling send_log_name_as_comment') - job.send_log_name_as_comment() - except Exception as e: - logger.critical(e) - assert(e) + if job.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + job.remove_pr_label() + logger.info('Calling clone_pr_repo') + job.clone_pr_repo() + logger.info('Calling run_function') + job.run_function() + logger.info('Calling remove_pr_dir') + job.remove_pr_dir() + logger.info('Calling send_log_name_as_comment') + job.send_log_name_as_comment(log_filename) + except Exception as e: + logger.critical(e) + assert(e) logger.info('Script Finished') diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 61fe523c6e..4e99b75d62 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -8,38 +8,44 @@ else exit 1 fi -export RT_COMPILER='intel' -source ../detect_machine.sh -echo "Machine ID: "+$MACHINE_ID -if [[ $MACHINE_ID = hera.* ]]; then +if [[ $HOSTNAME == hfe* ]]; then + MACHINE_NAME=hera WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = orion.* ]]; then +elif [[ $HOSTNAME == Orion-login-* ]]; then + MACHINE_NAME=orion WORKDIR=/work/noaa/nems/bcurtis/test export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = jet.* ]]; then +elif [[ $HOSTNAME == fe* ]]; then + MACHINE_NAME=jet WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = gaea.* ]]; then +elif [[ $HOSTNAME == gaea* ]]; then + MACHINE_NAME=gaea WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = cheyenne.* ]]; then - #export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH - #export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages - echo "cheyenne not currently supported. automated RT not starting" - exit 1 +elif [[ $HOSTNAME = cheyenne*.cheyenne.ucar.edu ]]; then + MACHINE_NAME=cheyenne + WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt + export ACCNR="P48503002" + # DH* 20210226 temporary workaround to be able to use gnu + # export RT_COMPILER="gnu" + # export MACHINE_ID="cheyenne.gnu" + # *DH 20210226 + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else echo "No Python Path for this machine. automated RT not starting" exit 1 fi -python rt_auto.py -m $MACHINE_ID -w $WORKDIR +python rt_auto.py -m $MACHINE_NAME -w $WORKDIR exit 0 From c9f213b913706d2f9877926ef0f0c7b956ad60cb Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 26 Feb 2021 21:17:55 +0000 Subject: [PATCH 02/15] Auto: Added Updated RT Log file: tests/RegressionTests_hera.gnu.log skip-ci --- tests/RegressionTests_hera.gnu.log | 66 +++++++++++++++--------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 0414420ef5..7ca1c64a30 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 24 04:48:13 UTC 2021 +Fri Feb 26 20:50:39 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 05:56:35 UTC 2021 -Elapsed time: 01h:08m:22s. Have a nice day! +Fri Feb 26 21:17:55 UTC 2021 +Elapsed time: 00h:27m:17s. Have a nice day! From 8da6a6e4ee4eafbea9acf3e7a8ae00ed3e2186dd Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 26 Feb 2021 22:08:45 +0000 Subject: [PATCH 03/15] Bug Fixes --- tests/auto/rt_auto.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 464cf15d56..c63f5fb818 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -60,7 +60,7 @@ def input_data(args): } repo_list_dict = [{ 'name': 'ufs-weather-model', - 'address': 'ufs-community/ufs-weather-model', + 'address': 'BrianCurtis-NOAA/ufs-weather-model', 'base': 'develop' }] action_list_dict = [{ @@ -143,9 +143,12 @@ def add_pr_label(self): def check_label_before_job_start(self): # LETS Check the label still exists before the start of the job in the # case of multiple jobs - label_to_check = f'Auto-{preq_dict["action"]}-{self.machine["name"]}' + label_to_check = f'Auto-{self.preq_dict["action"]["name"]}-{self.machine["name"]}' print(f'REMOVE ME: label_to_check is: {label_to_check}') - label_match = next((label for label in self.preq_dict['preq'].get_labels() if re.match(label, label_to_check)), False) + labels = self.preq_dict['preq'].get_labels() + print(f'LABELS: {labels}') + print(f'{next((label for label in labels))}') + label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) return label_match @@ -266,7 +269,7 @@ def move_rt_logs(self): move_rt_commands = [ [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "Auto: Added Updated RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], + [f'git commit -m "Auto: Add RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], ['sleep 10', self.pr_repo_loc], [f'git push origin {self.branch}', self.pr_repo_loc] ] @@ -336,8 +339,8 @@ def main(): logger.info('Calling run_function') job.run_function() logger.info('Calling remove_pr_dir') - job.remove_pr_dir() - logger.info('Calling send_log_name_as_comment') + # job.remove_pr_dir() + # logger.info('Calling send_log_name_as_comment') job.send_log_name_as_comment(log_filename) except Exception as e: logger.critical(e) From 59466fb89dcdda1548ed5a4fc1900d571c2a65c0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 26 Feb 2021 22:25:09 +0000 Subject: [PATCH 04/15] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log skip-ci --- tests/RegressionTests_hera.intel.log | 228 +++++++++++++-------------- 1 file changed, 114 insertions(+), 114 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b6580365e6..5abb501b5d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 00:14:15 UTC 2021 +Fri Feb 26 21:19:45 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -429,10 +429,10 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2725,7 +2725,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2793,7 +2793,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,7 +2841,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2889,7 +2889,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3073,7 +3073,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3091,7 +3091,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3153,7 +3153,7 @@ Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3215,7 +3215,7 @@ Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3283,7 +3283,7 @@ Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3351,7 +3351,7 @@ Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3419,7 +3419,7 @@ Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3487,7 +3487,7 @@ Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3528,7 +3528,7 @@ Test 064 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3548,7 +3548,7 @@ Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,7 +3616,7 @@ Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,7 +3684,7 @@ Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3752,7 +3752,7 @@ Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3820,7 +3820,7 @@ Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3888,7 +3888,7 @@ Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3956,7 +3956,7 @@ Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3974,7 +3974,7 @@ Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,7 +4460,7 @@ Test 081 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,7 +4513,7 @@ Test 082 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4566,7 +4566,7 @@ Test 083 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4619,7 +4619,7 @@ Test 084 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4672,7 +4672,7 @@ Test 085 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4728,7 +4728,7 @@ Test 086 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4784,7 +4784,7 @@ Test 087 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4840,7 +4840,7 @@ Test 088 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4896,7 +4896,7 @@ Test 089 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4952,7 +4952,7 @@ Test 090 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5008,7 +5008,7 @@ Test 091 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5064,7 +5064,7 @@ Test 092 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5120,7 +5120,7 @@ Test 093 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5176,7 +5176,7 @@ Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5232,7 +5232,7 @@ Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5291,7 +5291,7 @@ Test 096 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5350,7 +5350,7 @@ Test 097 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5409,7 +5409,7 @@ Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5465,7 +5465,7 @@ Test 099 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5518,7 +5518,7 @@ Test 100 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,7 +5571,7 @@ Test 101 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5580,7 +5580,7 @@ Test 102 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5589,7 +5589,7 @@ Test 103 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5598,7 +5598,7 @@ Test 104 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5607,7 +5607,7 @@ Test 105 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5616,7 +5616,7 @@ Test 106 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5628,7 +5628,7 @@ Test 107 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5640,7 +5640,7 @@ Test 108 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 07:06:43 UTC 2021 -Elapsed time: 06h:52m:29s. Have a nice day! +Fri Feb 26 22:25:08 UTC 2021 +Elapsed time: 01h:05m:23s. Have a nice day! From 03b1e6940fbc39d049348a837205e8b277b213a3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 26 Feb 2021 22:33:15 +0000 Subject: [PATCH 05/15] Getting read for PR --- tests/auto/rt_auto.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index c63f5fb818..c4b672fcab 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -60,7 +60,7 @@ def input_data(args): } repo_list_dict = [{ 'name': 'ufs-weather-model', - 'address': 'BrianCurtis-NOAA/ufs-weather-model', + 'address': 'ufs-community/ufs-weather-model', 'base': 'develop' }] action_list_dict = [{ @@ -144,10 +144,7 @@ def check_label_before_job_start(self): # LETS Check the label still exists before the start of the job in the # case of multiple jobs label_to_check = f'Auto-{self.preq_dict["action"]["name"]}-{self.machine["name"]}' - print(f'REMOVE ME: label_to_check is: {label_to_check}') labels = self.preq_dict['preq'].get_labels() - print(f'LABELS: {labels}') - print(f'{next((label for label in labels))}') label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) return label_match From cc56609576900361a3515e5de52d030b11e6924d Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Mon, 1 Mar 2021 13:01:30 -0500 Subject: [PATCH 06/15] Update rt_auto.sh Remove extra comments --- tests/auto/rt_auto.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 4e99b75d62..e94b6c4eab 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -35,10 +35,6 @@ elif [[ $HOSTNAME = cheyenne*.cheyenne.ucar.edu ]]; then MACHINE_NAME=cheyenne WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt export ACCNR="P48503002" - # DH* 20210226 temporary workaround to be able to use gnu - # export RT_COMPILER="gnu" - # export MACHINE_ID="cheyenne.gnu" - # *DH 20210226 export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else From 2e394bb182e40ea25652599a5534aaa2bbef1e03 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Mon, 1 Mar 2021 13:17:38 -0500 Subject: [PATCH 07/15] Fix for Cheyenne string match being incorrect. --- tests/auto/rt_auto.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index e94b6c4eab..7c322d4491 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -31,7 +31,7 @@ elif [[ $HOSTNAME == gaea* ]]; then export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $HOSTNAME = cheyenne*.cheyenne.ucar.edu ]]; then +elif [[ $HOSTNAME = cheyenne* ]]; then MACHINE_NAME=cheyenne WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt export ACCNR="P48503002" From 25ff215414746b35ba1dea150b6453c90c1f9ca9 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 1 Mar 2021 19:13:58 +0000 Subject: [PATCH 08/15] Add permission check for 600 in accesstoken.sh --- tests/auto/rt_auto.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 4e99b75d62..3d44622803 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -1,7 +1,12 @@ #!/bin/bash --login set -eux if [ -f "accesstoken.sh" ]; then - source ./accesstoken.sh + if [ $(stat -c "%a" "accesstoken.sh") == "600" ]; then + echo "Sourcing accesstoken.sh" + source ./accesstoken.sh + else + echo "accesstoken.sh permissions NEED to be set to 600 before starting" + fi else echo "Please create accesstoken.sh (600) with the following content\n" echo "export ghapitoken=" @@ -31,14 +36,10 @@ elif [[ $HOSTNAME == gaea* ]]; then export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $HOSTNAME = cheyenne*.cheyenne.ucar.edu ]]; then +elif [[ $HOSTNAME = cheyenne* ]]; then MACHINE_NAME=cheyenne WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt export ACCNR="P48503002" - # DH* 20210226 temporary workaround to be able to use gnu - # export RT_COMPILER="gnu" - # export MACHINE_ID="cheyenne.gnu" - # *DH 20210226 export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else From 79da37c01633730fa8ca4c08e1d900e24386abba Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 1 Mar 2021 21:36:25 +0000 Subject: [PATCH 09/15] Make labels more logical, check for accesstoken.sh permissions, comment on PR instead of addig label back, skip-ci --- tests/auto/rt_auto.py | 73 +++++++++++++++++-------------------------- tests/auto/rt_auto.sh | 1 + 2 files changed, 29 insertions(+), 45 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index c4b672fcab..585dbefa0a 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -65,28 +65,27 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': 'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e', + 'command': 'cd tests && /bin/bash --login ./rt.sh -e', 'callback_fnc': 'move_rt_logs' - }, - { - 'name': 'GRT', - 'command': 'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -l rt_gnu.conf', - 'callback_fnc': 'move_grt_logs' }] return machine_dict, repo_list_dict, action_list_dict def match_label_with_action(machine, actions, label): ''' Match the label that initiates a job with an action in the dict''' + # -- i.e. hera-gnu-RT + # RT = full regression test suite logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') split_label = label.name.split('-') - - if len(split_label) != 3: return False - if not re.match(split_label[0], 'Auto'): return False - if not re.match(split_label[2], machine['name']): return False - action_match = next((action for action in actions if re.match(action['name'], split_label[1])), False) - - return action_match + if len(split_label) != 3: return False, False #Make sure it has three parts + if not re.match(split_label[0], machine['name']): return False, False #First check machine name matches + compiler = split_label[1] + if not str(compiler) in ["intel", "gnu"]: return False, False + action_match = next((action for action in actions if re.match(action['name'], split_label[2])), False) + action_match["command"] = f'export RT_COMPILER="{compiler}" && {action_match["command"]}' + if split_label[2] == "RT" and compiler == "gnu": + action_match["command"] = f'{action_match["command"]} -l rt_gnu.conf' + return compiler, action_match def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): @@ -97,9 +96,10 @@ def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] for i, pr_label in enumerate(preq_labels): - match = match_label_with_action(machine, actions, pr_label['label']) + compiler, match = match_label_with_action(machine, actions, pr_label['label']) if match: preq_labels[i]['action'] = match + preq_labels[i]['compiler'] = compiler else: preq_labels[i] = False @@ -135,15 +135,10 @@ def remove_pr_label(self): self.logger.info(f'Removing Label: {self.preq_dict["label"]}') self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) - def add_pr_label(self): - ''' Removes the pull request label that initiated the job run from PR ''' - self.logger.info(f'Removing Label: {self.preq_dict["label"]}') - self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) - def check_label_before_job_start(self): # LETS Check the label still exists before the start of the job in the # case of multiple jobs - label_to_check = f'Auto-{self.preq_dict["action"]["name"]}-{self.machine["name"]}' + label_to_check = f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' labels = self.preq_dict['preq'].get_labels() label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) @@ -226,9 +221,12 @@ def clone_pr_repo(self): def run_function(self): ''' Run the command associted with the label used to initiate this job ''' logger = logging.getLogger('JOB/RUN_FUNCTION') + compiler = self.preq_dict['compiler'] + logger.info(f'Compiler being used for command is {compiler}') + command = self.preq_dict["action"]["command"] try: - logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') - output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + logger.info(f'Running: "{command}" in "{self.pr_repo_loc}"') + output = subprocess.Popen(command, cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out,err = output.communicate() out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') @@ -239,8 +237,13 @@ def run_function(self): assert(e) else: if output.returncode != 0: - self.add_pr_label() - logger.critical(f'{self.preq_dict["action"]["command"]} Failed') + comment_text = f'rt.sh failed \n'\ + f'machine: {self.machine["name"]} \n'\ + f'compiler: {self.preq_dict["compiler"]}\n'\ + f'STDOUT: {out} \n'\ + f'STDERR: {err}' + self.preq_dict['preq'].create_issue_comment(comment_text) + logger.critical(f'{command} Failed') [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] else: @@ -260,7 +263,7 @@ def run_function(self): def move_rt_logs(self): ''' This is the callback function associated with the "RT" command ''' logger = logging.getLogger('JOB/MOVE_RT_LOGS') - rt_log = f'tests/RegressionTests_{self.machine["name"]}.intel.log' + rt_log = f'tests/RegressionTests_{self.machine["name"]}.{self.preq_dict["compiler"]}.log' filepath = f'{self.pr_repo_loc}/{rt_log}' if os.path.exists(filepath): move_rt_commands = [ @@ -276,25 +279,6 @@ def move_rt_logs(self): logger.critical('Could not find Intel RT log') raise FileNotFoundError('Could not find Intel RT log') - def move_grt_logs(self): - ''' This is the callback function associated with the "GRT" command ''' - logger = logging.getLogger('JOB/MOVE_GRT_LOGS') - rt_log = f'tests/RegressionTests_{self.machine["name"]}.gnu.log' - filepath = f'{self.pr_repo_loc}/{rt_log}' - if os.path.exists(filepath): - move_grt_commands = [ - [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "Auto: Added Updated RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], - [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], - ['sleep 10', self.pr_repo_loc], - [f'git push origin {self.branch}', self.pr_repo_loc] - ] - self.run_commands(move_grt_commands) - - else: - logger.critical('Could not find Gnu RT log') - raise FileNotFoundError('Could not find Gnu RT log') - def main(): # handle logging @@ -321,7 +305,6 @@ def main(): # get all pull requests from the GitHub object logger.info('Getting all pull requests, labels and actions applicable to this machine.') preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) - # add Job objects and run them logger.info('Adding all jobs to an object list and running them.') jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 3d44622803..b6869de548 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -6,6 +6,7 @@ if [ -f "accesstoken.sh" ]; then source ./accesstoken.sh else echo "accesstoken.sh permissions NEED to be set to 600 before starting" + exit 1 fi else echo "Please create accesstoken.sh (600) with the following content\n" From 06d93c9b46057929a94402668646294f8e763f5a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Mar 2021 13:47:27 +0000 Subject: [PATCH 10/15] Remove unneccesary logs --- tests/RegressionTests_hera.gnu.log | 66 ++++---- tests/RegressionTests_hera.intel.log | 228 +++++++++++++-------------- 2 files changed, 147 insertions(+), 147 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 7ca1c64a30..0414420ef5 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Feb 26 20:50:39 UTC 2021 +Wed Feb 24 04:48:13 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_158601/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 26 21:17:55 UTC 2021 -Elapsed time: 00h:27m:17s. Have a nice day! +Wed Feb 24 05:56:35 UTC 2021 +Elapsed time: 01h:08m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5abb501b5d..b6580365e6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Feb 26 21:19:45 UTC 2021 +Wed Feb 24 00:14:15 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -429,10 +429,10 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2725,7 +2725,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2793,7 +2793,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,7 +2841,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2889,7 +2889,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3073,7 +3073,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3091,7 +3091,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3153,7 +3153,7 @@ Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3215,7 +3215,7 @@ Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3283,7 +3283,7 @@ Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3351,7 +3351,7 @@ Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3419,7 +3419,7 @@ Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3487,7 +3487,7 @@ Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3528,7 +3528,7 @@ Test 064 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3548,7 +3548,7 @@ Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,7 +3616,7 @@ Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,7 +3684,7 @@ Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3752,7 +3752,7 @@ Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3820,7 +3820,7 @@ Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3888,7 +3888,7 @@ Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3956,7 +3956,7 @@ Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3974,7 +3974,7 @@ Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,7 +4460,7 @@ Test 081 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,7 +4513,7 @@ Test 082 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4566,7 +4566,7 @@ Test 083 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4619,7 +4619,7 @@ Test 084 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4672,7 +4672,7 @@ Test 085 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4728,7 +4728,7 @@ Test 086 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4784,7 +4784,7 @@ Test 087 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4840,7 +4840,7 @@ Test 088 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4896,7 +4896,7 @@ Test 089 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4952,7 +4952,7 @@ Test 090 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5008,7 +5008,7 @@ Test 091 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5064,7 +5064,7 @@ Test 092 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5120,7 +5120,7 @@ Test 093 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5176,7 +5176,7 @@ Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5232,7 +5232,7 @@ Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5291,7 +5291,7 @@ Test 096 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5350,7 +5350,7 @@ Test 097 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5409,7 +5409,7 @@ Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5465,7 +5465,7 @@ Test 099 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5518,7 +5518,7 @@ Test 100 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,7 +5571,7 @@ Test 101 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5580,7 +5580,7 @@ Test 102 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5589,7 +5589,7 @@ Test 103 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5598,7 +5598,7 @@ Test 104 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5607,7 +5607,7 @@ Test 105 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5616,7 +5616,7 @@ Test 106 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5628,7 +5628,7 @@ Test 107 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5640,7 +5640,7 @@ Test 108 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_299543/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 26 22:25:08 UTC 2021 -Elapsed time: 01h:05m:23s. Have a nice day! +Wed Feb 24 07:06:43 UTC 2021 +Elapsed time: 06h:52m:29s. Have a nice day! From c396c00d3f419a415cd7a7cb5e2cf0c9eeac8390 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Mar 2021 16:14:17 +0000 Subject: [PATCH 11/15] Changed cheyenne hfe07 to match with chadmin* in rt_auto.sh and detect_machines.sh --- tests/auto/rt_auto.sh | 2 +- tests/detect_machine.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index b6869de548..4ecbd29a8b 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -37,7 +37,7 @@ elif [[ $HOSTNAME == gaea* ]]; then export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $HOSTNAME = cheyenne* ]]; then +elif [[ $HOSTNAME == *.cheyenne.ucar.edu ]]; then MACHINE_NAME=cheyenne WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt export ACCNR="P48503002" diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index c4bea08a2e..0356b38bce 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -88,6 +88,12 @@ case $(hostname -f) in cheyenne4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne4 cheyenne5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne5 cheyenne6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne6 + chadmin1.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin2.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin3.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1 login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 From bcd4254d68c7a36d4352a0626f433a478b2e2c71 Mon Sep 17 00:00:00 2001 From: climbfuji Date: Wed, 3 Mar 2021 09:41:04 -0700 Subject: [PATCH 12/15] Auto: Add RT Log file: tests/RegressionTests_cheyenne.gnu.log skip-ci --- tests/RegressionTests_cheyenne.gnu.log | 66 +++++++++++++------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 610cecdf52..48a9a98184 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 24 11:31:32 MST 2021 +Wed Mar 3 09:21:59 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 11:50:16 MST 2021 -Elapsed time: 00h:18m:44s. Have a nice day! +Wed Mar 3 09:41:03 MST 2021 +Elapsed time: 00h:19m:05s. Have a nice day! From 204190de5936106591df01437c8af5c52504dd1c Mon Sep 17 00:00:00 2001 From: climbfuji Date: Wed, 3 Mar 2021 10:57:22 -0700 Subject: [PATCH 13/15] Auto: Add RT Log file: tests/RegressionTests_cheyenne.intel.log skip-ci --- tests/RegressionTests_cheyenne.intel.log | 214 +++++++++++------------ 1 file changed, 107 insertions(+), 107 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index a7564553e0..ced6322ca4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 12:37:37 MST 2021 +Wed Mar 3 09:31:54 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,7 +430,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_no_aero_prod Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2194,7 +2194,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2442,7 +2442,7 @@ Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2510,7 +2510,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2558,7 +2558,7 @@ Test 046 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,7 +2626,7 @@ Test 047 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,7 +2694,7 @@ Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2712,7 +2712,7 @@ Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2774,7 +2774,7 @@ Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2836,7 +2836,7 @@ Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v15p2_debug_prod Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2904,7 +2904,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2972,7 +2972,7 @@ Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,7 +3040,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,7 +3108,7 @@ Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3119,7 +3119,7 @@ Test 056 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3149,7 +3149,7 @@ Test 057 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3169,7 +3169,7 @@ Test 058 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3237,7 +3237,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3305,7 +3305,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3373,7 +3373,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3441,7 +3441,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3509,7 +3509,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3577,7 +3577,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3595,7 +3595,7 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4081,7 +4081,7 @@ Test 074 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4134,7 +4134,7 @@ Test 075 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4187,7 +4187,7 @@ Test 076 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4240,7 +4240,7 @@ Test 077 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4293,7 +4293,7 @@ Test 078 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4349,7 +4349,7 @@ Test 079 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4405,7 +4405,7 @@ Test 080 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4461,7 +4461,7 @@ Test 081 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4517,7 +4517,7 @@ Test 082 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4573,7 +4573,7 @@ Test 083 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4629,7 +4629,7 @@ Test 084 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4685,7 +4685,7 @@ Test 085 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4741,7 +4741,7 @@ Test 086 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4797,7 +4797,7 @@ Test 087 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4853,7 +4853,7 @@ Test 088 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4912,7 +4912,7 @@ Test 089 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4971,7 +4971,7 @@ Test 090 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_wave_v16_prod Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5030,7 +5030,7 @@ Test 091 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_wave_prod Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5086,7 +5086,7 @@ Test 092 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5139,7 +5139,7 @@ Test 093 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5192,7 +5192,7 @@ Test 094 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_control_cfsr Checking test 095 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5201,7 +5201,7 @@ Test 095 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_restart_cfsr Checking test 096 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5210,7 +5210,7 @@ Test 096 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_control_gefs Checking test 097 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5219,7 +5219,7 @@ Test 097 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_bulk_cfsr Checking test 098 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5228,7 +5228,7 @@ Test 098 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_bulk_gefs Checking test 099 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5237,7 +5237,7 @@ Test 099 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5249,7 +5249,7 @@ Test 100 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5261,7 +5261,7 @@ Test 101 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_debug_cfsr Checking test 102 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5270,5 +5270,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 13:57:44 MST 2021 -Elapsed time: 01h:20m:08s. Have a nice day! +Wed Mar 3 10:57:21 MST 2021 +Elapsed time: 01h:25m:27s. Have a nice day! From 2be827f71b1d7b77b8a0eff6550fb1caab29127d Mon Sep 17 00:00:00 2001 From: climbfuji Date: Wed, 3 Mar 2021 10:59:07 -0700 Subject: [PATCH 14/15] Bugfixes in rt_auto.sh and rt_auto.py --- tests/auto/rt_auto.py | 2 +- tests/auto/rt_auto.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 585dbefa0a..2ded8b6fcb 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -42,7 +42,7 @@ def parse_args_in(): parser = argparse.ArgumentParser() # Setup Input Arguments - choices = ['hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] + choices = ['cheyenne', 'hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] parser.add_argument('-m', '--machine', help='Machine name', required=True, choices=choices, type=str) parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 4ecbd29a8b..17d7e6ff00 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -1,7 +1,7 @@ #!/bin/bash --login set -eux if [ -f "accesstoken.sh" ]; then - if [ $(stat -c "%a" "accesstoken.sh") == "600" ]; then + if [ $(stat -L -c "%a" "accesstoken.sh") == "600" ]; then echo "Sourcing accesstoken.sh" source ./accesstoken.sh else From 6f57b7d58aa8d0af072f3db0121b1439e977b3be Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Mar 2021 18:03:41 +0000 Subject: [PATCH 15/15] Revert logs to upstream --- tests/RegressionTests_cheyenne.gnu.log | 66 +++---- tests/RegressionTests_cheyenne.intel.log | 214 +++++++++++------------ 2 files changed, 140 insertions(+), 140 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 48a9a98184..610cecdf52 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Mar 3 09:21:59 MST 2021 +Wed Feb 24 11:31:32 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23975/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 3 09:41:03 MST 2021 -Elapsed time: 00h:19m:05s. Have a nice day! +Wed Feb 24 11:50:16 MST 2021 +Elapsed time: 00h:18m:44s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index ced6322ca4..a7564553e0 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Mar 3 09:31:54 MST 2021 +Wed Feb 24 12:37:37 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,7 +430,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_prod Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2194,7 +2194,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2442,7 +2442,7 @@ Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2510,7 +2510,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2558,7 +2558,7 @@ Test 046 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,7 +2626,7 @@ Test 047 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,7 +2694,7 @@ Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2712,7 +2712,7 @@ Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2774,7 +2774,7 @@ Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2836,7 +2836,7 @@ Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_debug_prod Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2904,7 +2904,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2972,7 +2972,7 @@ Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,7 +3040,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,7 +3108,7 @@ Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3119,7 +3119,7 @@ Test 056 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3149,7 +3149,7 @@ Test 057 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3169,7 +3169,7 @@ Test 058 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3237,7 +3237,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3305,7 +3305,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3373,7 +3373,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3441,7 +3441,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3509,7 +3509,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3577,7 +3577,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3595,7 +3595,7 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4081,7 +4081,7 @@ Test 074 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4134,7 +4134,7 @@ Test 075 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4187,7 +4187,7 @@ Test 076 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4240,7 +4240,7 @@ Test 077 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4293,7 +4293,7 @@ Test 078 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4349,7 +4349,7 @@ Test 079 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4405,7 +4405,7 @@ Test 080 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4461,7 +4461,7 @@ Test 081 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4517,7 +4517,7 @@ Test 082 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4573,7 +4573,7 @@ Test 083 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4629,7 +4629,7 @@ Test 084 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4685,7 +4685,7 @@ Test 085 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4741,7 +4741,7 @@ Test 086 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4797,7 +4797,7 @@ Test 087 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4853,7 +4853,7 @@ Test 088 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4912,7 +4912,7 @@ Test 089 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4971,7 +4971,7 @@ Test 090 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_v16_prod Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5030,7 +5030,7 @@ Test 091 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_control_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_wave_prod Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5086,7 +5086,7 @@ Test 092 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5139,7 +5139,7 @@ Test 093 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5192,7 +5192,7 @@ Test 094 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_cfsr Checking test 095 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5201,7 +5201,7 @@ Test 095 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_restart_cfsr Checking test 096 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5210,7 +5210,7 @@ Test 096 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_gefs Checking test 097 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5219,7 +5219,7 @@ Test 097 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_cfsr Checking test 098 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5228,7 +5228,7 @@ Test 098 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_gefs Checking test 099 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5237,7 +5237,7 @@ Test 099 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5249,7 +5249,7 @@ Test 100 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5261,7 +5261,7 @@ Test 101 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_33355/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_debug_cfsr Checking test 102 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5270,5 +5270,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 3 10:57:21 MST 2021 -Elapsed time: 01h:25m:27s. Have a nice day! +Wed Feb 24 13:57:44 MST 2021 +Elapsed time: 01h:20m:08s. Have a nice day!