From 354666d974ca5c7bbd5ff5b752e09f588c638467 Mon Sep 17 00:00:00 2001 From: ClimaBot Date: Mon, 23 Jan 2023 14:38:04 -0700 Subject: [PATCH 01/11] bl-test, updating baseline test. --- tests/auto-jenkins/jobs/rt.py | 161 +++++++++ tests/auto-jenkins/rt_auto_jenkins.py | 365 ++++++++++++++++++++ tests/auto-jenkins/start_rt_auto_jenkins.sh | 33 ++ 3 files changed, 559 insertions(+) create mode 100644 tests/auto-jenkins/jobs/rt.py create mode 100755 tests/auto-jenkins/rt_auto_jenkins.py create mode 100755 tests/auto-jenkins/start_rt_auto_jenkins.sh diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py new file mode 100644 index 0000000000..568b390fda --- /dev/null +++ b/tests/auto-jenkins/jobs/rt.py @@ -0,0 +1,161 @@ +# Imports +import datetime +import logging +import os +import re + +#Logging filter to santize log output and ensure Github Access tokens are not leaked. +def loggingfilter(record): + if re.search('ghp_(.*)\@', str(record.msg)): + record.msg = re.sub(r'ghp_(.*)\@', r'ghp_****@', str(record.msg)) + elif re.search('github_pat_(.*)\@', str(record.msg)): + record.msg = re.sub(r'github_pat_(.*)\@', r'github_pat_****@', str(record.msg)) + + return True + +def run(job_obj): + logger = logging.getLogger('RT/RUN') + workdir = set_directories(job_obj) + branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, branch) + + +def set_directories(job_obj): + logger = logging.getLogger('RT/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + else: + print(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + + return workdir + + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('RT/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'gnu' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e', pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('RT/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + filename = ('jenkinsaccesstoken') + f = open(filename) + os.environ['ghapitoken'] = f.readline().strip('\n') + + logger = logging.getLogger('RT/CLONE_PR_REPO') + logger.addFilter(loggingfilter) + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_token = os.environ['ghapitoken'] + git_https_url = f'{git_url[0]}//{git_token}@{git_url[1]}' + git_ssh_url = job_obj.preq_dict['preq'].head.repo.ssh_url + logger.debug(f'GIT SSH_URL: {git_ssh_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'[RT] Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_ssh_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + [f'git remote add httpsorigin {git_https_url}', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "ecc.platform@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "epic-cicd-jenkins"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return branch, pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, branch): + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('RT/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + #if job_obj.preq_dict['preq'].maintainer_can_modify: + move_rt_commands = [ + [f'git pull --ff-only origin {branch}', pr_repo_loc], + [f'git add {rt_log}', pr_repo_loc], + [f'git commit -m "[AutoRT] {job_obj.machine}' + f'.{job_obj.compiler} Job Completed.\n\n\n' + 'on-behalf-of @ufs-community "', + pr_repo_loc], + ['sleep 10', pr_repo_loc], + [f'git push httpsorigin {branch}', pr_repo_loc] + ] + job_obj.run_commands(logger, move_rt_commands) + else: + job_obj.comment_text_append(f'[RT] Log file shows failures.') + job_obj.comment_text_append(f'[RT] Please obtain logs from {pr_repo_loc}') + job_obj.preq_dict['preq'].create_issue_comment(job_obj.comment_text) + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('RT/PROCESS_LOGFILE') + rt_dir = [] + fail_string_list = ['Test', 'failed'] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if all(x in line for x in fail_string_list): + # if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'[RT] Error: {line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + rt_dir = os.path.split(line.split()[-1])[0] + elif 'SUCCESSFUL' in line: + return rt_dir, True + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + print(f'Could not find {job_obj.machine}.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py new file mode 100755 index 0000000000..e393e5ff40 --- /dev/null +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -0,0 +1,365 @@ +"""Automation of UFS Regression Testing + +This script automates the process of UFS regression testing for code managers +at NOAA-EMC + +This script should be started through rt_auto.sh so that env vars are set up +prior to start. +""" +from github import Github as gh +import datetime +import subprocess +import re +import os +import sys +from glob import glob +import logging +import importlib +from shutil import rmtree + +class GHInterface: + ''' + This class stores information for communicating with GitHub + ... + + Attributes + ---------- + GHACCESSTOKEN : str + API token to autheticate with GitHub + client : pyGitHub communication object + The connection to GitHub to make API requests + ''' + + def __init__(self): + self.logger = logging.getLogger('GHINTERFACE') + + filename = 'jenkinsaccesstoken' + + if os.path.exists(filename): + if oct(os.stat(filename).st_mode)[-3:] != 600: + with open(filename) as f: + os.environ['ghapitoken'] = f.readline().strip('\n') + else: + raise Exception('File permission needs to be "600" ') + else: + raise FileNotFoundError('Cannot find file "accesstoken"') + + try: + self.client = gh(os.getenv('ghapitoken')) + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise(e) + + +def set_action_from_label(machine, actions, label): + ''' Match the label that initiates a job with an action in the dict''' + # -- i.e. hera-gnu-RT + logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') + logger.info('Setting action from Label') + split_label = label.name.split('-') + # Make sure it has three parts + if len(split_label) != 3: + return False, False + # Break the parts into their variables + label_machine = split_label[0] + label_compiler = split_label[1] + label_action = split_label[2] + # check machine name matches + if not re.match(label_machine, machine): + return False, False + # Compiler must be intel or gnu + if not str(label_compiler) in ["intel", "gnu"]: + return False, False + action_match = next((action for action in actions + if re.match(action, label_action)), False) + + logging.info(f'Compiler: {label_compiler}, Action: {action_match}') + return label_compiler, action_match + +def delete_pr_dirs(each_pr, machine): + if machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' + elif machine == 'jet': + workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + elif machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' + elif machine == 'orion': + workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' + elif machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + else: + logging.error(f'Machine {machine} is not supported for this job') + raise KeyError + ids = [str(pr.id) for pr in each_pr] + logging.debug(f'ids are: {ids}') + dirs = [x.split('/')[-2] for x in glob(f'{workdir}/*/')] + logging.debug(f'dirs: {dirs}') + for dir in dirs: + if dir != 'pr': + logging.debug(f'Checking dir {dir}') + if not dir in ids: + logging.debug(f'ID NOT A MATCH, DELETING {dir}') + delete_rt_dirs(dir, machine, workdir) + if os.path.isdir(f'{workdir}/{dir}'): + logging.debug(f'Executing rmtree in "{workdir}/{dir}"') + rmtree(f'{workdir}/{dir}') + else: + logging.debug(f'{workdir}/{dir} does not exist, not attempting to remove') + else: + logging.debug(f'ID A MATCH, NOT DELETING {dir}') + # job_obj.preq_dict["preq"].id + + +def delete_rt_dirs(in_dir, machine, workdir): + if machine == 'hera': + rt_dir ='/scratch1/NCEPDEV/stmp4/role.epic/FV3_RT' + elif machine == 'jet': + rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ + f'emc.nemspara/FV3_RT' + elif machine == 'gaea': + rt_dir = '/lustre/f2/scratch/role.epic/FV3_RT' + elif machine == 'orion': + rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' + elif machine == 'cheyenne': + rt_dir = '/glade/scratch/epicufsrt/FV3_RT' + else: + logging.error(f'Machine {machine} is not supported for this job') + raise KeyError + globdir = f'{workdir}/{in_dir}/**/compile_*.log' + logging.debug(f'globdir: {globdir}') + logfiles = glob(globdir, recursive=True) + if not logfiles: + return + logging.debug(f'logfiles: {logfiles}') + matches = [] + for logfile in logfiles: + with open(logfile, "r") as fp: + lines = [line.split('/') for line in fp if 'rt_' in line] + lines = list(set([item for sublist in lines for item in sublist])) + lines = [s for s in lines if 'rt_' in s and '\n' not in s] + if lines: + matches.append(lines) + logging.debug(f'lines: {lines}') + matches = list(set([item for sublist in matches for item in sublist])) + logging.debug(f'matches: {matches}') + for match in matches: + if os.path.isdir(f'{rt_dir}/{match}'): + logging.debug(f'Executing rmtree in "{rt_dir}/{match}"') + rmtree(f'{rt_dir}/{match}') + else: + logging.debug(f'{rt_dir}/{match} does not exist, not attempting to remove') + + +def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): + ''' Create list of dictionaries of a pull request + and its machine label and action ''' + logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') + logger.info('Getting Pull Requests with Actions') + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']) + .get_pulls(state='open', sort='created', base=repo['base']) + for repo in repos] + each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] + delete_pr_dirs(each_pr, machine) + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr + for label in pr.get_labels()] + + jobs = [] + # return_preq = [] + for pr_label in preq_labels: + compiler, match = set_action_from_label(machine, actions, + pr_label['label']) + if match: + pr_label['action'] = match + # return_preq.append(pr_label.copy()) + jobs.append(Job(pr_label.copy(), ghinterface_obj, machine, compiler)) + + return jobs + + +class Job: + ''' + This class stores all information needed to run jobs on this machine. + This class provides all methods needed to run all jobs. + ... + + Attributes + ---------- + preq_dict: dict + Dictionary of all data that comes from the GitHub pull request + ghinterface_obj: object + An interface to GitHub setup through class GHInterface + machine: dict + Information about the machine the jobs will be running on + provided by the bash script + ''' + + def __init__(self, preq_dict, ghinterface_obj, machine, compiler): + self.logger = logging.getLogger('JOB') + self.preq_dict = preq_dict + self.job_mod = importlib.import_module( + f'jobs.{self.preq_dict["action"].lower()}') + self.ghinterface_obj = ghinterface_obj + self.machine = machine + self.compiler = compiler + self.comment_text = '***Automated RT Failure Notification***\n' + self.failed_tests = [] + + def comment_text_append(self, newtext): + self.comment_text += f'{newtext}\n' + + def remove_pr_label(self): + ''' Removes the PR label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].remove_from_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'{self.machine}'\ + f'-{self.compiler}'\ + f'-{self.preq_dict["action"]}' + labels = self.preq_dict['preq'].get_labels() + label_match = next((label for label in labels + if re.match(label.name, label_to_check)), False) + + return label_match + + def run_commands(self, logger, commands_with_cwd): + for command, in_cwd in commands_with_cwd: + logger.info(f'Running `{command}`') + logger.info(f'in location "{in_cwd}"') + try: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT) + except Exception as e: + self.job_failed(logger, 'subprocess.Popen') + else: + try: + out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + logger.info(out) + except Exception as e: + err = [] if not err else err.decode('utf8').split('\n') + self.job_failed(logger, f'Command {command}', exception=e, + STDOUT=True, out=out, err=err) + else: + logger.info(f'Finished running: {command}') + + def run(self): + logger = logging.getLogger('JOB/RUN') + logger.info(f'Starting Job: {self.preq_dict["label"]}') + self.comment_text_append(newtext=f'Machine: {self.machine}') + self.comment_text_append(f'Compiler: {self.compiler}') + self.comment_text_append(f'Job: {self.preq_dict["action"]}') + if self.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + self.remove_pr_label() + logger.info('Calling Job to Run') + self.job_mod.run(self) + except Exception: + self.job_failed(logger, 'run()') + logger.info('Sending comment text') + self.send_comment_text() + else: + logger.info(f'Cannot find label {self.preq_dict["label"]}') + + def send_comment_text(self): + logger = logging.getLogger('JOB/SEND_COMMENT_TEXT') + logger.info(f'Comment Text: {self.comment_text}') + self.comment_text_append('Please make changes and add ' + 'the following label back: ' + f'{self.machine}' + f'-{self.compiler}' + f'-{self.preq_dict["action"]}') + + self.preq_dict['preq'].create_issue_comment(self.comment_text) + + def job_failed(self, logger, job_name, exception=Exception, STDOUT=False, + out=None, err=None): + logger.critical(f'{job_name} FAILED. Exception:{exception}') + + if STDOUT: + logger.critical(f'STDOUT: {[item for item in out if not None]}') + logger.critical(f'STDERR: {[eitem for eitem in err if not None]}') + +def setup_env(): + hostname = os.getenv('HOSTNAME') + if bool(re.match(re.compile('hfe.+'), hostname)): + machine = 'hera' + elif bool(re.match(re.compile('hecflow.+'), hostname)): + machine = 'hera' + elif bool(re.match(re.compile('fe.+'), hostname)): + machine = 'jet' + os.environ['ACCNR'] = 'hfv3gfs' + elif bool(re.match(re.compile('tfe.+'), hostname)): + machine = 'jet' + os.environ['ACCNR'] = 'hfv3gfs' + elif bool(re.match(re.compile('gaea.+'), hostname)): + machine = 'gaea' + os.environ['ACCNR'] = 'nggps_emc' + elif bool(re.match(re.compile('Orion-login.+'), hostname)): + machine = 'orion' + os.environ['ACCNR'] = 'epic-ps' + elif bool(re.match(re.compile('cheyenne.+'), hostname)): + machine = 'cheyenne' + os.environ['ACCNR'] = 'SCSG0002' + elif bool(re.match(re.compile('chadmin.+'), hostname)): + machine = 'cheyenne' + os.environ['ACCNR'] = 'SCSG0002' + else: + raise KeyError(f'Hostname: {hostname} does not match '\ + 'for a supported system. Exiting.') + + github_org = sys.argv[1] + base = sys.argv[2] + model = '/ufs-weather-model' + address = github_org + model + # Dictionary of GitHub repositories to check + repo_dict = [{ + 'name': 'ufs-weather-model', + 'address': address, + 'base': base + }] + + # Approved Actions + action_list = ['RT', 'BL'] + + return machine, repo_dict, action_list + + +def main(): + + # handle logging + log_filename = f'rt_auto_'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + #logging.basicConfig(filename=log_filename, filemode='w', + # level=logging.INFO) + logging.basicConfig(filename=log_filename, filemode='w', + level=logging.DEBUG) + logger = logging.getLogger('MAIN') + logger.info('Starting Script') + + # setup environment + logger.info('Getting the environment setup') + machine, repos, actions = setup_env() + + # setup interface with GitHub + logger.info('Setting up GitHub interface.') + ghinterface_obj = GHInterface() + + # get all pull requests from the GitHub object + # and turn them into Job objects + logger.info('Getting all pull requests, ' + 'labels and actions applicable to this machine.') + jobs = get_preqs_with_actions(repos, machine, + ghinterface_obj, actions) + [job.run() for job in jobs] + + + logger.info('Script Finished') + + +if __name__ == '__main__': + main() diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh new file mode 100755 index 0000000000..203b334767 --- /dev/null +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -0,0 +1,33 @@ +#!/bin/bash --login +set -eux + +if [[ $HOSTNAME == hfe* ]]; then + 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 [[ $HOSTNAME == hecflow* ]]; then + 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 [[ $HOSTNAME == Orion-login-* ]]; then + 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 [[ $HOSTNAME == fe* ]]; then + 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 [[ $HOSTNAME == tfe* ]]; then + 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 [[ $HOSTNAME == gaea* ]]; then + 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 == *chadmin* ]] || [[ $HOSTNAME == *cheyenne* ]]; then + export MACHINE_ID=cheyenne + 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." + exit 1 +fi + +python rt_auto_jenkins.py $1 $2 + +exit 0 From b5c6fc58a3a5e90d36d9b0bb45b2fbd1de011313 Mon Sep 17 00:00:00 2001 From: ClimaBot Date: Mon, 23 Jan 2023 15:07:00 -0700 Subject: [PATCH 02/11] Updating BLDATE parm. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 733282337f..182be3638f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -445,7 +445,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20230120 +BL_DATE=20230123 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From 47829e66a50ffc38ebcbe82d51bbd811f0b0303d Mon Sep 17 00:00:00 2001 From: ClimaBot Date: Tue, 24 Jan 2023 12:01:19 -0700 Subject: [PATCH 03/11] giving it a ludicrious date. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 182be3638f..d3523fa651 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -445,7 +445,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20230123 +BL_DATE=21991231 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From 704af3a8deffbcceff6cbe7504bd57185350f713 Mon Sep 17 00:00:00 2001 From: ClimaBot Date: Tue, 24 Jan 2023 15:01:42 -0700 Subject: [PATCH 04/11] bl-test, reverting date, updating rt.py email, and paths for Cheyenne with bl.py. --- tests/auto-jenkins/jobs/bl.py | 233 ++++++++++++++++++++++++++++++++++ tests/auto-jenkins/jobs/rt.py | 2 +- tests/rt.sh | 2 +- 3 files changed, 235 insertions(+), 2 deletions(-) create mode 100644 tests/auto-jenkins/jobs/bl.py diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py new file mode 100644 index 0000000000..76610487f8 --- /dev/null +++ b/tests/auto-jenkins/jobs/bl.py @@ -0,0 +1,233 @@ +# Imports +import datetime +import logging +import os +import sys +from . import rt + +def run(job_obj): + logger = logging.getLogger('BL/RUN') + workdir, rtbldir, blstore = set_directories(job_obj) + pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + bldate = get_bl_date(job_obj, pr_repo_loc) + bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' + bldirbool = check_for_bl_dir(bldir, job_obj) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) + + +def set_directories(job_obj): + logger = logging.getLogger('BL/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' + blstore = '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' + rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' + blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/nems/emc.nemspara/autort/pr' + blstore = '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + blstore = '/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs' + rtbldir = '/glade/scratch/epicufsrt/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + else: + logger.critical(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + logger.info(f'blstore: {blstore}') + logger.info(f'rtbldir: {rtbldir}') + + return workdir, rtbldir, blstore + + +def check_for_bl_dir(bldir, job_obj): + logger = logging.getLogger('BL/CHECK_FOR_BL_DIR') + logger.info('Checking if baseline directory exists') + if os.path.exists(bldir): + logger.critical(f'Baseline dir: {bldir} exists. It should not, yet.') + job_obj.comment_text_append(f'{bldir}\n Exists already. ' + 'It should not yet. Please delete.') + raise FileExistsError + return False + + +def create_bl_dir(bldir, job_obj): + logger = logging.getLogger('BL/CREATE_BL_DIR') + if not check_for_bl_dir(bldir, job_obj): + os.makedirs(bldir) + if not os.path.exists(bldir): + logger.critical(f'Someting went wrong creating {bldir}') + raise FileNotFoundError + + +#def get_bl_date(job_obj): +# logger = logging.getLogger('BL/GET_BL_DATE') +# for line in job_obj.preq_dict['preq'].body.splitlines(): +# if 'BL_DATE:' in line: +# bldate = line +# bldate = bldate.replace('BL_DATE:', '') +# bldate = bldate.replace(' ', '') +# if len(bldate) != 8: +# print(f'Date: {bldate} is not formatted YYYYMMDD') +# raise ValueError +# logger.info(f'BL_DATE: {bldate}') +# bl_format = '%Y%m%d' +# try: +# datetime.datetime.strptime(bldate, bl_format) +# except ValueError: +# logger.info(f'Date {bldate} is not formatted YYYYMMDD') +# raise ValueError +# return bldate +# logger.critical('"BL_DATE:YYYYMMDD" needs to be in the PR body.'\ +# 'On its own line. Stopping') +# raise ValueError + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('RT/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'gnu' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -c -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c', pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -c', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('BL/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('BL/CLONE_PR_REPO') + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.debug(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "ecc.platform@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "epic-cicd-jenkins"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir): + logger = logging.getLogger('BL/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + create_bl_dir(bldir, job_obj) + move_bl_command = [[f'mv {rtbldir}/* {bldir}/', pr_repo_loc]] + if job_obj.machine == 'orion': + move_bl_command.append([f'/bin/bash --login adjust_permissions.sh orion develop-{bldate}', blstore]) + job_obj.run_commands(logger, move_bl_command) + job_obj.comment_text_append('Baseline creation and move successful') + logger.info('Starting RT Job') + rt.run(job_obj) + logger.info('Finished with RT Job') + remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir) + + +def get_bl_date(job_obj, pr_repo_loc): + logger = logging.getLogger('BL/UPDATE_RT_SH') + BLDATEFOUND = False + with open(f'{pr_repo_loc}/tests/rt.sh', 'r') as f: + for line in f: + if 'BL_DATE=' in line: + logger.info('Found BL_DATE in line') + BLDATEFOUND = True + bldate = line + bldate = bldate.rstrip('\n') + bldate = bldate.replace('BL_DATE=', '') + bldate = bldate.strip(' ') + logger.info(f'bldate is "{bldate}"') + logger.info(f'Type bldate: {type(bldate)}') + bl_format = '%Y%m%d' + try: + datetime.datetime.strptime(bldate, '%Y%m%d') + except ValueError: + logger.info(f'Date {bldate} is not formatted YYYYMMDD') + raise ValueError + if not BLDATEFOUND: + job_obj.comment_text_append('BL_DATE not found in rt.sh.' + 'Please manually edit rt.sh ' + 'with BL_DATE={bldate}') + job_obj.job_failed(logger, 'get_bl_date()') + logger.info('Finished get_bl_date') + + return bldate + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('BL/PROCESS_LOGFILE') + rt_dir = [] + fail_string_list = ['Test', 'failed'] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if all(x in line for x in fail_string_list): + # if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'{line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + logger.info(f'Found "working dir" in line: {line}') + rt_dir = os.path.split(line.split()[-1])[0] + logger.info(f'It is: {rt_dir}') + job_obj.comment_text_append(f'Please manually delete: ' + f'{rt_dir}') + elif 'SUCCESSFUL' in line: + logger.info('RT Successful') + return rt_dir, True + logger.critical(f'Log file exists but is not complete') + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 568b390fda..294c85720c 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -125,7 +125,7 @@ def post_process(job_obj, pr_repo_loc, repo_dir_str, branch): [f'git add {rt_log}', pr_repo_loc], [f'git commit -m "[AutoRT] {job_obj.machine}' f'.{job_obj.compiler} Job Completed.\n\n\n' - 'on-behalf-of @ufs-community "', + 'on-behalf-of @ufs-community "', pr_repo_loc], ['sleep 10', pr_repo_loc], [f'git push httpsorigin {branch}', pr_repo_loc] diff --git a/tests/rt.sh b/tests/rt.sh index d3523fa651..733282337f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -445,7 +445,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=21991231 +BL_DATE=20230120 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From 81e1e0ff7933cc43189382c498cba5c10913c85b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 25 Jan 2023 22:29:33 +0000 Subject: [PATCH 05/11] [AutoRT] jet.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_jet.intel.log | 902 ++++++++++++++-------------- 1 file changed, 451 insertions(+), 451 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 15dd37caa3..1f38e32788 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,37 +1,37 @@ -Tue Jan 24 00:46:51 GMT 2023 +Wed Jan 25 20:01:58 GMT 2023 Start Regression test -Compile 001 elapsed time 1847 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1886 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1725 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 280 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1559 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 007 elapsed time 1558 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 001 elapsed time 1870 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1721 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 299 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 007 elapsed time 1605 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile 008 elapsed time 1559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 1407 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 019 elapsed time 2240 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 020 elapsed time 1644 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 278 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 022 elapsed time 147 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 023 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 024 elapsed time 1579 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1621 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 026 elapsed time 1436 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 027 elapsed time 1483 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 228 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 1550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 274 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 1447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 233 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1626 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 019 elapsed time 2247 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 020 elapsed time 1619 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 284 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 022 elapsed time 164 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 023 elapsed time 111 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 024 elapsed time 1585 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1576 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 026 elapsed time 1411 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 027 elapsed time 1476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 226 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,14 +96,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.808062 - 0: The maximum resident set size (KB) = 1737032 + 0: The total amount of wall time = 406.312236 + 0: The maximum resident set size (KB) = 1733288 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -167,14 +167,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 295.553853 - 0: The maximum resident set size (KB) = 1625940 + 0: The total amount of wall time = 299.462891 + 0: The maximum resident set size (KB) = 1627912 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.861618 - 0: The maximum resident set size (KB) = 1775976 + 0: The total amount of wall time = 456.020689 + 0: The maximum resident set size (KB) = 1770688 Test 003 cpld_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.517236 - 0: The maximum resident set size (KB) = 1493124 + 0: The total amount of wall time = 260.492169 + 0: The maximum resident set size (KB) = 1491164 Test 004 cpld_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -359,14 +359,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 481.526963 - 0: The maximum resident set size (KB) = 1969976 + 0: The total amount of wall time = 483.755456 + 0: The maximum resident set size (KB) = 1988232 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_esmfthreads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -419,14 +419,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.065084 - 0: The maximum resident set size (KB) = 1975628 + 0: The total amount of wall time = 486.314158 + 0: The maximum resident set size (KB) = 1973732 Test 006 cpld_esmfthreads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.354376 - 0: The maximum resident set size (KB) = 1770312 + 0: The total amount of wall time = 463.692304 + 0: The maximum resident set size (KB) = 1762364 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -539,14 +539,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.447612 - 0: The maximum resident set size (KB) = 1731460 + 0: The total amount of wall time = 381.883020 + 0: The maximum resident set size (KB) = 1725820 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -611,14 +611,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.680611 - 0: The maximum resident set size (KB) = 1792588 + 0: The total amount of wall time = 472.558716 + 0: The maximum resident set size (KB) = 1779684 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -682,14 +682,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.676320 - 0: The maximum resident set size (KB) = 1620648 + 0: The total amount of wall time = 363.202124 + 0: The maximum resident set size (KB) = 1615448 Test 010 cpld_control_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -751,14 +751,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 344.534779 - 0: The maximum resident set size (KB) = 1673212 + 0: The total amount of wall time = 365.706435 + 0: The maximum resident set size (KB) = 1680732 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -811,14 +811,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 848.827936 - 0: The maximum resident set size (KB) = 1820928 + 0: The total amount of wall time = 853.617559 + 0: The maximum resident set size (KB) = 1819596 Test 012 cpld_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_debug_noaero_p8 Checking test 013 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -870,14 +870,14 @@ Checking test 013 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 529.277032 - 0: The maximum resident set size (KB) = 1639892 + 0: The total amount of wall time = 533.470133 + 0: The maximum resident set size (KB) = 1635416 Test 013 cpld_debug_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -939,14 +939,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 367.289628 - 0: The maximum resident set size (KB) = 1685112 + 0: The total amount of wall time = 366.254934 + 0: The maximum resident set size (KB) = 1675352 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -996,14 +996,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 801.593076 - 0: The maximum resident set size (KB) = 2764332 + 0: The total amount of wall time = 797.049840 + 0: The maximum resident set size (KB) = 2764896 Test 015 cpld_control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1053,14 +1053,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 210.506438 - 0: The maximum resident set size (KB) = 2770232 + 0: The total amount of wall time = 215.587648 + 0: The maximum resident set size (KB) = 2764380 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/cpld_restart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 111.271150 - 0: The maximum resident set size (KB) = 2209508 + 0: The total amount of wall time = 115.898079 + 0: The maximum resident set size (KB) = 2202444 Test 017 cpld_restart_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1144,28 +1144,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 175.110282 - 0: The maximum resident set size (KB) = 572044 + 0: The total amount of wall time = 187.184024 + 0: The maximum resident set size (KB) = 570840 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 182.286686 - 0: The maximum resident set size (KB) = 569828 + 0: The total amount of wall time = 173.868547 + 0: The maximum resident set size (KB) = 566472 Test 019 control_CubedSphereGrid_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1176,32 +1176,32 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.085316 - 0: The maximum resident set size (KB) = 572496 + 0: The total amount of wall time = 181.762335 + 0: The maximum resident set size (KB) = 567292 Test 020 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.984230 - 0: The maximum resident set size (KB) = 572640 + 0: The total amount of wall time = 187.430755 + 0: The maximum resident set size (KB) = 577160 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1240,14 +1240,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 595.975184 -0: The maximum resident set size (KB) = 791024 +0: The total amount of wall time = 597.521773 +0: The maximum resident set size (KB) = 789120 Test 022 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1258,14 +1258,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 721.064820 - 0: The maximum resident set size (KB) = 688020 + 0: The total amount of wall time = 727.644348 + 0: The maximum resident set size (KB) = 692508 Test 023 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1276,14 +1276,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 921.091762 - 0: The maximum resident set size (KB) = 1019980 + 0: The total amount of wall time = 921.145767 + 0: The maximum resident set size (KB) = 1015616 Test 024 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1326,14 +1326,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 790.192331 - 0: The maximum resident set size (KB) = 1166856 + 0: The total amount of wall time = 797.675582 + 0: The maximum resident set size (KB) = 1159076 -Test 025 control_c384gdas PASS +Test 025 control_c384gdas PASS Tries: 2 baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1344,28 +1344,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.261802 - 0: The maximum resident set size (KB) = 575220 + 0: The total amount of wall time = 125.631461 + 0: The maximum resident set size (KB) = 572244 Test 026 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 62.746723 - 0: The maximum resident set size (KB) = 381288 + 0: The total amount of wall time = 68.488769 + 0: The maximum resident set size (KB) = 390092 Test 027 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1376,14 +1376,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 107.293178 - 0: The maximum resident set size (KB) = 573700 + 0: The total amount of wall time = 112.575911 + 0: The maximum resident set size (KB) = 575860 Test 028 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_iovr4 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.165381 - 0: The maximum resident set size (KB) = 568140 + 0: The total amount of wall time = 192.067053 + 0: The maximum resident set size (KB) = 570344 Test 029 control_iovr4 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_iovr5 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1420,14 +1420,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.359925 - 0: The maximum resident set size (KB) = 570416 + 0: The total amount of wall time = 193.982520 + 0: The maximum resident set size (KB) = 571572 Test 030 control_iovr5 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1474,14 +1474,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.181348 - 0: The maximum resident set size (KB) = 1537160 + 0: The total amount of wall time = 225.701693 + 0: The maximum resident set size (KB) = 1536504 Test 031 control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1500,14 +1500,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 428.083928 - 0: The maximum resident set size (KB) = 1547216 + 0: The total amount of wall time = 430.951722 + 0: The maximum resident set size (KB) = 1536064 Test 032 control_p8_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.612606 - 0: The maximum resident set size (KB) = 775716 + 0: The total amount of wall time = 113.569448 + 0: The maximum resident set size (KB) = 774764 Test 033 control_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.071618 - 0: The maximum resident set size (KB) = 1538752 + 0: The total amount of wall time = 234.195593 + 0: The maximum resident set size (KB) = 1521248 Test 034 control_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.827819 - 0: The maximum resident set size (KB) = 1619408 + 0: The total amount of wall time = 217.038210 + 0: The maximum resident set size (KB) = 1626704 Test 035 control_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1700,14 +1700,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.658754 - 0: The maximum resident set size (KB) = 1656460 + 0: The total amount of wall time = 269.980711 + 0: The maximum resident set size (KB) = 1659988 Test 036 control_p8_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/merra2_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.619651 - 0: The maximum resident set size (KB) = 1556336 + 0: The total amount of wall time = 258.959499 + 0: The maximum resident set size (KB) = 1554956 Test 037 merra2_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1772,28 +1772,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.171372 - 0: The maximum resident set size (KB) = 782156 + 0: The total amount of wall time = 410.073175 + 0: The maximum resident set size (KB) = 788248 Test 038 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.496389 - 0: The maximum resident set size (KB) = 773276 + 0: The total amount of wall time = 202.600543 + 0: The maximum resident set size (KB) = 775308 Test 039 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1804,14 +1804,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.812448 - 0: The maximum resident set size (KB) = 772860 + 0: The total amount of wall time = 419.026076 + 0: The maximum resident set size (KB) = 772728 Test 040 regional_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1822,14 +1822,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 251.804381 - 0: The maximum resident set size (KB) = 763532 + 0: The total amount of wall time = 249.261984 + 0: The maximum resident set size (KB) = 757600 Test 041 regional_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1837,28 +1837,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 438.380218 - 0: The maximum resident set size (KB) = 774460 + 0: The total amount of wall time = 441.954501 + 0: The maximum resident set size (KB) = 765896 Test 042 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 398.638592 - 0: The maximum resident set size (KB) = 772500 + 0: The total amount of wall time = 395.463072 + 0: The maximum resident set size (KB) = 777136 Test 043 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1869,14 +1869,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.668781 - 0: The maximum resident set size (KB) = 783824 + 0: The total amount of wall time = 402.318285 + 0: The maximum resident set size (KB) = 783600 Test 044 regional_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_wofs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 518.252368 - 0: The maximum resident set size (KB) = 511968 + 0: The total amount of wall time = 516.069409 + 0: The maximum resident set size (KB) = 512336 Test 045 regional_wofs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 046 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.568682 - 0: The maximum resident set size (KB) = 942636 + 0: The total amount of wall time = 605.561365 + 0: The maximum resident set size (KB) = 944316 Test 046 rap_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_rrtmgp Checking test 047 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1995,14 +1995,14 @@ Checking test 047 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.808416 - 0: The maximum resident set size (KB) = 1072376 + 0: The total amount of wall time = 665.676206 + 0: The maximum resident set size (KB) = 1071880 Test 047 rap_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2013,14 +2013,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 407.201894 - 0: The maximum resident set size (KB) = 1083072 + 0: The total amount of wall time = 453.753253 + 0: The maximum resident set size (KB) = 1073000 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 049 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 648.433128 - 0: The maximum resident set size (KB) = 950888 + 0: The total amount of wall time = 641.192681 + 0: The maximum resident set size (KB) = 936192 Test 049 rap_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 050 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 593.442693 - 0: The maximum resident set size (KB) = 1017388 + 0: The total amount of wall time = 591.202159 + 0: The maximum resident set size (KB) = 1017676 Test 050 rap_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_restart Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 051 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.460426 - 0: The maximum resident set size (KB) = 829052 + 0: The total amount of wall time = 302.124072 + 0: The maximum resident set size (KB) = 823352 Test 051 rap_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2221,14 +2221,14 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 603.833177 - 0: The maximum resident set size (KB) = 959768 + 0: The total amount of wall time = 611.304107 + 0: The maximum resident set size (KB) = 942028 Test 052 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2275,14 +2275,14 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 636.694710 - 0: The maximum resident set size (KB) = 934212 + 0: The total amount of wall time = 657.904437 + 0: The maximum resident set size (KB) = 936600 Test 053 rap_sfcdiff_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_sfcdiff_restart Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.839654 - 0: The maximum resident set size (KB) = 840348 + 0: The total amount of wall time = 444.795079 + 0: The maximum resident set size (KB) = 828468 Test 054 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2375,14 +2375,14 @@ Checking test 055 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.576609 - 0: The maximum resident set size (KB) = 940420 + 0: The total amount of wall time = 583.275920 + 0: The maximum resident set size (KB) = 944832 Test 055 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2429,14 +2429,14 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.187813 - 0: The maximum resident set size (KB) = 949220 + 0: The total amount of wall time = 608.903707 + 0: The maximum resident set size (KB) = 949128 Test 056 hrrr_control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2483,14 +2483,14 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.793814 - 0: The maximum resident set size (KB) = 1019676 + 0: The total amount of wall time = 558.123653 + 0: The maximum resident set size (KB) = 1021548 Test 057 hrrr_control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_restart Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2529,14 +2529,14 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.049167 - 0: The maximum resident set size (KB) = 831664 + 0: The total amount of wall time = 429.161853 + 0: The maximum resident set size (KB) = 825536 Test 058 hrrr_control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2583,14 +2583,14 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 597.135170 - 0: The maximum resident set size (KB) = 954656 + 0: The total amount of wall time = 599.831270 + 0: The maximum resident set size (KB) = 949148 Test 059 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2605,14 +2605,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 711.744110 - 0: The maximum resident set size (KB) = 636952 + 0: The total amount of wall time = 710.300843 + 0: The maximum resident set size (KB) = 635616 Test 060 rrfs_v1nssl PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2627,14 +2627,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 711.499984 - 0: The maximum resident set size (KB) = 635884 + 0: The total amount of wall time = 709.153456 + 0: The maximum resident set size (KB) = 635792 Test 061 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2643,14 +2643,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 171.869188 - 0: The maximum resident set size (KB) = 847464 + 0: The total amount of wall time = 165.344162 + 0: The maximum resident set size (KB) = 854256 Test 062 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2659,14 +2659,14 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 189.922735 - 0: The maximum resident set size (KB) = 879408 + 0: The total amount of wall time = 185.937909 + 0: The maximum resident set size (KB) = 866704 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 165.980002 - 0: The maximum resident set size (KB) = 860664 + 0: The total amount of wall time = 170.612107 + 0: The maximum resident set size (KB) = 848252 Test 064 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2691,14 +2691,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 111.080542 - 0: The maximum resident set size (KB) = 813228 + 0: The total amount of wall time = 111.334465 + 0: The maximum resident set size (KB) = 819564 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_radar_tten_warm_2threads Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2707,14 +2707,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 112.454277 - 0: The maximum resident set size (KB) = 829480 + 0: The total amount of wall time = 112.173013 + 0: The maximum resident set size (KB) = 829124 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2725,14 +2725,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 459.032124 - 0: The maximum resident set size (KB) = 661708 + 0: The total amount of wall time = 462.625438 + 0: The maximum resident set size (KB) = 666552 Test 067 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2743,14 +2743,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.808530 - 0: The maximum resident set size (KB) = 662540 + 0: The total amount of wall time = 452.662886 + 0: The maximum resident set size (KB) = 668372 Test 068 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2761,54 +2761,54 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.602322 - 0: The maximum resident set size (KB) = 632036 + 0: The total amount of wall time = 246.717805 + 0: The maximum resident set size (KB) = 635052 Test 069 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_wam +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 147.224196 - 0: The maximum resident set size (KB) = 477632 + 0: The total amount of wall time = 149.210421 + 0: The maximum resident set size (KB) = 476988 Test 070 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_hrrr_warm_debug Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 946.818272 - 0: The maximum resident set size (KB) = 875464 + 0: The total amount of wall time = 946.131716 + 0: The maximum resident set size (KB) = 873128 Test 071 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_conus13km_radar_tten_warm_debug Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 946.661724 - 0: The maximum resident set size (KB) = 880380 + 0: The total amount of wall time = 949.020430 + 0: The maximum resident set size (KB) = 877596 Test 072 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_CubedSphereGrid_debug Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2835,348 +2835,348 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 208.556107 - 0: The maximum resident set size (KB) = 736756 + 0: The total amount of wall time = 216.082579 + 0: The maximum resident set size (KB) = 729944 Test 073 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_wrtGauss_netcdf_parallel_debug Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.074707 - 0: The maximum resident set size (KB) = 735696 + 0: The total amount of wall time = 198.151970 + 0: The maximum resident set size (KB) = 734232 Test 074 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_stochy_debug Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.733847 - 0: The maximum resident set size (KB) = 738432 + 0: The total amount of wall time = 221.521132 + 0: The maximum resident set size (KB) = 739984 Test 075 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_lndp_debug Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.140413 - 0: The maximum resident set size (KB) = 739292 + 0: The total amount of wall time = 201.878958 + 0: The maximum resident set size (KB) = 738728 Test 076 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_csawmg_debug Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 310.689204 - 0: The maximum resident set size (KB) = 785000 + 0: The total amount of wall time = 307.070261 + 0: The maximum resident set size (KB) = 786176 Test 077 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_csawmgt_debug Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.798186 - 0: The maximum resident set size (KB) = 786332 + 0: The total amount of wall time = 300.317301 + 0: The maximum resident set size (KB) = 787844 Test 078 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_ras_debug Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.524729 - 0: The maximum resident set size (KB) = 746560 + 0: The total amount of wall time = 200.851919 + 0: The maximum resident set size (KB) = 748120 Test 079 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_diag_debug Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.492693 - 0: The maximum resident set size (KB) = 789448 + 0: The total amount of wall time = 207.885265 + 0: The maximum resident set size (KB) = 791352 Test 080 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_debug_p8 Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.650533 - 0: The maximum resident set size (KB) = 1553092 + 0: The total amount of wall time = 228.733201 + 0: The maximum resident set size (KB) = 1551032 Test 081 control_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_debug Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1281.506376 - 0: The maximum resident set size (KB) = 797912 + 0: The total amount of wall time = 1281.389152 + 0: The maximum resident set size (KB) = 796600 Test 082 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control_debug Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.381896 - 0: The maximum resident set size (KB) = 1113528 + 0: The total amount of wall time = 363.019224 + 0: The maximum resident set size (KB) = 1112036 Test 083 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_debug Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.337844 - 0: The maximum resident set size (KB) = 1110456 + 0: The total amount of wall time = 348.797906 + 0: The maximum resident set size (KB) = 1114532 Test 084 hrrr_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_unified_drag_suite_debug Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.417128 - 0: The maximum resident set size (KB) = 1110616 + 0: The total amount of wall time = 361.643198 + 0: The maximum resident set size (KB) = 1110676 Test 085 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_diag_debug Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.454749 - 0: The maximum resident set size (KB) = 1198828 + 0: The total amount of wall time = 378.118141 + 0: The maximum resident set size (KB) = 1191480 Test 086 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_cires_ugwp_debug Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.224103 - 0: The maximum resident set size (KB) = 1105444 + 0: The total amount of wall time = 366.125884 + 0: The maximum resident set size (KB) = 1111400 Test 087 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_unified_ugwp_debug Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.435559 - 0: The maximum resident set size (KB) = 1118500 + 0: The total amount of wall time = 370.192532 + 0: The maximum resident set size (KB) = 1106968 Test 088 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_lndp_debug Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.850429 - 0: The maximum resident set size (KB) = 1115908 + 0: The total amount of wall time = 363.240018 + 0: The maximum resident set size (KB) = 1111564 Test 089 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_flake_debug Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.575467 - 0: The maximum resident set size (KB) = 1108896 + 0: The total amount of wall time = 360.918493 + 0: The maximum resident set size (KB) = 1109808 Test 090 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_progcld_thompson_debug Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.300363 - 0: The maximum resident set size (KB) = 1108060 + 0: The total amount of wall time = 368.351865 + 0: The maximum resident set size (KB) = 1113208 Test 091 rap_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_noah_debug Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.992708 - 0: The maximum resident set size (KB) = 1113052 + 0: The total amount of wall time = 354.085991 + 0: The maximum resident set size (KB) = 1109476 Test 092 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_rrtmgp_debug Checking test 093 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 606.405285 - 0: The maximum resident set size (KB) = 1242252 + 0: The total amount of wall time = 601.801488 + 0: The maximum resident set size (KB) = 1230360 Test 093 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.176137 - 0: The maximum resident set size (KB) = 1114368 + 0: The total amount of wall time = 368.911209 + 0: The maximum resident set size (KB) = 1115952 Test 094 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 588.866778 - 0: The maximum resident set size (KB) = 1104716 + 0: The total amount of wall time = 588.913390 + 0: The maximum resident set size (KB) = 1105844 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.457699 - 0: The maximum resident set size (KB) = 1108232 + 0: The total amount of wall time = 359.154527 + 0: The maximum resident set size (KB) = 1103128 Test 096 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 365.785703 - 0: The maximum resident set size (KB) = 434892 + 0: The total amount of wall time = 365.767232 + 0: The maximum resident set size (KB) = 435048 Test 097 control_wam_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 385.860637 - 0: The maximum resident set size (KB) = 982236 + 0: The total amount of wall time = 420.582607 + 0: The maximum resident set size (KB) = 980328 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3241,14 +3241,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.413097 - 0: The maximum resident set size (KB) = 840756 + 0: The total amount of wall time = 489.465562 + 0: The maximum resident set size (KB) = 840648 Test 099 rap_control_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3295,14 +3295,14 @@ Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.916382 - 0: The maximum resident set size (KB) = 839288 + 0: The total amount of wall time = 259.021725 + 0: The maximum resident set size (KB) = 836020 Test 100 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3349,14 +3349,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.545694 - 0: The maximum resident set size (KB) = 878172 + 0: The total amount of wall time = 477.771807 + 0: The maximum resident set size (KB) = 878972 Test 101 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3403,14 +3403,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.654374 - 0: The maximum resident set size (KB) = 890676 + 0: The total amount of wall time = 252.257034 + 0: The maximum resident set size (KB) = 889440 Test 102 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3457,14 +3457,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.915392 - 0: The maximum resident set size (KB) = 817068 + 0: The total amount of wall time = 273.107074 + 0: The maximum resident set size (KB) = 830236 Test 103 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3503,14 +3503,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.220470 - 0: The maximum resident set size (KB) = 811412 + 0: The total amount of wall time = 361.010387 + 0: The maximum resident set size (KB) = 800224 Test 104 rap_restart_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3549,14 +3549,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.128796 - 0: The maximum resident set size (KB) = 760484 + 0: The total amount of wall time = 127.805269 + 0: The maximum resident set size (KB) = 762068 Test 105 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3603,81 +3603,81 @@ Checking test 106 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.437442 - 0: The maximum resident set size (KB) = 871836 + 0: The total amount of wall time = 310.724844 + 0: The maximum resident set size (KB) = 866864 Test 106 rap_control_dyn64_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.976675 - 0: The maximum resident set size (KB) = 1004652 + 0: The total amount of wall time = 356.490816 + 0: The maximum resident set size (KB) = 1000596 Test 107 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.456904 - 0: The maximum resident set size (KB) = 1001760 + 0: The total amount of wall time = 350.164591 + 0: The maximum resident set size (KB) = 1002368 Test 108 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 360.523884 - 0: The maximum resident set size (KB) = 1029000 + 0: The total amount of wall time = 362.537859 + 0: The maximum resident set size (KB) = 1029508 Test 109 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 306.886791 - 0: The maximum resident set size (KB) = 1184744 + 0: The total amount of wall time = 316.656003 + 0: The maximum resident set size (KB) = 1198840 Test 110 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 368.898897 - 0: The maximum resident set size (KB) = 1561352 + 0: The total amount of wall time = 370.162645 + 0: The maximum resident set size (KB) = 1553048 Test 111 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3686,14 +3686,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 481.750127 - 0: The maximum resident set size (KB) = 1247740 + 0: The total amount of wall time = 486.196370 + 0: The maximum resident set size (KB) = 1263504 Test 112 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3702,14 +3702,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 885.684035 - 0: The maximum resident set size (KB) = 1304352 + 0: The total amount of wall time = 891.690532 + 0: The maximum resident set size (KB) = 1305496 Test 113 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1005.705153 - 0: The maximum resident set size (KB) = 1315316 + 0: The total amount of wall time = 998.202052 + 0: The maximum resident set size (KB) = 1304752 Test 114 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3735,14 +3735,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 455.832109 - 0: The maximum resident set size (KB) = 1285648 + 0: The total amount of wall time = 462.426889 + 0: The maximum resident set size (KB) = 1289652 Test 115 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3750,131 +3750,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 464.363583 - 0: The maximum resident set size (KB) = 1256944 + 0: The total amount of wall time = 458.486119 + 0: The maximum resident set size (KB) = 1277156 Test 116 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1255.802222 - 0: The maximum resident set size (KB) = 969324 + 0: The total amount of wall time = 1244.505698 + 0: The maximum resident set size (KB) = 972676 Test 117 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.104544 - 0: The maximum resident set size (KB) = 957456 + 0: The total amount of wall time = 211.142135 + 0: The maximum resident set size (KB) = 973240 Test 118 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.613313 - 0: The maximum resident set size (KB) = 949880 + 0: The total amount of wall time = 131.766790 + 0: The maximum resident set size (KB) = 936344 Test 119 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.084264 - 0: The maximum resident set size (KB) = 863220 + 0: The total amount of wall time = 222.859058 + 0: The maximum resident set size (KB) = 851264 Test 120 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.524820 - 0: The maximum resident set size (KB) = 857112 + 0: The total amount of wall time = 209.727339 + 0: The maximum resident set size (KB) = 851888 Test 121 datm_cdeps_iau_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.219809 - 0: The maximum resident set size (KB) = 853200 + 0: The total amount of wall time = 210.711446 + 0: The maximum resident set size (KB) = 854708 Test 122 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.060704 - 0: The maximum resident set size (KB) = 960796 + 0: The total amount of wall time = 212.599137 + 0: The maximum resident set size (KB) = 970348 Test 123 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.255358 - 0: The maximum resident set size (KB) = 958396 + 0: The total amount of wall time = 213.449543 + 0: The maximum resident set size (KB) = 966576 Test 124 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.413043 - 0: The maximum resident set size (KB) = 857636 + 0: The total amount of wall time = 205.795466 + 0: The maximum resident set size (KB) = 858600 Test 125 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3883,14 +3883,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 577.741492 - 0: The maximum resident set size (KB) = 764324 + 0: The total amount of wall time = 593.050706 + 0: The maximum resident set size (KB) = 763600 Test 126 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3899,64 +3899,64 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 623.556110 - 0: The maximum resident set size (KB) = 739252 + 0: The total amount of wall time = 575.024003 + 0: The maximum resident set size (KB) = 728456 Test 127 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.366447 - 0: The maximum resident set size (KB) = 960464 + 0: The total amount of wall time = 194.352553 + 0: The maximum resident set size (KB) = 974896 Test 128 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 280.258907 - 0: The maximum resident set size (KB) = 2265564 + 0: The total amount of wall time = 315.110129 + 0: The maximum resident set size (KB) = 2249732 Test 129 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 318.863834 - 0: The maximum resident set size (KB) = 2250864 + 0: The total amount of wall time = 300.616012 + 0: The maximum resident set size (KB) = 2268684 Test 130 datm_cdeps_gfs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 580.086931 - 0: The maximum resident set size (KB) = 930076 + 0: The total amount of wall time = 588.627753 + 0: The maximum resident set size (KB) = 933124 Test 131 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_lnd_gswp3 Checking test 132 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3965,14 +3965,14 @@ Checking test 132 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.316455 - 0: The maximum resident set size (KB) = 244744 + 0: The total amount of wall time = 9.823420 + 0: The maximum resident set size (KB) = 239136 Test 132 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/datm_cdeps_lnd_gswp3_rst Checking test 133 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3981,14 +3981,14 @@ Checking test 133 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 25.347715 - 0: The maximum resident set size (KB) = 246356 + 0: The total amount of wall time = 33.974218 + 0: The maximum resident set size (KB) = 243580 Test 133 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_p8_atmlnd_sbs Checking test 134 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc ............ALT CHECK......OK Comparing sfcf000.tile2.nc ............ALT CHECK......OK @@ -4073,14 +4073,14 @@ Checking test 134 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 285.961318 - 0: The maximum resident set size (KB) = 1581948 + 0: The total amount of wall time = 282.365620 + 0: The maximum resident set size (KB) = 1586248 Test 134 control_p8_atmlnd_sbs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/control_atmwav Checking test 135 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4124,14 +4124,14 @@ Checking test 135 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 119.961249 - 0: The maximum resident set size (KB) = 589556 + 0: The total amount of wall time = 115.805489 + 0: The maximum resident set size (KB) = 603176 Test 135 control_atmwav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/atmaero_control_p8 Checking test 136 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4175,14 +4175,14 @@ Checking test 136 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.530248 - 0: The maximum resident set size (KB) = 1630772 + 0: The total amount of wall time = 301.324633 + 0: The maximum resident set size (KB) = 1645588 Test 136 atmaero_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/atmaero_control_p8_rad Checking test 137 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 137 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.096908 - 0: The maximum resident set size (KB) = 1672664 + 0: The total amount of wall time = 373.256247 + 0: The maximum resident set size (KB) = 1656836 Test 137 atmaero_control_p8_rad PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/atmaero_control_p8_rad_micro Checking test 138 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4277,14 +4277,14 @@ Checking test 138 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.513294 - 0: The maximum resident set size (KB) = 1665580 + 0: The total amount of wall time = 378.234217 + 0: The maximum resident set size (KB) = 1660456 Test 138 atmaero_control_p8_rad_micro PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_159676/regional_atmaq +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_21981/regional_atmaq Checking test 139 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4300,12 +4300,12 @@ Checking test 139 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 884.701148 - 0: The maximum resident set size (KB) = 1423684 + 0: The total amount of wall time = 873.880398 + 0: The maximum resident set size (KB) = 1435832 Test 139 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 24 03:30:04 GMT 2023 -Elapsed time: 02h:43m:15s. Have a nice day! +Wed Jan 25 22:29:23 GMT 2023 +Elapsed time: 02h:27m:26s. Have a nice day! From 4f2bf14a655fb68664d367e11060a19143dba008 Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Wed, 25 Jan 2023 15:45:09 -0700 Subject: [PATCH 06/11] [AutoRT] cheyenne.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 322 ++++++++++++------------- 1 file changed, 161 insertions(+), 161 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 38037b66ea..c7e1c82359 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon Jan 23 17:46:34 MST 2023 +Wed Jan 25 15:14:12 MST 2023 Start Regression test -Compile 001 elapsed time 390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 871 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1101 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 879 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 873 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 638 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 589 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 369 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 401 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 851 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 856 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 861 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 662 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 566 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 353 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.626005 -0:The maximum resident set size (KB) = 677192 +0:The total amount of wall time = 821.572639 +0:The maximum resident set size (KB) = 677252 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.399427 -0:The maximum resident set size (KB) = 430124 +0:The total amount of wall time = 177.349648 +0:The maximum resident set size (KB) = 429944 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.828155 -0:The maximum resident set size (KB) = 448132 +0:The total amount of wall time = 286.831425 +0:The maximum resident set size (KB) = 447964 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.235139 -0:The maximum resident set size (KB) = 1222884 +0:The total amount of wall time = 310.220925 +0:The maximum resident set size (KB) = 1222768 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.550382 -0:The maximum resident set size (KB) = 778848 +0:The total amount of wall time = 712.321044 +0:The maximum resident set size (KB) = 778804 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 723.952436 -0:The maximum resident set size (KB) = 778944 +0:The total amount of wall time = 720.714677 +0:The maximum resident set size (KB) = 779044 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 663.266368 -0:The maximum resident set size (KB) = 851072 +0:The total amount of wall time = 662.642668 +0:The maximum resident set size (KB) = 851152 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.217984 -0:The maximum resident set size (KB) = 528008 +0:The total amount of wall time = 360.992545 +0:The maximum resident set size (KB) = 527400 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 708.207220 -0:The maximum resident set size (KB) = 778720 +0:The total amount of wall time = 705.589083 +0:The maximum resident set size (KB) = 778760 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 723.557619 -0:The maximum resident set size (KB) = 778812 +0:The total amount of wall time = 723.215666 +0:The maximum resident set size (KB) = 778924 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 529.433095 -0:The maximum resident set size (KB) = 526308 +0:The total amount of wall time = 531.959324 +0:The maximum resident set size (KB) = 526564 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 687.187550 -0:The maximum resident set size (KB) = 776328 +0:The total amount of wall time = 684.317242 +0:The maximum resident set size (KB) = 776268 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 623.780605 -0:The maximum resident set size (KB) = 845676 +0:The total amount of wall time = 621.627386 +0:The maximum resident set size (KB) = 845852 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.893214 -0:The maximum resident set size (KB) = 776280 +0:The total amount of wall time = 681.847883 +0:The maximum resident set size (KB) = 776484 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.471894 -0:The maximum resident set size (KB) = 522640 +0:The total amount of wall time = 516.491439 +0:The maximum resident set size (KB) = 522412 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 696.831478 -0:The maximum resident set size (KB) = 775640 +0:The total amount of wall time = 699.785966 +0:The maximum resident set size (KB) = 775692 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 206.008801 -0:The maximum resident set size (KB) = 593976 +0:The total amount of wall time = 203.258587 +0:The maximum resident set size (KB) = 594152 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.899873 -0:The maximum resident set size (KB) = 609168 +0:The total amount of wall time = 220.676306 +0:The maximum resident set size (KB) = 608144 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 206.826509 -0:The maximum resident set size (KB) = 596976 +0:The total amount of wall time = 202.950412 +0:The maximum resident set size (KB) = 596716 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.415600 -0:The maximum resident set size (KB) = 603168 +0:The total amount of wall time = 130.805195 +0:The maximum resident set size (KB) = 603452 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.092889 -0:The maximum resident set size (KB) = 483960 +0:The total amount of wall time = 87.596203 +0:The maximum resident set size (KB) = 483728 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 480.809460 -0:The maximum resident set size (KB) = 560572 +0:The total amount of wall time = 473.072708 +0:The maximum resident set size (KB) = 559316 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.087005 -0:The maximum resident set size (KB) = 801212 +0:The total amount of wall time = 153.123009 +0:The maximum resident set size (KB) = 801364 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.286363 -0:The maximum resident set size (KB) = 795996 +0:The total amount of wall time = 147.968150 +0:The maximum resident set size (KB) = 796216 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.156941 -0:The maximum resident set size (KB) = 884300 +0:The total amount of wall time = 160.514378 +0:The maximum resident set size (KB) = 884560 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 238.804822 -0:The maximum resident set size (KB) = 799620 +0:The total amount of wall time = 240.271189 +0:The maximum resident set size (KB) = 799780 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.647673 -0:The maximum resident set size (KB) = 801248 +0:The total amount of wall time = 152.296530 +0:The maximum resident set size (KB) = 801528 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.084739 -0:The maximum resident set size (KB) = 795440 +0:The total amount of wall time = 150.635703 +0:The maximum resident set size (KB) = 795672 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.657327 -0:The maximum resident set size (KB) = 436668 +0:The total amount of wall time = 86.906057 +0:The maximum resident set size (KB) = 436452 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.583940 -0:The maximum resident set size (KB) = 430424 +0:The total amount of wall time = 96.055227 +0:The maximum resident set size (KB) = 430372 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.928317 -0:The maximum resident set size (KB) = 1214136 +0:The total amount of wall time = 97.139260 +0:The maximum resident set size (KB) = 1214212 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 391.567360 -0:The maximum resident set size (KB) = 602436 +0:The total amount of wall time = 382.632533 +0:The maximum resident set size (KB) = 601940 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 385.965260 -0:The maximum resident set size (KB) = 604472 +0:The total amount of wall time = 383.891682 +0:The maximum resident set size (KB) = 604444 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.154946 -0:The maximum resident set size (KB) = 173216 +0:The total amount of wall time = 148.660770 +0:The maximum resident set size (KB) = 173388 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.448987 -0:The maximum resident set size (KB) = 664164 +0:The total amount of wall time = 682.657429 +0:The maximum resident set size (KB) = 664328 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 347.428302 -0:The maximum resident set size (KB) = 662736 +0:The total amount of wall time = 345.146723 +0:The maximum resident set size (KB) = 662860 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 624.791047 -0:The maximum resident set size (KB) = 710020 +0:The total amount of wall time = 626.440252 +0:The maximum resident set size (KB) = 710044 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 320.003874 -0:The maximum resident set size (KB) = 702624 +0:The total amount of wall time = 317.294915 +0:The maximum resident set size (KB) = 702652 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 346.970985 -0:The maximum resident set size (KB) = 662244 +0:The total amount of wall time = 347.552823 +0:The maximum resident set size (KB) = 662356 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.298682 -0:The maximum resident set size (KB) = 502652 +0:The total amount of wall time = 513.952264 +0:The maximum resident set size (KB) = 502284 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 175.241115 -0:The maximum resident set size (KB) = 500104 +0:The total amount of wall time = 177.350305 +0:The maximum resident set size (KB) = 500292 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.382441 -0:The maximum resident set size (KB) = 683928 +0:The total amount of wall time = 405.774824 +0:The maximum resident set size (KB) = 685020 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.980749 -0:The maximum resident set size (KB) = 681900 +0:The total amount of wall time = 147.671093 +0:The maximum resident set size (KB) = 682112 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.798474 -0:The maximum resident set size (KB) = 678864 +0:The total amount of wall time = 144.457977 +0:The maximum resident set size (KB) = 679084 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 151.983710 -0:The maximum resident set size (KB) = 701336 +0:The total amount of wall time = 151.344667 +0:The maximum resident set size (KB) = 702532 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 494.214630 -0:The maximum resident set size (KB) = 3143964 +0:The total amount of wall time = 484.149410 +0:The maximum resident set size (KB) = 3141696 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 245.982912 -0:The maximum resident set size (KB) = 1225392 +0:The total amount of wall time = 243.047653 +0:The maximum resident set size (KB) = 1225416 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.570895 -0:The maximum resident set size (KB) = 3160852 +0:The total amount of wall time = 272.798041 +0:The maximum resident set size (KB) = 3162676 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1566-gnu/jongkim/FV3_RT/rt_13705/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71876/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 179.805008 -0:The maximum resident set size (KB) = 682000 +0:The total amount of wall time = 179.345198 +0:The maximum resident set size (KB) = 683104 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 23 18:17:35 MST 2023 -Elapsed time: 00h:31m:02s. Have a nice day! +Wed Jan 25 15:45:07 MST 2023 +Elapsed time: 00h:30m:55s. Have a nice day! From 627d6a47c50a2b2716fb325a6c9fbf9c6dda4485 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 25 Jan 2023 19:38:19 -0600 Subject: [PATCH 07/11] [AutoRT] orion.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 978 +++++++++++++------------- 1 file changed, 489 insertions(+), 489 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 0e320d9539..4c44ab4700 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,37 +1,37 @@ -Mon Jan 23 18:46:52 CST 2023 +Wed Jan 25 18:17:00 CST 2023 Start Regression test -Compile 001 elapsed time 799 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 807 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 687 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 307 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 215 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 666 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 757 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 771 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 660 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 267 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 265 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 245 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 781 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 691 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 233 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 022 elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 023 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 584 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 543 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 755 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 605 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 192 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 022 elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 023 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 583 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 593 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 538 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,14 +96,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.464333 - 0: The maximum resident set size (KB) = 3135884 + 0: The total amount of wall time = 306.220384 + 0: The maximum resident set size (KB) = 3138456 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_gfsv17 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -167,14 +167,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.211449 - 0: The maximum resident set size (KB) = 1721052 + 0: The total amount of wall time = 225.256865 + 0: The maximum resident set size (KB) = 1735680 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.989112 - 0: The maximum resident set size (KB) = 3179680 + 0: The total amount of wall time = 346.319358 + 0: The maximum resident set size (KB) = 3178828 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.670784 - 0: The maximum resident set size (KB) = 3048836 + 0: The total amount of wall time = 216.890235 + 0: The maximum resident set size (KB) = 3045080 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -359,14 +359,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.365684 - 0: The maximum resident set size (KB) = 3519336 + 0: The total amount of wall time = 405.448774 + 0: The maximum resident set size (KB) = 3512616 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_esmfthreads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -419,14 +419,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 407.520870 - 0: The maximum resident set size (KB) = 3513644 + 0: The total amount of wall time = 406.139138 + 0: The maximum resident set size (KB) = 3510896 Test 006 cpld_esmfthreads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.081045 - 0: The maximum resident set size (KB) = 3092544 + 0: The total amount of wall time = 344.240875 + 0: The maximum resident set size (KB) = 3168236 Test 007 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -539,14 +539,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.818697 - 0: The maximum resident set size (KB) = 2952172 + 0: The total amount of wall time = 279.543363 + 0: The maximum resident set size (KB) = 3026824 Test 008 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -611,14 +611,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.959146 - 0: The maximum resident set size (KB) = 3181688 + 0: The total amount of wall time = 343.659093 + 0: The maximum resident set size (KB) = 3177376 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -671,14 +671,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 642.475971 - 0: The maximum resident set size (KB) = 3257248 + 0: The total amount of wall time = 648.353743 + 0: The maximum resident set size (KB) = 3253908 Test 010 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -731,14 +731,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 445.756623 - 0: The maximum resident set size (KB) = 3160400 + 0: The total amount of wall time = 501.272508 + 0: The maximum resident set size (KB) = 3158116 Test 011 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_bmark_p8 Checking test 012 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -786,14 +786,14 @@ Checking test 012 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 875.380708 - 0: The maximum resident set size (KB) = 3958156 + 0: The total amount of wall time = 852.807476 + 0: The maximum resident set size (KB) = 4036784 Test 012 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_restart_bmark_p8 Checking test 013 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -841,14 +841,14 @@ Checking test 013 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 528.052446 - 0: The maximum resident set size (KB) = 3954192 + 0: The total amount of wall time = 804.645870 + 0: The maximum resident set size (KB) = 3972888 Test 013 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_noaero_p8 Checking test 014 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.397087 - 0: The maximum resident set size (KB) = 1725168 + 0: The total amount of wall time = 253.078388 + 0: The maximum resident set size (KB) = 1722060 Test 014 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_nowave_noaero_p8 Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -981,14 +981,14 @@ Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.354836 - 0: The maximum resident set size (KB) = 1768188 + 0: The total amount of wall time = 256.669038 + 0: The maximum resident set size (KB) = 1771600 Test 015 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_debug_p8 Checking test 016 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 682.300790 - 0: The maximum resident set size (KB) = 3243116 + 0: The total amount of wall time = 681.258282 + 0: The maximum resident set size (KB) = 3245140 Test 016 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_debug_noaero_p8 Checking test 017 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 017 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 415.648807 - 0: The maximum resident set size (KB) = 1749968 + 0: The total amount of wall time = 419.875263 + 0: The maximum resident set size (KB) = 1746924 Test 017 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_noaero_p8_agrid Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1169,14 +1169,14 @@ Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.711972 - 0: The maximum resident set size (KB) = 1763752 + 0: The total amount of wall time = 264.902755 + 0: The maximum resident set size (KB) = 1761888 Test 018 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_control_c48 Checking test 019 cpld_control_c48 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -1226,14 +1226,14 @@ Checking test 019 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 496.045002 - 0: The maximum resident set size (KB) = 2804328 + 0: The total amount of wall time = 497.442725 + 0: The maximum resident set size (KB) = 2799100 Test 019 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_warmstart_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_warmstart_c48 Checking test 020 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1283,14 +1283,14 @@ Checking test 020 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 140.530311 - 0: The maximum resident set size (KB) = 2802344 + 0: The total amount of wall time = 134.836161 + 0: The maximum resident set size (KB) = 2807852 Test 020 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/cpld_restart_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/cpld_restart_c48 Checking test 021 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1340,14 +1340,14 @@ Checking test 021 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 73.737958 - 0: The maximum resident set size (KB) = 2244156 + 0: The total amount of wall time = 73.797644 + 0: The maximum resident set size (KB) = 2232748 Test 021 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1374,28 +1374,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.387959 - 0: The maximum resident set size (KB) = 577360 + 0: The total amount of wall time = 130.024589 + 0: The maximum resident set size (KB) = 630416 Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.605825 - 0: The maximum resident set size (KB) = 630720 + 0: The total amount of wall time = 126.284217 + 0: The maximum resident set size (KB) = 629700 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1406,14 +1406,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.066539 - 0: The maximum resident set size (KB) = 633444 + 0: The total amount of wall time = 132.499298 + 0: The maximum resident set size (KB) = 631004 Test 024 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1424,14 +1424,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.724034 - 0: The maximum resident set size (KB) = 630348 + 0: The total amount of wall time = 135.343165 + 0: The maximum resident set size (KB) = 633128 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.359191 -0: The maximum resident set size (KB) = 816180 +0: The total amount of wall time = 344.969074 +0: The maximum resident set size (KB) = 802180 Test 026 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.883795 - 0: The maximum resident set size (KB) = 760800 + 0: The total amount of wall time = 530.913913 + 0: The maximum resident set size (KB) = 759904 Test 027 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1506,14 +1506,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 585.396525 - 0: The maximum resident set size (KB) = 1174456 + 0: The total amount of wall time = 600.839217 + 0: The maximum resident set size (KB) = 1171636 Test 028 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 514.031707 - 0: The maximum resident set size (KB) = 1314780 + 0: The total amount of wall time = 519.478286 + 0: The maximum resident set size (KB) = 1313472 Test 029 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1574,28 +1574,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.016162 - 0: The maximum resident set size (KB) = 631856 + 0: The total amount of wall time = 90.058659 + 0: The maximum resident set size (KB) = 636592 Test 030 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.292947 - 0: The maximum resident set size (KB) = 486356 + 0: The total amount of wall time = 46.358470 + 0: The maximum resident set size (KB) = 483216 Test 031 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1606,14 +1606,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.367261 - 0: The maximum resident set size (KB) = 634276 + 0: The total amount of wall time = 79.791091 + 0: The maximum resident set size (KB) = 630352 Test 032 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1628,14 +1628,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.619417 - 0: The maximum resident set size (KB) = 630760 + 0: The total amount of wall time = 134.050383 + 0: The maximum resident set size (KB) = 628864 Test 033 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.841898 - 0: The maximum resident set size (KB) = 627548 + 0: The total amount of wall time = 135.401043 + 0: The maximum resident set size (KB) = 629380 Test 034 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1704,14 +1704,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.081883 - 0: The maximum resident set size (KB) = 1610100 + 0: The total amount of wall time = 167.302292 + 0: The maximum resident set size (KB) = 1598968 Test 035 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_p8_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1730,14 +1730,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.095703 - 0: The maximum resident set size (KB) = 1597104 + 0: The total amount of wall time = 312.725411 + 0: The maximum resident set size (KB) = 1602044 Test 036 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1776,14 +1776,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.548787 - 0: The maximum resident set size (KB) = 858972 + 0: The total amount of wall time = 88.577887 + 0: The maximum resident set size (KB) = 864400 Test 037 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.071478 - 0: The maximum resident set size (KB) = 1531840 + 0: The total amount of wall time = 174.213935 + 0: The maximum resident set size (KB) = 1586704 Test 038 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.925782 - 0: The maximum resident set size (KB) = 1685684 + 0: The total amount of wall time = 181.106856 + 0: The maximum resident set size (KB) = 1681552 Test 039 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_p8_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.254278 - 0: The maximum resident set size (KB) = 1724876 + 0: The total amount of wall time = 199.365780 + 0: The maximum resident set size (KB) = 1729736 Test 040 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/merra2_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/merra2_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1984,14 +1984,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.757616 - 0: The maximum resident set size (KB) = 1605820 + 0: The total amount of wall time = 194.285450 + 0: The maximum resident set size (KB) = 1606392 Test 041 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2002,28 +2002,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.772015 - 0: The maximum resident set size (KB) = 870684 + 0: The total amount of wall time = 297.915959 + 0: The maximum resident set size (KB) = 864752 Test 042 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.887598 - 0: The maximum resident set size (KB) = 860640 + 0: The total amount of wall time = 150.991680 + 0: The maximum resident set size (KB) = 860836 Test 043 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.691312 - 0: The maximum resident set size (KB) = 851084 + 0: The total amount of wall time = 313.167333 + 0: The maximum resident set size (KB) = 855760 Test 044 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2052,14 +2052,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.639426 - 0: The maximum resident set size (KB) = 841852 + 0: The total amount of wall time = 210.087094 + 0: The maximum resident set size (KB) = 841620 Test 045 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2067,28 +2067,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.044337 - 0: The maximum resident set size (KB) = 855148 + 0: The total amount of wall time = 320.457824 + 0: The maximum resident set size (KB) = 857364 Test 046 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 289.742735 - 0: The maximum resident set size (KB) = 852208 + 0: The total amount of wall time = 291.807788 + 0: The maximum resident set size (KB) = 853268 Test 047 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_2dwrtdecomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.892015 - 0: The maximum resident set size (KB) = 861268 + 0: The total amount of wall time = 296.657541 + 0: The maximum resident set size (KB) = 866352 Test 048 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_wofs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2117,14 +2117,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.853131 - 0: The maximum resident set size (KB) = 622052 + 0: The total amount of wall time = 373.420823 + 0: The maximum resident set size (KB) = 620044 Test 049 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2171,14 +2171,14 @@ Checking test 050 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.114569 - 0: The maximum resident set size (KB) = 1053204 + 0: The total amount of wall time = 457.601394 + 0: The maximum resident set size (KB) = 1058324 Test 050 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_rrtmgp Checking test 051 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2225,14 +2225,14 @@ Checking test 051 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.697806 - 0: The maximum resident set size (KB) = 1212276 + 0: The total amount of wall time = 493.139653 + 0: The maximum resident set size (KB) = 1222996 Test 051 rap_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2243,14 +2243,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.297697 - 0: The maximum resident set size (KB) = 1183028 + 0: The total amount of wall time = 329.913113 + 0: The maximum resident set size (KB) = 1177016 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2297,14 +2297,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.797354 - 0: The maximum resident set size (KB) = 1004968 + 0: The total amount of wall time = 482.289608 + 0: The maximum resident set size (KB) = 1001996 Test 053 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2351,14 +2351,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.902150 - 0: The maximum resident set size (KB) = 1129320 + 0: The total amount of wall time = 483.063195 + 0: The maximum resident set size (KB) = 1126036 Test 054 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2397,14 +2397,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.754566 - 0: The maximum resident set size (KB) = 963680 + 0: The total amount of wall time = 232.893762 + 0: The maximum resident set size (KB) = 968488 Test 055 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2451,14 +2451,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.845800 - 0: The maximum resident set size (KB) = 1065108 + 0: The total amount of wall time = 454.172990 + 0: The maximum resident set size (KB) = 1059236 Test 056 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_sfcdiff_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2505,14 +2505,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.889501 - 0: The maximum resident set size (KB) = 1006748 + 0: The total amount of wall time = 478.438233 + 0: The maximum resident set size (KB) = 1007388 Test 057 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_sfcdiff_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2551,14 +2551,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.744274 - 0: The maximum resident set size (KB) = 979408 + 0: The total amount of wall time = 343.030590 + 0: The maximum resident set size (KB) = 986104 Test 058 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2605,14 +2605,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.517932 - 0: The maximum resident set size (KB) = 1056508 + 0: The total amount of wall time = 437.500797 + 0: The maximum resident set size (KB) = 1054884 Test 059 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2659,14 +2659,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.083945 - 0: The maximum resident set size (KB) = 1005492 + 0: The total amount of wall time = 458.394867 + 0: The maximum resident set size (KB) = 1002904 Test 060 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2713,14 +2713,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.802587 - 0: The maximum resident set size (KB) = 1064788 + 0: The total amount of wall time = 452.585506 + 0: The maximum resident set size (KB) = 1132768 Test 061 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.676828 - 0: The maximum resident set size (KB) = 975084 + 0: The total amount of wall time = 329.774910 + 0: The maximum resident set size (KB) = 983736 Test 062 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.095488 - 0: The maximum resident set size (KB) = 1059548 + 0: The total amount of wall time = 592.712161 + 0: The maximum resident set size (KB) = 1058600 Test 063 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2835,14 +2835,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.876152 - 0: The maximum resident set size (KB) = 698716 + 0: The total amount of wall time = 528.343760 + 0: The maximum resident set size (KB) = 692904 Test 064 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 516.716847 - 0: The maximum resident set size (KB) = 696844 + 0: The total amount of wall time = 518.150012 + 0: The maximum resident set size (KB) = 756360 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_hrrr_warm Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2873,14 +2873,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.070240 - 0: The maximum resident set size (KB) = 931268 + 0: The total amount of wall time = 122.426881 + 0: The maximum resident set size (KB) = 932332 Test 066 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2889,14 +2889,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.282678 - 0: The maximum resident set size (KB) = 955400 + 0: The total amount of wall time = 138.588920 + 0: The maximum resident set size (KB) = 958316 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_radar_tten_warm Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.192700 - 0: The maximum resident set size (KB) = 941148 + 0: The total amount of wall time = 122.173107 + 0: The maximum resident set size (KB) = 937316 Test 068 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_hrrr_warm_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_hrrr_warm_2threads Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2921,14 +2921,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 82.674484 - 0: The maximum resident set size (KB) = 840952 + 0: The total amount of wall time = 86.875918 + 0: The maximum resident set size (KB) = 875104 Test 069 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_radar_tten_warm_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_radar_tten_warm_2threads Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2937,14 +2937,14 @@ Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.113305 - 0: The maximum resident set size (KB) = 850044 + 0: The total amount of wall time = 87.471767 + 0: The maximum resident set size (KB) = 884728 Test 070 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2955,14 +2955,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.671973 - 0: The maximum resident set size (KB) = 730268 + 0: The total amount of wall time = 343.367544 + 0: The maximum resident set size (KB) = 729220 Test 071 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2973,14 +2973,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.043973 - 0: The maximum resident set size (KB) = 728472 + 0: The total amount of wall time = 343.787047 + 0: The maximum resident set size (KB) = 729488 Test 072 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2991,54 +2991,54 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.384781 - 0: The maximum resident set size (KB) = 718296 + 0: The total amount of wall time = 188.044931 + 0: The maximum resident set size (KB) = 717340 Test 073 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_wam +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.565676 - 0: The maximum resident set size (KB) = 587024 + 0: The total amount of wall time = 111.736448 + 0: The maximum resident set size (KB) = 641800 Test 074 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 734.776443 - 0: The maximum resident set size (KB) = 955044 + 0: The total amount of wall time = 746.746190 + 0: The maximum resident set size (KB) = 948908 Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 744.411287 - 0: The maximum resident set size (KB) = 960464 + 0: The total amount of wall time = 767.896542 + 0: The maximum resident set size (KB) = 962108 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3065,348 +3065,348 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.131362 - 0: The maximum resident set size (KB) = 744300 + 0: The total amount of wall time = 171.326240 + 0: The maximum resident set size (KB) = 792892 Test 077 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.259891 - 0: The maximum resident set size (KB) = 795440 + 0: The total amount of wall time = 158.477039 + 0: The maximum resident set size (KB) = 795204 Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.565309 - 0: The maximum resident set size (KB) = 800992 + 0: The total amount of wall time = 182.370330 + 0: The maximum resident set size (KB) = 805644 Test 079 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.765416 - 0: The maximum resident set size (KB) = 790840 + 0: The total amount of wall time = 165.311554 + 0: The maximum resident set size (KB) = 795416 Test 080 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 247.524466 - 0: The maximum resident set size (KB) = 841392 + 0: The total amount of wall time = 245.427731 + 0: The maximum resident set size (KB) = 853728 Test 081 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.141536 - 0: The maximum resident set size (KB) = 846732 + 0: The total amount of wall time = 232.293656 + 0: The maximum resident set size (KB) = 850076 Test 082 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.118880 - 0: The maximum resident set size (KB) = 800860 + 0: The total amount of wall time = 162.646780 + 0: The maximum resident set size (KB) = 802548 Test 083 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.652707 - 0: The maximum resident set size (KB) = 857444 + 0: The total amount of wall time = 166.438928 + 0: The maximum resident set size (KB) = 848116 Test 084 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.341753 - 0: The maximum resident set size (KB) = 1619176 + 0: The total amount of wall time = 178.589747 + 0: The maximum resident set size (KB) = 1620644 Test 085 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1015.644415 - 0: The maximum resident set size (KB) = 882776 + 0: The total amount of wall time = 982.235030 + 0: The maximum resident set size (KB) = 879184 Test 086 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.864674 - 0: The maximum resident set size (KB) = 1178572 + 0: The total amount of wall time = 285.121949 + 0: The maximum resident set size (KB) = 1175792 Test 087 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.138099 - 0: The maximum resident set size (KB) = 1176384 + 0: The total amount of wall time = 283.310430 + 0: The maximum resident set size (KB) = 1173908 Test 088 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.563966 - 0: The maximum resident set size (KB) = 1177544 + 0: The total amount of wall time = 286.849953 + 0: The maximum resident set size (KB) = 1186584 Test 089 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.882701 - 0: The maximum resident set size (KB) = 1261852 + 0: The total amount of wall time = 300.659804 + 0: The maximum resident set size (KB) = 1254108 Test 090 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.725437 - 0: The maximum resident set size (KB) = 1176864 + 0: The total amount of wall time = 293.321233 + 0: The maximum resident set size (KB) = 1173480 Test 091 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.282321 - 0: The maximum resident set size (KB) = 1123840 + 0: The total amount of wall time = 290.385179 + 0: The maximum resident set size (KB) = 1180704 Test 092 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.168810 - 0: The maximum resident set size (KB) = 1183664 + 0: The total amount of wall time = 291.990953 + 0: The maximum resident set size (KB) = 1175692 Test 093 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.884289 - 0: The maximum resident set size (KB) = 1178544 + 0: The total amount of wall time = 290.936404 + 0: The maximum resident set size (KB) = 1173124 Test 094 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.951845 - 0: The maximum resident set size (KB) = 1179652 + 0: The total amount of wall time = 286.535987 + 0: The maximum resident set size (KB) = 1173612 Test 095 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.155457 - 0: The maximum resident set size (KB) = 1169256 + 0: The total amount of wall time = 278.582699 + 0: The maximum resident set size (KB) = 1178068 Test 096 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_rrtmgp_debug Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.450843 - 0: The maximum resident set size (KB) = 1304768 + 0: The total amount of wall time = 479.134561 + 0: The maximum resident set size (KB) = 1302212 Test 097 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.151911 - 0: The maximum resident set size (KB) = 1179680 + 0: The total amount of wall time = 285.083554 + 0: The maximum resident set size (KB) = 1175276 Test 098 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.282849 - 0: The maximum resident set size (KB) = 1169284 + 0: The total amount of wall time = 467.284589 + 0: The maximum resident set size (KB) = 1173940 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.630297 - 0: The maximum resident set size (KB) = 1169584 + 0: The total amount of wall time = 286.519965 + 0: The maximum resident set size (KB) = 1167144 Test 100 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 294.476103 - 0: The maximum resident set size (KB) = 479812 + 0: The total amount of wall time = 298.048130 + 0: The maximum resident set size (KB) = 522948 Test 101 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3417,14 +3417,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.882184 - 0: The maximum resident set size (KB) = 1077336 + 0: The total amount of wall time = 313.155855 + 0: The maximum resident set size (KB) = 1085292 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3471,14 +3471,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.893441 - 0: The maximum resident set size (KB) = 996024 + 0: The total amount of wall time = 371.206086 + 0: The maximum resident set size (KB) = 1002608 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.627139 - 0: The maximum resident set size (KB) = 955660 + 0: The total amount of wall time = 193.564398 + 0: The maximum resident set size (KB) = 963800 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.017934 - 0: The maximum resident set size (KB) = 965092 + 0: The total amount of wall time = 389.218399 + 0: The maximum resident set size (KB) = 1026028 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.709292 - 0: The maximum resident set size (KB) = 1011068 + 0: The total amount of wall time = 218.401770 + 0: The maximum resident set size (KB) = 1010240 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.770000 - 0: The maximum resident set size (KB) = 847852 + 0: The total amount of wall time = 214.189940 + 0: The maximum resident set size (KB) = 896260 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_restart_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3733,14 +3733,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.251968 - 0: The maximum resident set size (KB) = 899380 + 0: The total amount of wall time = 286.311887 + 0: The maximum resident set size (KB) = 956436 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3779,14 +3779,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.157227 - 0: The maximum resident set size (KB) = 804584 + 0: The total amount of wall time = 99.215315 + 0: The maximum resident set size (KB) = 861092 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3833,81 +3833,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.595200 - 0: The maximum resident set size (KB) = 970580 + 0: The total amount of wall time = 243.231511 + 0: The maximum resident set size (KB) = 970620 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.566144 - 0: The maximum resident set size (KB) = 1059584 + 0: The total amount of wall time = 283.621556 + 0: The maximum resident set size (KB) = 1053940 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.921710 - 0: The maximum resident set size (KB) = 1070216 + 0: The total amount of wall time = 291.611227 + 0: The maximum resident set size (KB) = 1059552 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/rap_control_dyn64_phy32_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.915800 - 0: The maximum resident set size (KB) = 1105788 + 0: The total amount of wall time = 291.655908 + 0: The maximum resident set size (KB) = 1101924 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 253.953037 - 0: The maximum resident set size (KB) = 1022784 + 0: The total amount of wall time = 258.975496 + 0: The maximum resident set size (KB) = 1027564 Test 114 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 400.783257 - 0: The maximum resident set size (KB) = 1405896 + 0: The total amount of wall time = 394.102490 + 0: The maximum resident set size (KB) = 1391828 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3916,14 +3916,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.105632 - 0: The maximum resident set size (KB) = 1209716 + 0: The total amount of wall time = 358.341185 + 0: The maximum resident set size (KB) = 1212984 Test 116 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3932,14 +3932,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 711.265348 - 0: The maximum resident set size (KB) = 1235800 + 0: The total amount of wall time = 719.053074 + 0: The maximum resident set size (KB) = 1238580 Test 117 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3950,28 +3950,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 822.399279 - 0: The maximum resident set size (KB) = 1248492 + 0: The total amount of wall time = 812.373089 + 0: The maximum resident set size (KB) = 1253624 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.396644 - 0: The maximum resident set size (KB) = 508196 + 0: The total amount of wall time = 361.509998 + 0: The maximum resident set size (KB) = 505476 Test 119 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3980,28 +3980,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.625785 - 0: The maximum resident set size (KB) = 516220 + 0: The total amount of wall time = 411.976590 + 0: The maximum resident set size (KB) = 503300 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 171.959217 - 0: The maximum resident set size (KB) = 294512 + 0: The total amount of wall time = 172.610466 + 0: The maximum resident set size (KB) = 351608 Test 121 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 467.417799 - 0: The maximum resident set size (KB) = 367496 + 0: The total amount of wall time = 472.663484 + 0: The maximum resident set size (KB) = 420996 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,28 +4035,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 226.932642 - 0: The maximum resident set size (KB) = 520464 + 0: The total amount of wall time = 234.607610 + 0: The maximum resident set size (KB) = 514948 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 212.785974 - 0: The maximum resident set size (KB) = 513884 + 0: The total amount of wall time = 213.749744 + 0: The maximum resident set size (KB) = 521016 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4065,28 +4065,28 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 284.235789 + 0: The total amount of wall time = 286.124248 0: The maximum resident set size (KB) = 551760 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.638631 - 0: The maximum resident set size (KB) = 366472 + 0: The total amount of wall time = 69.319982 + 0: The maximum resident set size (KB) = 364392 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4097,14 +4097,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.216341 - 0: The maximum resident set size (KB) = 592920 + 0: The total amount of wall time = 580.612279 + 0: The maximum resident set size (KB) = 647656 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4112,14 +4112,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 348.008619 - 0: The maximum resident set size (KB) = 1162256 + 0: The total amount of wall time = 344.468930 + 0: The maximum resident set size (KB) = 1215468 Test 128 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4127,131 +4127,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 341.044297 - 0: The maximum resident set size (KB) = 1192868 + 0: The total amount of wall time = 344.785543 + 0: The maximum resident set size (KB) = 1197520 Test 129 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 929.472910 - 0: The maximum resident set size (KB) = 1041940 + 0: The total amount of wall time = 935.153801 + 0: The maximum resident set size (KB) = 1040520 Test 130 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.591952 - 0: The maximum resident set size (KB) = 1068940 + 0: The total amount of wall time = 164.630970 + 0: The maximum resident set size (KB) = 1070292 Test 131 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.202881 - 0: The maximum resident set size (KB) = 1017600 + 0: The total amount of wall time = 93.397571 + 0: The maximum resident set size (KB) = 1016920 Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.374802 - 0: The maximum resident set size (KB) = 967428 + 0: The total amount of wall time = 155.323936 + 0: The maximum resident set size (KB) = 949808 Test 133 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.937946 - 0: The maximum resident set size (KB) = 965740 + 0: The total amount of wall time = 160.764733 + 0: The maximum resident set size (KB) = 965388 Test 134 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.801420 - 0: The maximum resident set size (KB) = 967584 + 0: The total amount of wall time = 161.941469 + 0: The maximum resident set size (KB) = 971940 Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.733045 - 0: The maximum resident set size (KB) = 1077532 + 0: The total amount of wall time = 156.210393 + 0: The maximum resident set size (KB) = 1068116 Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.659360 - 0: The maximum resident set size (KB) = 1074684 + 0: The total amount of wall time = 150.973120 + 0: The maximum resident set size (KB) = 1053192 Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.660488 - 0: The maximum resident set size (KB) = 930092 + 0: The total amount of wall time = 161.017447 + 0: The maximum resident set size (KB) = 958124 Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 454.407810 - 0: The maximum resident set size (KB) = 885504 + 0: The total amount of wall time = 522.484426 + 0: The maximum resident set size (KB) = 877268 Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4276,64 +4276,64 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.682307 - 0: The maximum resident set size (KB) = 932404 + 0: The total amount of wall time = 528.265409 + 0: The maximum resident set size (KB) = 935792 Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.296881 - 0: The maximum resident set size (KB) = 1076128 + 0: The total amount of wall time = 169.412731 + 0: The maximum resident set size (KB) = 1073588 Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 193.752635 - 0: The maximum resident set size (KB) = 2369084 + 0: The total amount of wall time = 253.780173 + 0: The maximum resident set size (KB) = 2364136 Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 198.086121 - 0: The maximum resident set size (KB) = 2365992 + 0: The total amount of wall time = 208.619101 + 0: The maximum resident set size (KB) = 2298572 Test 143 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 461.748898 - 0: The maximum resident set size (KB) = 999004 + 0: The total amount of wall time = 483.438974 + 0: The maximum resident set size (KB) = 987868 Test 144 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4342,14 +4342,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.542374 - 0: The maximum resident set size (KB) = 264764 + 0: The total amount of wall time = 7.930198 + 0: The maximum resident set size (KB) = 260836 Test 145 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4358,14 +4358,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 14.561497 - 0: The maximum resident set size (KB) = 262392 + 0: The total amount of wall time = 15.701765 + 0: The maximum resident set size (KB) = 251244 Test 146 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc ............ALT CHECK......OK Comparing sfcf000.tile2.nc ............ALT CHECK......OK @@ -4450,14 +4450,14 @@ Checking test 147 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 202.309089 - 0: The maximum resident set size (KB) = 1616668 + 0: The total amount of wall time = 202.924581 + 0: The maximum resident set size (KB) = 1611356 Test 147 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.389798 - 0: The maximum resident set size (KB) = 660692 + 0: The total amount of wall time = 89.740602 + 0: The maximum resident set size (KB) = 662096 Test 148 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/atmaero_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4552,14 +4552,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.345263 - 0: The maximum resident set size (KB) = 2980544 + 0: The total amount of wall time = 480.238614 + 0: The maximum resident set size (KB) = 2974352 Test 149 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/atmaero_control_p8_rad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4603,14 +4603,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.504958 - 0: The maximum resident set size (KB) = 3047252 + 0: The total amount of wall time = 469.165079 + 0: The maximum resident set size (KB) = 3051340 Test 150 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4654,14 +4654,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.826628 - 0: The maximum resident set size (KB) = 3051872 + 0: The total amount of wall time = 472.729828 + 0: The maximum resident set size (KB) = 3051208 Test 151 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_atmaq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4677,14 +4677,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 589.783143 - 0: The maximum resident set size (KB) = 1566148 + 0: The total amount of wall time = 588.786705 + 0: The maximum resident set size (KB) = 1556304 Test 152 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_249193/regional_atmaq_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_198454/regional_atmaq_debug Checking test 153 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -4698,12 +4698,12 @@ Checking test 153 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 1307.377903 - 0: The maximum resident set size (KB) = 1518432 + 0: The total amount of wall time = 1303.014343 + 0: The maximum resident set size (KB) = 1515232 Test 153 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 23 20:06:53 CST 2023 -Elapsed time: 01h:20m:01s. Have a nice day! +Wed Jan 25 19:38:16 CST 2023 +Elapsed time: 01h:21m:16s. Have a nice day! From 14c94487d926d40e806aa68faa145a71aa8efc10 Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Wed, 25 Jan 2023 19:26:18 -0700 Subject: [PATCH 08/11] [AutoRT] cheyenne.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 986 +++++++++++------------ 1 file changed, 487 insertions(+), 499 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 30e4ef780c..3a0a3fe03c 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,37 +1,37 @@ -Mon Jan 23 17:47:06 MST 2023 +Wed Jan 25 18:14:16 MST 2023 Start Regression test -Compile 001 elapsed time 1406 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1437 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1393 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 454 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 424 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1094 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1123 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1046 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1053 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 970 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 396 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 845 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 252 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1130 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 1704 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 1132 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 022 elapsed time 216 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 023 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 978 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 994 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 916 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 896 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 284 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1514 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1470 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1354 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 412 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1095 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1032 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 933 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 248 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 837 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1114 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 1120 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 022 elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 023 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 980 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 997 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 915 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 877 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 283 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,14 +96,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.605198 -0:The maximum resident set size (KB) = 2704052 +0:The total amount of wall time = 317.002009 +0:The maximum resident set size (KB) = 2703780 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -167,14 +167,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 286.035356 -0:The maximum resident set size (KB) = 1441648 +0:The total amount of wall time = 282.156547 +0:The maximum resident set size (KB) = 1441744 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 311.110569 -0:The maximum resident set size (KB) = 2720092 +0:The total amount of wall time = 320.718449 +0:The maximum resident set size (KB) = 2719812 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 187.828465 -0:The maximum resident set size (KB) = 2581000 +0:The total amount of wall time = 184.974122 +0:The maximum resident set size (KB) = 2580884 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -359,14 +359,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 259.530809 -0:The maximum resident set size (KB) = 3179880 +0:The total amount of wall time = 252.677649 +0:The maximum resident set size (KB) = 3179816 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_esmfthreads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -419,14 +419,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 259.819234 -0:The maximum resident set size (KB) = 2887036 +0:The total amount of wall time = 256.021710 +0:The maximum resident set size (KB) = 2886656 Test 006 cpld_esmfthreads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 328.792162 -0:The maximum resident set size (KB) = 2723984 +0:The total amount of wall time = 312.305804 +0:The maximum resident set size (KB) = 2724172 Test 007 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -539,14 +539,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 281.431793 -0:The maximum resident set size (KB) = 2684764 +0:The total amount of wall time = 269.072002 +0:The maximum resident set size (KB) = 2685080 Test 008 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -611,14 +611,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.545274 -0:The maximum resident set size (KB) = 2719816 +0:The total amount of wall time = 319.795956 +0:The maximum resident set size (KB) = 2719892 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -671,14 +671,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 640.349663 -0:The maximum resident set size (KB) = 3352224 +0:The total amount of wall time = 625.232935 +0:The maximum resident set size (KB) = 3352868 Test 010 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -731,14 +731,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 398.046385 -0:The maximum resident set size (KB) = 3275744 +0:The total amount of wall time = 400.905629 +0:The maximum resident set size (KB) = 3275704 Test 011 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -802,14 +802,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.758720 -0:The maximum resident set size (KB) = 1440440 +0:The total amount of wall time = 282.282631 +0:The maximum resident set size (KB) = 1440584 Test 012 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -871,14 +871,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.763189 -0:The maximum resident set size (KB) = 1456156 +0:The total amount of wall time = 181.979127 +0:The maximum resident set size (KB) = 1456700 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -931,14 +931,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 471.092788 -0:The maximum resident set size (KB) = 2791612 +0:The total amount of wall time = 472.380272 +0:The maximum resident set size (KB) = 2791764 Test 014 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -990,14 +990,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.505749 -0:The maximum resident set size (KB) = 1463912 +0:The total amount of wall time = 348.963525 +0:The maximum resident set size (KB) = 1463920 Test 015 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 252.266204 -0:The maximum resident set size (KB) = 1459468 +0:The total amount of wall time = 249.296636 +0:The maximum resident set size (KB) = 1459504 Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -1116,14 +1116,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 607.525075 -0:The maximum resident set size (KB) = 2584220 +0:The total amount of wall time = 603.431855 +0:The maximum resident set size (KB) = 2583464 Test 017 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1173,14 +1173,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 164.738827 -0:The maximum resident set size (KB) = 2600096 +0:The total amount of wall time = 160.160736 +0:The maximum resident set size (KB) = 2600232 Test 018 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1230,14 +1230,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.571386 -0:The maximum resident set size (KB) = 2017404 +0:The total amount of wall time = 83.487439 +0:The maximum resident set size (KB) = 2017592 Test 019 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1264,28 +1264,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.315377 -0:The maximum resident set size (KB) = 456452 +0:The total amount of wall time = 142.103871 +0:The maximum resident set size (KB) = 456476 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 140.137714 -0:The maximum resident set size (KB) = 456340 +0:The total amount of wall time = 139.535597 +0:The maximum resident set size (KB) = 456388 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1296,32 +1296,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.157188 -0:The maximum resident set size (KB) = 456732 +0:The total amount of wall time = 141.827733 +0:The maximum resident set size (KB) = 456648 Test 022 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.079978 -0:The maximum resident set size (KB) = 456596 +0:The total amount of wall time = 145.018574 +0:The maximum resident set size (KB) = 456556 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 446.904032 -0:The maximum resident set size (KB) = 628464 +0:The total amount of wall time = 444.924184 +0:The maximum resident set size (KB) = 628472 Test 024 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,14 +1378,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.407750 -0:The maximum resident set size (KB) = 560616 +0:The total amount of wall time = 597.488443 +0:The maximum resident set size (KB) = 560364 Test 025 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 600.245174 -0:The maximum resident set size (KB) = 857988 +0:The total amount of wall time = 597.519568 +0:The maximum resident set size (KB) = 857504 Test 026 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1446,14 +1446,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.823211 -0:The maximum resident set size (KB) = 992756 +0:The total amount of wall time = 521.043448 +0:The maximum resident set size (KB) = 993436 Test 027 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1464,28 +1464,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.371659 -0:The maximum resident set size (KB) = 458512 +0:The total amount of wall time = 96.597773 +0:The maximum resident set size (KB) = 458664 Test 028 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.449494 -0:The maximum resident set size (KB) = 226124 +0:The total amount of wall time = 51.893298 +0:The maximum resident set size (KB) = 225964 Test 029 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.132302 -0:The maximum resident set size (KB) = 460720 +0:The total amount of wall time = 89.516662 +0:The maximum resident set size (KB) = 460728 Test 030 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1518,14 +1518,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.352445 -0:The maximum resident set size (KB) = 456588 +0:The total amount of wall time = 147.429990 +0:The maximum resident set size (KB) = 456536 Test 031 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1540,14 +1540,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.238568 -0:The maximum resident set size (KB) = 456480 +0:The total amount of wall time = 146.606201 +0:The maximum resident set size (KB) = 456684 Test 032 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.647961 -0:The maximum resident set size (KB) = 1426348 +0:The total amount of wall time = 179.421953 +0:The maximum resident set size (KB) = 1426420 Test 033 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 339.008417 -0:The maximum resident set size (KB) = 1426584 +0:The total amount of wall time = 333.335020 +0:The maximum resident set size (KB) = 1426640 Test 034 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1666,14 +1666,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.289206 -0:The maximum resident set size (KB) = 583344 +0:The total amount of wall time = 94.346531 +0:The maximum resident set size (KB) = 583368 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1716,14 +1716,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.757776 -0:The maximum resident set size (KB) = 1420304 +0:The total amount of wall time = 185.914848 +0:The maximum resident set size (KB) = 1420340 Test 036 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1766,14 +1766,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 176.513992 -0:The maximum resident set size (KB) = 1508376 +0:The total amount of wall time = 176.486682 +0:The maximum resident set size (KB) = 1508492 Test 037 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 250.768685 +0:The total amount of wall time = 247.286971 0:The maximum resident set size (KB) = 1542236 Test 038 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.600605 -0:The maximum resident set size (KB) = 1433060 +0:The total amount of wall time = 206.869892 +0:The maximum resident set size (KB) = 1433048 Test 039 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1892,28 +1892,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.062865 -0:The maximum resident set size (KB) = 608180 +0:The total amount of wall time = 337.370446 +0:The maximum resident set size (KB) = 608208 Test 040 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 172.892850 -0:The maximum resident set size (KB) = 594616 +0:The total amount of wall time = 171.610542 +0:The maximum resident set size (KB) = 594644 Test 041 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1924,14 +1924,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.157437 -0:The maximum resident set size (KB) = 598676 +0:The total amount of wall time = 353.670263 +0:The maximum resident set size (KB) = 598468 Test 042 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1942,14 +1942,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.735889 -0:The maximum resident set size (KB) = 606480 +0:The total amount of wall time = 205.151704 +0:The maximum resident set size (KB) = 606280 Test 043 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1957,28 +1957,28 @@ Checking test 044 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 365.149498 -0:The maximum resident set size (KB) = 601216 +0:The total amount of wall time = 362.413523 +0:The maximum resident set size (KB) = 601180 Test 044 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_netcdf_parallel Checking test 045 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 337.428535 -0:The maximum resident set size (KB) = 593576 +0:The total amount of wall time = 333.435507 +0:The maximum resident set size (KB) = 593688 Test 045 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.758584 -0:The maximum resident set size (KB) = 608212 +0:The total amount of wall time = 340.192112 +0:The maximum resident set size (KB) = 608228 Test 046 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2007,14 +2007,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.785091 -0:The maximum resident set size (KB) = 273912 +0:The total amount of wall time = 424.835129 +0:The maximum resident set size (KB) = 273764 Test 047 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2061,14 +2061,14 @@ Checking test 048 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.548768 -0:The maximum resident set size (KB) = 830156 +0:The total amount of wall time = 477.025880 +0:The maximum resident set size (KB) = 830092 Test 048 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_rrtmgp Checking test 049 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2115,14 +2115,14 @@ Checking test 049 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 538.362028 -0:The maximum resident set size (KB) = 953672 +0:The total amount of wall time = 535.411891 +0:The maximum resident set size (KB) = 953588 Test 049 rap_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2133,14 +2133,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 325.592135 -0:The maximum resident set size (KB) = 951588 +0:The total amount of wall time = 326.000369 +0:The maximum resident set size (KB) = 952420 Test 050 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.158757 -0:The maximum resident set size (KB) = 826196 +0:The total amount of wall time = 501.032156 +0:The maximum resident set size (KB) = 826100 Test 051 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 468.318175 -0:The maximum resident set size (KB) = 896400 +0:The total amount of wall time = 464.935352 +0:The maximum resident set size (KB) = 895828 Test 052 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.913778 -0:The maximum resident set size (KB) = 573688 +0:The total amount of wall time = 240.650838 +0:The maximum resident set size (KB) = 573816 Test 053 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 472.255909 -0:The maximum resident set size (KB) = 826672 +0:The total amount of wall time = 468.006986 +0:The maximum resident set size (KB) = 826460 Test 054 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2395,14 +2395,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.632804 -0:The maximum resident set size (KB) = 825992 +0:The total amount of wall time = 495.051989 +0:The maximum resident set size (KB) = 826028 Test 055 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2441,14 +2441,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.962373 -0:The maximum resident set size (KB) = 573052 +0:The total amount of wall time = 348.853279 +0:The maximum resident set size (KB) = 573180 Test 056 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2495,14 +2495,14 @@ Checking test 057 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 456.514956 -0:The maximum resident set size (KB) = 824836 +0:The total amount of wall time = 455.128809 +0:The maximum resident set size (KB) = 824956 Test 057 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2549,14 +2549,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.512955 -0:The maximum resident set size (KB) = 824040 +0:The total amount of wall time = 471.564528 +0:The maximum resident set size (KB) = 823912 Test 058 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2603,14 +2603,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 434.913261 -0:The maximum resident set size (KB) = 891264 +0:The total amount of wall time = 427.860889 +0:The maximum resident set size (KB) = 891364 Test 059 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2649,14 +2649,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 345.422093 -0:The maximum resident set size (KB) = 568624 +0:The total amount of wall time = 344.137905 +0:The maximum resident set size (KB) = 569008 Test 060 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2703,14 +2703,14 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 466.334299 -0:The maximum resident set size (KB) = 823312 +0:The total amount of wall time = 465.951858 +0:The maximum resident set size (KB) = 823172 Test 061 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2725,14 +2725,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 575.350847 -0:The maximum resident set size (KB) = 511568 +0:The total amount of wall time = 572.589245 +0:The maximum resident set size (KB) = 511436 Test 062 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2747,14 +2747,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 554.961455 -0:The maximum resident set size (KB) = 507224 +0:The total amount of wall time = 555.996892 +0:The maximum resident set size (KB) = 506624 Test 063 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2763,14 +2763,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.327594 -0:The maximum resident set size (KB) = 641116 +0:The total amount of wall time = 126.725636 +0:The maximum resident set size (KB) = 641448 Test 064 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2779,14 +2779,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.146420 -0:The maximum resident set size (KB) = 656296 +0:The total amount of wall time = 143.849125 +0:The maximum resident set size (KB) = 656324 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2795,14 +2795,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.840191 -0:The maximum resident set size (KB) = 644348 +0:The total amount of wall time = 128.837730 +0:The maximum resident set size (KB) = 644216 Test 066 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2811,14 +2811,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.839214 -0:The maximum resident set size (KB) = 659872 +0:The total amount of wall time = 81.051844 +0:The maximum resident set size (KB) = 659808 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.858254 -0:The maximum resident set size (KB) = 662468 +0:The total amount of wall time = 81.981699 +0:The maximum resident set size (KB) = 662564 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2845,14 +2845,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.619453 +0:The total amount of wall time = 396.641914 0:The maximum resident set size (KB) = 532504 Test 069 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2863,14 +2863,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.476494 +0:The total amount of wall time = 392.253960 0:The maximum resident set size (KB) = 531720 Test 070 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2881,54 +2881,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.243622 -0:The maximum resident set size (KB) = 490976 +0:The total amount of wall time = 205.974208 +0:The maximum resident set size (KB) = 490948 Test 071 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.099886 -0:The maximum resident set size (KB) = 207700 +0:The total amount of wall time = 129.010112 +0:The maximum resident set size (KB) = 207812 Test 072 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.142478 -0:The maximum resident set size (KB) = 670064 +0:The total amount of wall time = 756.022394 +0:The maximum resident set size (KB) = 670172 Test 073 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.368558 -0:The maximum resident set size (KB) = 673528 +0:The total amount of wall time = 756.168655 +0:The maximum resident set size (KB) = 673420 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2955,348 +2955,348 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.375161 -0:The maximum resident set size (KB) = 624920 +0:The total amount of wall time = 175.423439 +0:The maximum resident set size (KB) = 624972 Test 075 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 163.427427 -0:The maximum resident set size (KB) = 624928 +0:The total amount of wall time = 161.933234 +0:The maximum resident set size (KB) = 624984 Test 076 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.058237 -0:The maximum resident set size (KB) = 628700 +0:The total amount of wall time = 181.234076 +0:The maximum resident set size (KB) = 628580 Test 077 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.616081 -0:The maximum resident set size (KB) = 629212 +0:The total amount of wall time = 163.275421 +0:The maximum resident set size (KB) = 629208 Test 078 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.802360 -0:The maximum resident set size (KB) = 673952 +0:The total amount of wall time = 256.436796 +0:The maximum resident set size (KB) = 674008 Test 079 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 251.301085 -0:The maximum resident set size (KB) = 674928 +0:The total amount of wall time = 251.820251 +0:The maximum resident set size (KB) = 674948 Test 080 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.295301 -0:The maximum resident set size (KB) = 636088 +0:The total amount of wall time = 165.337528 +0:The maximum resident set size (KB) = 636260 Test 081 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.996490 -0:The maximum resident set size (KB) = 681600 +0:The total amount of wall time = 167.305720 +0:The maximum resident set size (KB) = 681384 Test 082 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.766432 -0:The maximum resident set size (KB) = 1447868 +0:The total amount of wall time = 182.870049 +0:The maximum resident set size (KB) = 1447844 Test 083 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1034.964799 -0:The maximum resident set size (KB) = 625832 +0:The total amount of wall time = 1033.526670 +0:The maximum resident set size (KB) = 625876 Test 084 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.836278 -0:The maximum resident set size (KB) = 993300 +0:The total amount of wall time = 292.196879 +0:The maximum resident set size (KB) = 993372 Test 085 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.432471 -0:The maximum resident set size (KB) = 992388 +0:The total amount of wall time = 289.035978 +0:The maximum resident set size (KB) = 992872 Test 086 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.492485 -0:The maximum resident set size (KB) = 993516 +0:The total amount of wall time = 300.641203 +0:The maximum resident set size (KB) = 993476 Test 087 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.314220 -0:The maximum resident set size (KB) = 1077504 +0:The total amount of wall time = 307.646359 +0:The maximum resident set size (KB) = 1077556 Test 088 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.603279 -0:The maximum resident set size (KB) = 992728 +0:The total amount of wall time = 299.061233 +0:The maximum resident set size (KB) = 992168 Test 089 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.443923 -0:The maximum resident set size (KB) = 994204 +0:The total amount of wall time = 298.680705 +0:The maximum resident set size (KB) = 994208 Test 090 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.424419 -0:The maximum resident set size (KB) = 994160 +0:The total amount of wall time = 295.846692 +0:The maximum resident set size (KB) = 994080 Test 091 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.837559 -0:The maximum resident set size (KB) = 993468 +0:The total amount of wall time = 293.882049 +0:The maximum resident set size (KB) = 993392 Test 092 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.155303 -0:The maximum resident set size (KB) = 993336 +0:The total amount of wall time = 293.770798 +0:The maximum resident set size (KB) = 993364 Test 093 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.477580 -0:The maximum resident set size (KB) = 993336 +0:The total amount of wall time = 286.849246 +0:The maximum resident set size (KB) = 993276 Test 094 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_rrtmgp_debug Checking test 095 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 491.678359 -0:The maximum resident set size (KB) = 1122624 +0:The total amount of wall time = 490.154040 +0:The maximum resident set size (KB) = 1122712 Test 095 rap_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_sfcdiff_debug Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.239773 -0:The maximum resident set size (KB) = 994596 +0:The total amount of wall time = 293.291557 +0:The maximum resident set size (KB) = 994584 Test 096 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 481.653049 -0:The maximum resident set size (KB) = 992564 +0:The total amount of wall time = 477.880413 +0:The maximum resident set size (KB) = 992616 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rrfs_v1beta_debug Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.003184 -0:The maximum resident set size (KB) = 989896 +0:The total amount of wall time = 289.584577 +0:The maximum resident set size (KB) = 989804 Test 098 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.966781 -0:The maximum resident set size (KB) = 241460 +0:The total amount of wall time = 296.627961 +0:The maximum resident set size (KB) = 241440 Test 099 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3307,14 +3307,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 303.284718 -0:The maximum resident set size (KB) = 850952 +0:The total amount of wall time = 300.327028 +0:The maximum resident set size (KB) = 850808 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3361,14 +3361,14 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.905221 -0:The maximum resident set size (KB) = 710488 +0:The total amount of wall time = 385.283595 +0:The maximum resident set size (KB) = 710632 Test 101 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3415,14 +3415,14 @@ Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 204.871431 -0:The maximum resident set size (KB) = 709052 +0:The total amount of wall time = 200.280372 +0:The maximum resident set size (KB) = 709176 Test 102 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3469,14 +3469,14 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 376.831115 -0:The maximum resident set size (KB) = 760644 +0:The total amount of wall time = 373.320067 +0:The maximum resident set size (KB) = 760660 Test 103 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 200.980672 -0:The maximum resident set size (KB) = 762748 +0:The total amount of wall time = 200.591598 +0:The maximum resident set size (KB) = 762880 Test 104 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3577,14 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 215.581741 -0:The maximum resident set size (KB) = 708108 +0:The total amount of wall time = 214.348172 +0:The maximum resident set size (KB) = 708228 Test 105 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3623,14 +3623,14 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 291.998656 -0:The maximum resident set size (KB) = 547456 +0:The total amount of wall time = 290.041251 +0:The maximum resident set size (KB) = 547956 Test 106 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3669,14 +3669,14 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 105.176824 -0:The maximum resident set size (KB) = 543740 +0:The total amount of wall time = 104.718515 +0:The maximum resident set size (KB) = 543808 Test 107 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3723,81 +3723,81 @@ Checking test 108 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 268.599426 -0:The maximum resident set size (KB) = 731860 +0:The total amount of wall time = 267.506059 +0:The maximum resident set size (KB) = 731932 Test 108 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control_debug_dyn32_phy32 Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.747342 -0:The maximum resident set size (KB) = 879844 +0:The total amount of wall time = 289.373825 +0:The maximum resident set size (KB) = 879888 Test 109 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hrrr_control_debug_dyn32_phy32 Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.547337 -0:The maximum resident set size (KB) = 878660 +0:The total amount of wall time = 285.560657 +0:The maximum resident set size (KB) = 878664 Test 110 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/rap_control_dyn64_phy32_debug Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 293.784083 -0:The maximum resident set size (KB) = 896724 +0:The total amount of wall time = 292.827326 +0:The maximum resident set size (KB) = 896728 Test 111 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 250.233591 -0:The maximum resident set size (KB) = 713260 +0:The total amount of wall time = 247.525256 +0:The maximum resident set size (KB) = 713268 Test 112 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 284.533101 -0:The maximum resident set size (KB) = 1074364 +0:The total amount of wall time = 277.946939 +0:The maximum resident set size (KB) = 1075664 Test 113 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3806,14 +3806,14 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 444.373196 -0:The maximum resident set size (KB) = 721020 +0:The total amount of wall time = 442.681891 +0:The maximum resident set size (KB) = 720928 Test 114 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3822,14 +3822,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1092.652934 -0:The maximum resident set size (KB) = 752512 +0:The total amount of wall time = 1057.918317 +0:The maximum resident set size (KB) = 751996 Test 115 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3840,28 +3840,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1124.083771 -0:The maximum resident set size (KB) = 770072 +0:The total amount of wall time = 1144.051633 +0:The maximum resident set size (KB) = 770412 Test 116 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_1nest_atm Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.333841 -0:The maximum resident set size (KB) = 287868 +0:The total amount of wall time = 374.505881 +0:The maximum resident set size (KB) = 287760 Test 117 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3870,28 +3870,28 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.039724 -0:The maximum resident set size (KB) = 302920 +0:The total amount of wall time = 427.111086 +0:The maximum resident set size (KB) = 303104 Test 118 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_global_1nest_atm Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 169.594165 -0:The maximum resident set size (KB) = 205092 +0:The total amount of wall time = 171.407575 +0:The maximum resident set size (KB) = 205352 Test 119 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 488.776214 -0:The maximum resident set size (KB) = 294824 +0:The total amount of wall time = 485.823245 +0:The maximum resident set size (KB) = 292764 Test 120 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,28 +3925,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.202274 -0:The maximum resident set size (KB) = 306136 +0:The total amount of wall time = 238.777915 +0:The maximum resident set size (KB) = 306080 Test 121 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_storm_following_1nest_atm Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 226.965322 -0:The maximum resident set size (KB) = 305496 +0:The total amount of wall time = 225.617280 +0:The maximum resident set size (KB) = 305228 Test 122 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3955,28 +3955,28 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 280.464632 -0:The maximum resident set size (KB) = 351124 +0:The total amount of wall time = 276.306600 +0:The maximum resident set size (KB) = 350760 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_global_storm_following_1nest_atm Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 65.984999 -0:The maximum resident set size (KB) = 219924 +0:The total amount of wall time = 65.954148 +0:The maximum resident set size (KB) = 219944 Test 124 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3987,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 783.917429 -0:The maximum resident set size (KB) = 413248 +0:The total amount of wall time = 763.993166 +0:The maximum resident set size (KB) = 414268 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4002,14 +4002,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 381.492614 -0:The maximum resident set size (KB) = 738692 +0:The total amount of wall time = 371.266025 +0:The maximum resident set size (KB) = 738476 Test 126 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4017,131 +4017,131 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 382.055131 -0:The maximum resident set size (KB) = 718260 +0:The total amount of wall time = 380.967943 +0:The maximum resident set size (KB) = 718052 Test 127 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1268.417403 -0:The maximum resident set size (KB) = 891392 +0:The total amount of wall time = 1276.925906 +0:The maximum resident set size (KB) = 891356 Test 128 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.694098 -0:The maximum resident set size (KB) = 731740 +0:The total amount of wall time = 166.387339 +0:The maximum resident set size (KB) = 720292 Test 129 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.580521 -0:The maximum resident set size (KB) = 719544 +0:The total amount of wall time = 101.368178 +0:The maximum resident set size (KB) = 708396 Test 130 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.911236 -0:The maximum resident set size (KB) = 610936 +0:The total amount of wall time = 161.239811 +0:The maximum resident set size (KB) = 610916 Test 131 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.285043 -0:The maximum resident set size (KB) = 610904 +0:The total amount of wall time = 165.469568 +0:The maximum resident set size (KB) = 610968 Test 132 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.776440 -0:The maximum resident set size (KB) = 610912 +0:The total amount of wall time = 164.571000 +0:The maximum resident set size (KB) = 610932 Test 133 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.884834 -0:The maximum resident set size (KB) = 720268 +0:The total amount of wall time = 168.453058 +0:The maximum resident set size (KB) = 731380 Test 134 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.100241 -0:The maximum resident set size (KB) = 731384 +0:The total amount of wall time = 162.892983 +0:The maximum resident set size (KB) = 720768 Test 135 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.928275 -0:The maximum resident set size (KB) = 610896 +0:The total amount of wall time = 161.843397 +0:The maximum resident set size (KB) = 611104 Test 136 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 425.314700 -0:The maximum resident set size (KB) = 518184 +0:The total amount of wall time = 421.268456 +0:The maximum resident set size (KB) = 518136 Test 137 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4166,64 +4166,64 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 430.145848 -0:The maximum resident set size (KB) = 498224 +0:The total amount of wall time = 421.427548 +0:The maximum resident set size (KB) = 498744 Test 138 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.104062 -0:The maximum resident set size (KB) = 731468 +0:The total amount of wall time = 167.912198 +0:The maximum resident set size (KB) = 720816 Test 139 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 257.066835 -0:The maximum resident set size (KB) = 1945664 +0:The total amount of wall time = 255.333264 +0:The maximum resident set size (KB) = 1945680 Test 140 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 255.819177 -0:The maximum resident set size (KB) = 1945500 +0:The total amount of wall time = 254.867176 +0:The maximum resident set size (KB) = 1944912 Test 141 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 460.563158 -0:The maximum resident set size (KB) = 721564 +0:The total amount of wall time = 459.704482 +0:The maximum resident set size (KB) = 710148 Test 142 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4232,14 +4232,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 11.219908 -0:The maximum resident set size (KB) = 220408 +0:The total amount of wall time = 10.954551 +0:The maximum resident set size (KB) = 212224 Test 143 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4248,14 +4248,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 16.159945 -0:The maximum resident set size (KB) = 212180 +0:The total amount of wall time = 15.723488 +0:The maximum resident set size (KB) = 212236 Test 144 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc ............ALT CHECK......OK Comparing sfcf000.tile2.nc ............ALT CHECK......OK @@ -4340,14 +4340,14 @@ Checking test 145 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -0:The total amount of wall time = 234.464084 -0:The maximum resident set size (KB) = 1466260 +0:The total amount of wall time = 232.478157 +0:The maximum resident set size (KB) = 1466268 Test 145 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4391,14 +4391,14 @@ Checking test 146 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.151730 -0:The maximum resident set size (KB) = 481768 +0:The total amount of wall time = 99.069539 +0:The maximum resident set size (KB) = 482016 Test 146 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4442,14 +4442,14 @@ Checking test 147 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.194759 -0:The maximum resident set size (KB) = 2706748 +0:The total amount of wall time = 248.584751 +0:The maximum resident set size (KB) = 2706736 Test 147 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4493,14 +4493,14 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.996805 -0:The maximum resident set size (KB) = 2761840 +0:The total amount of wall time = 305.245905 +0:The maximum resident set size (KB) = 2761904 Test 148 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4544,14 +4544,14 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.934820 -0:The maximum resident set size (KB) = 2767348 +0:The total amount of wall time = 308.071736 +0:The maximum resident set size (KB) = 2767328 Test 149 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_24725/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4567,27 +4567,15 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -0:The total amount of wall time = 1021.066225 -0:The maximum resident set size (KB) = 1143264 +0:The total amount of wall time = 971.222229 +0:The maximum resident set size (KB) = 1143432 Test 150 regional_atmaq PASS -Test 151 regional_atmaq_debug FAIL - -FAILED TESTS: -Test regional_atmaq_debug 151 failed in run_test failed - -REGRESSION TEST FAILED -Mon Jan 23 19:30:17 MST 2023 -Elapsed time: 01h:43m:11s. Have a nice day! -Tue Jan 24 06:47:27 MST 2023 -Start Regression test - -Compile 001 elapsed time 273 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq_debug -working dir = /glade/scratch/jongkim/rt-1566-intel/jongkim/FV3_RT/rt_28434/regional_atmaq_debug -Checking test 001 regional_atmaq_debug results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_57225/regional_atmaq_debug +Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -4600,12 +4588,12 @@ Checking test 001 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -0:The total amount of wall time = 1792.081897 -0:The maximum resident set size (KB) = 1183384 +0:The total amount of wall time = 1803.138964 +0:The maximum resident set size (KB) = 1183344 -Test 001 regional_atmaq_debug PASS +Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 24 07:25:24 MST 2023 -Elapsed time: 00h:37m:57s. Have a nice day! +Wed Jan 25 19:26:15 MST 2023 +Elapsed time: 01h:12m:00s. Have a nice day! From 094b3a7893648d0e0f360a6454fe09c3199ba873 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 26 Jan 2023 02:59:57 +0000 Subject: [PATCH 09/11] [AutoRT] hera.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.gnu.log | 322 ++++++++++++++--------------- 1 file changed, 161 insertions(+), 161 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 18facf92e2..42665bca4d 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Jan 23 19:03:08 UTC 2023 +Wed Jan 25 20:17:24 UTC 2023 Start Regression test -Compile 001 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 005 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 390 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 321 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 392 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 318 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 260 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 139 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 115 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 687.036986 -0: The maximum resident set size (KB) = 700068 +0: The total amount of wall time = 685.166482 +0: The maximum resident set size (KB) = 700560 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 642.229069 - 0: The maximum resident set size (KB) = 476792 + 0: The total amount of wall time = 649.425751 + 0: The maximum resident set size (KB) = 479516 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 812.109023 - 0: The maximum resident set size (KB) = 485368 + 0: The total amount of wall time = 826.155799 + 0: The maximum resident set size (KB) = 485548 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 884.721674 - 0: The maximum resident set size (KB) = 1233988 + 0: The total amount of wall time = 884.905035 + 0: The maximum resident set size (KB) = 1232264 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.400130 - 0: The maximum resident set size (KB) = 828192 + 0: The total amount of wall time = 1484.981440 + 0: The maximum resident set size (KB) = 832956 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.087020 - 0: The maximum resident set size (KB) = 832412 + 0: The total amount of wall time = 1441.976975 + 0: The maximum resident set size (KB) = 828904 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1297.147546 - 0: The maximum resident set size (KB) = 899452 + 0: The total amount of wall time = 1325.893597 + 0: The maximum resident set size (KB) = 899680 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 737.889376 - 0: The maximum resident set size (KB) = 544712 + 0: The total amount of wall time = 720.258269 + 0: The maximum resident set size (KB) = 549120 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1456.552651 - 0: The maximum resident set size (KB) = 826444 + 0: The total amount of wall time = 1485.771119 + 0: The maximum resident set size (KB) = 833516 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1440.776640 - 0: The maximum resident set size (KB) = 829452 + 0: The total amount of wall time = 1447.339045 + 0: The maximum resident set size (KB) = 829704 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1080.326727 - 0: The maximum resident set size (KB) = 547968 + 0: The total amount of wall time = 1064.034806 + 0: The maximum resident set size (KB) = 546860 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1428.332988 - 0: The maximum resident set size (KB) = 833788 + 0: The total amount of wall time = 1417.388737 + 0: The maximum resident set size (KB) = 830388 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1269.200345 - 0: The maximum resident set size (KB) = 891704 + 0: The total amount of wall time = 1352.688893 + 0: The maximum resident set size (KB) = 888604 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1392.488746 - 0: The maximum resident set size (KB) = 823500 + 0: The total amount of wall time = 1411.814943 + 0: The maximum resident set size (KB) = 826804 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1048.043423 - 0: The maximum resident set size (KB) = 540376 + 0: The total amount of wall time = 1063.825873 + 0: The maximum resident set size (KB) = 540332 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1446.569732 - 0: The maximum resident set size (KB) = 826344 + 0: The total amount of wall time = 1460.401655 + 0: The maximum resident set size (KB) = 826048 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 760.469261 - 0: The maximum resident set size (KB) = 636108 + 0: The total amount of wall time = 710.440941 + 0: The maximum resident set size (KB) = 637652 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 768.673695 - 0: The maximum resident set size (KB) = 650304 + 0: The total amount of wall time = 775.478775 + 0: The maximum resident set size (KB) = 651656 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 758.644138 - 0: The maximum resident set size (KB) = 638476 + 0: The total amount of wall time = 773.650950 + 0: The maximum resident set size (KB) = 638820 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 877.620949 - 0: The maximum resident set size (KB) = 638808 + 0: The total amount of wall time = 926.974536 + 0: The maximum resident set size (KB) = 637192 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.696263 - 0: The maximum resident set size (KB) = 531940 + 0: The total amount of wall time = 126.461124 + 0: The maximum resident set size (KB) = 529832 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 681.197754 - 0: The maximum resident set size (KB) = 587992 + 0: The total amount of wall time = 749.366951 + 0: The maximum resident set size (KB) = 589100 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.000527 - 0: The maximum resident set size (KB) = 843724 + 0: The total amount of wall time = 165.948723 + 0: The maximum resident set size (KB) = 843416 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.938065 - 0: The maximum resident set size (KB) = 840552 + 0: The total amount of wall time = 172.099587 + 0: The maximum resident set size (KB) = 843752 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.931850 - 0: The maximum resident set size (KB) = 930724 + 0: The total amount of wall time = 212.002641 + 0: The maximum resident set size (KB) = 925372 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.210917 - 0: The maximum resident set size (KB) = 843704 + 0: The total amount of wall time = 270.460812 + 0: The maximum resident set size (KB) = 843208 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.225168 - 0: The maximum resident set size (KB) = 843408 + 0: The total amount of wall time = 172.225280 + 0: The maximum resident set size (KB) = 848832 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.908846 - 0: The maximum resident set size (KB) = 841604 + 0: The total amount of wall time = 171.578070 + 0: The maximum resident set size (KB) = 844800 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.211554 - 0: The maximum resident set size (KB) = 484556 + 0: The total amount of wall time = 102.418438 + 0: The maximum resident set size (KB) = 485844 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.023987 - 0: The maximum resident set size (KB) = 477720 + 0: The total amount of wall time = 118.754366 + 0: The maximum resident set size (KB) = 478752 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.901624 - 0: The maximum resident set size (KB) = 1233148 + 0: The total amount of wall time = 117.208475 + 0: The maximum resident set size (KB) = 1232828 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 572.927118 - 0: The maximum resident set size (KB) = 644996 + 0: The total amount of wall time = 568.010435 + 0: The maximum resident set size (KB) = 647228 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 542.817160 - 0: The maximum resident set size (KB) = 651064 + 0: The total amount of wall time = 566.878450 + 0: The maximum resident set size (KB) = 650544 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 183.270046 - 0: The maximum resident set size (KB) = 193072 + 0: The total amount of wall time = 180.898777 + 0: The maximum resident set size (KB) = 192944 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.969028 - 0: The maximum resident set size (KB) = 684652 + 0: The total amount of wall time = 1456.780477 + 0: The maximum resident set size (KB) = 683964 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 736.397334 - 0: The maximum resident set size (KB) = 687940 + 0: The total amount of wall time = 731.812622 + 0: The maximum resident set size (KB) = 682980 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1340.691947 - 0: The maximum resident set size (KB) = 732444 + 0: The total amount of wall time = 1309.096840 + 0: The maximum resident set size (KB) = 727780 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 668.446738 - 0: The maximum resident set size (KB) = 727372 + 0: The total amount of wall time = 655.883845 + 0: The maximum resident set size (KB) = 727176 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 726.062434 - 0: The maximum resident set size (KB) = 688304 + 0: The total amount of wall time = 720.616904 + 0: The maximum resident set size (KB) = 680336 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.720380 - 0: The maximum resident set size (KB) = 514408 + 0: The total amount of wall time = 1052.749118 + 0: The maximum resident set size (KB) = 510464 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.606030 - 0: The maximum resident set size (KB) = 507240 + 0: The total amount of wall time = 359.230674 + 0: The maximum resident set size (KB) = 510624 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1050.648670 - 0: The maximum resident set size (KB) = 712784 + 0: The total amount of wall time = 1051.084805 + 0: The maximum resident set size (KB) = 711360 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.269298 - 0: The maximum resident set size (KB) = 704484 + 0: The total amount of wall time = 172.235129 + 0: The maximum resident set size (KB) = 701672 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.313498 - 0: The maximum resident set size (KB) = 700696 + 0: The total amount of wall time = 168.338732 + 0: The maximum resident set size (KB) = 703552 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 202.937882 - 0: The maximum resident set size (KB) = 721444 + 0: The total amount of wall time = 199.978670 + 0: The maximum resident set size (KB) = 724036 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1707.768171 - 0: The maximum resident set size (KB) = 1428212 + 0: The total amount of wall time = 1754.729127 + 0: The maximum resident set size (KB) = 1425640 Test 046 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1222.840407 - 0: The maximum resident set size (KB) = 1332672 + 0: The total amount of wall time = 1216.556783 + 0: The maximum resident set size (KB) = 1331820 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 842.529315 - 0: The maximum resident set size (KB) = 1446724 + 0: The total amount of wall time = 898.551617 + 0: The maximum resident set size (KB) = 1447460 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31333/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22023/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 178.206691 - 0: The maximum resident set size (KB) = 663064 + 0: The total amount of wall time = 171.068923 + 0: The maximum resident set size (KB) = 662264 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 24 09:29:48 UTC 2023 -Elapsed time: 14h:26m:42s. Have a nice day! +Thu Jan 26 02:59:55 UTC 2023 +Elapsed time: 06h:42m:31s. Have a nice day! From db1df87936169784aa6fc8bc7175499b81b665d6 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 26 Jan 2023 03:39:37 +0000 Subject: [PATCH 10/11] [AutoRT] hera.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.intel.log | 984 +++++++++++++-------------- 1 file changed, 492 insertions(+), 492 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c6a15ef1ee..b0e82687c6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,37 +1,37 @@ -Mon Jan 23 18:48:09 UTC 2023 +Wed Jan 25 20:04:23 UTC 2023 Start Regression test -Compile 001 elapsed time 620 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 631 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 213 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 521 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 198 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 525 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 022 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 023 elapsed time 75 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 492 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 538 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 496 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 198 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 582 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 216 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 519 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 195 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 555 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 665 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 609 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 022 elapsed time 115 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 023 elapsed time 69 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 489 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 501 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 483 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 162 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,14 +96,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.899798 - 0: The maximum resident set size (KB) = 3137104 + 0: The total amount of wall time = 305.723764 + 0: The maximum resident set size (KB) = 3133952 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -167,14 +167,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.904164 - 0: The maximum resident set size (KB) = 1722568 + 0: The total amount of wall time = 219.989915 + 0: The maximum resident set size (KB) = 1727860 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.975651 - 0: The maximum resident set size (KB) = 3183136 + 0: The total amount of wall time = 336.627219 + 0: The maximum resident set size (KB) = 3183584 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.116472 - 0: The maximum resident set size (KB) = 3056016 + 0: The total amount of wall time = 192.412869 + 0: The maximum resident set size (KB) = 3053396 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -359,14 +359,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.590350 - 0: The maximum resident set size (KB) = 3511644 + 0: The total amount of wall time = 349.005201 + 0: The maximum resident set size (KB) = 3516844 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_esmfthreads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -419,14 +419,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.503126 - 0: The maximum resident set size (KB) = 3514532 + 0: The total amount of wall time = 348.795103 + 0: The maximum resident set size (KB) = 3520420 Test 006 cpld_esmfthreads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.778138 - 0: The maximum resident set size (KB) = 3172068 + 0: The total amount of wall time = 333.089667 + 0: The maximum resident set size (KB) = 3172960 Test 007 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -539,14 +539,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.427809 - 0: The maximum resident set size (KB) = 3029020 + 0: The total amount of wall time = 277.829885 + 0: The maximum resident set size (KB) = 3028664 Test 008 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -611,14 +611,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.680297 - 0: The maximum resident set size (KB) = 3181128 + 0: The total amount of wall time = 337.206002 + 0: The maximum resident set size (KB) = 3185204 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -671,14 +671,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.913289 - 0: The maximum resident set size (KB) = 3258332 + 0: The total amount of wall time = 574.842900 + 0: The maximum resident set size (KB) = 3258592 Test 010 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -731,14 +731,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 396.346608 - 0: The maximum resident set size (KB) = 3152168 + 0: The total amount of wall time = 400.350855 + 0: The maximum resident set size (KB) = 3157344 Test 011 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_bmark_p8 Checking test 012 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -786,14 +786,14 @@ Checking test 012 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 691.815094 - 0: The maximum resident set size (KB) = 4042612 + 0: The total amount of wall time = 686.276523 + 0: The maximum resident set size (KB) = 4039560 Test 012 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_restart_bmark_p8 Checking test 013 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -841,14 +841,14 @@ Checking test 013 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.817752 - 0: The maximum resident set size (KB) = 3967532 + 0: The total amount of wall time = 421.852267 + 0: The maximum resident set size (KB) = 3981432 Test 013 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_noaero_p8 Checking test 014 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.568816 - 0: The maximum resident set size (KB) = 1720876 + 0: The total amount of wall time = 260.718019 + 0: The maximum resident set size (KB) = 1728096 Test 014 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_nowave_noaero_p8 Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -981,14 +981,14 @@ Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 254.235446 - 0: The maximum resident set size (KB) = 1766576 + 0: The total amount of wall time = 253.929927 + 0: The maximum resident set size (KB) = 1771308 Test 015 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_debug_p8 Checking test 016 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 648.192420 - 0: The maximum resident set size (KB) = 3246908 + 0: The total amount of wall time = 661.686730 + 0: The maximum resident set size (KB) = 3246528 Test 016 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_debug_noaero_p8 Checking test 017 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 017 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.323926 - 0: The maximum resident set size (KB) = 1751200 + 0: The total amount of wall time = 410.244646 + 0: The maximum resident set size (KB) = 1741324 Test 017 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_noaero_p8_agrid Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1169,14 +1169,14 @@ Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.882240 - 0: The maximum resident set size (KB) = 1765780 + 0: The total amount of wall time = 260.597258 + 0: The maximum resident set size (KB) = 1766944 Test 018 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_control_c48 Checking test 019 cpld_control_c48 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -1226,14 +1226,14 @@ Checking test 019 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.932083 - 0: The maximum resident set size (KB) = 2803524 + 0: The total amount of wall time = 576.206216 + 0: The maximum resident set size (KB) = 2803140 Test 019 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_warmstart_c48 Checking test 020 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1283,14 +1283,14 @@ Checking test 020 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.524564 - 0: The maximum resident set size (KB) = 2798344 + 0: The total amount of wall time = 154.611923 + 0: The maximum resident set size (KB) = 2801772 Test 020 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/cpld_restart_c48 Checking test 021 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1340,14 +1340,14 @@ Checking test 021 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.952375 - 0: The maximum resident set size (KB) = 2240920 + 0: The total amount of wall time = 81.724252 + 0: The maximum resident set size (KB) = 2239132 Test 021 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1374,28 +1374,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.565154 - 0: The maximum resident set size (KB) = 634260 + 0: The total amount of wall time = 129.193040 + 0: The maximum resident set size (KB) = 632316 Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.023328 - 0: The maximum resident set size (KB) = 629284 + 0: The total amount of wall time = 126.502480 + 0: The maximum resident set size (KB) = 624936 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1406,16 +1406,16 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.568768 - 0: The maximum resident set size (KB) = 626292 + 0: The total amount of wall time = 130.697382 + 0: The maximum resident set size (KB) = 627688 Test 024 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1424,14 +1424,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.119787 - 0: The maximum resident set size (KB) = 626004 + 0: The total amount of wall time = 134.621211 + 0: The maximum resident set size (KB) = 628856 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 372.613671 -0: The maximum resident set size (KB) = 817752 +0: The total amount of wall time = 366.036020 +0: The maximum resident set size (KB) = 815528 Test 026 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.954516 - 0: The maximum resident set size (KB) = 758220 + 0: The total amount of wall time = 523.998333 + 0: The maximum resident set size (KB) = 776696 Test 027 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1506,14 +1506,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.792027 - 0: The maximum resident set size (KB) = 1201748 + 0: The total amount of wall time = 527.531825 + 0: The maximum resident set size (KB) = 1211072 Test 028 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.895394 - 0: The maximum resident set size (KB) = 1342768 + 0: The total amount of wall time = 449.597295 + 0: The maximum resident set size (KB) = 1343272 Test 029 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1574,28 +1574,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.014708 - 0: The maximum resident set size (KB) = 629044 + 0: The total amount of wall time = 87.195043 + 0: The maximum resident set size (KB) = 627052 Test 030 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.952376 - 0: The maximum resident set size (KB) = 479656 + 0: The total amount of wall time = 46.805798 + 0: The maximum resident set size (KB) = 479520 Test 031 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1606,14 +1606,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.208529 - 0: The maximum resident set size (KB) = 629728 + 0: The total amount of wall time = 80.055458 + 0: The maximum resident set size (KB) = 628020 Test 032 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1628,14 +1628,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.041948 - 0: The maximum resident set size (KB) = 628528 + 0: The total amount of wall time = 133.469430 + 0: The maximum resident set size (KB) = 630812 Test 033 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.997730 - 0: The maximum resident set size (KB) = 627180 + 0: The total amount of wall time = 133.621098 + 0: The maximum resident set size (KB) = 621604 Test 034 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1704,14 +1704,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.020319 - 0: The maximum resident set size (KB) = 1603396 + 0: The total amount of wall time = 164.681324 + 0: The maximum resident set size (KB) = 1603308 Test 035 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1730,14 +1730,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.937377 - 0: The maximum resident set size (KB) = 1606948 + 0: The total amount of wall time = 309.074505 + 0: The maximum resident set size (KB) = 1606452 Test 036 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1776,14 +1776,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.504759 - 0: The maximum resident set size (KB) = 863732 + 0: The total amount of wall time = 86.215036 + 0: The maximum resident set size (KB) = 863432 Test 037 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.146775 - 0: The maximum resident set size (KB) = 1576676 + 0: The total amount of wall time = 170.696584 + 0: The maximum resident set size (KB) = 1591196 Test 038 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.476139 - 0: The maximum resident set size (KB) = 1690460 + 0: The total amount of wall time = 160.371609 + 0: The maximum resident set size (KB) = 1691604 Test 039 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.141022 - 0: The maximum resident set size (KB) = 1729928 + 0: The total amount of wall time = 201.234814 + 0: The maximum resident set size (KB) = 1730624 Test 040 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1984,14 +1984,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.712160 - 0: The maximum resident set size (KB) = 1607268 + 0: The total amount of wall time = 187.127781 + 0: The maximum resident set size (KB) = 1620084 Test 041 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2002,28 +2002,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.276314 - 0: The maximum resident set size (KB) = 867204 + 0: The total amount of wall time = 297.018236 + 0: The maximum resident set size (KB) = 864696 Test 042 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.115975 - 0: The maximum resident set size (KB) = 860912 + 0: The total amount of wall time = 147.411576 + 0: The maximum resident set size (KB) = 860980 Test 043 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.285205 - 0: The maximum resident set size (KB) = 849432 + 0: The total amount of wall time = 310.140839 + 0: The maximum resident set size (KB) = 851936 Test 044 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2052,14 +2052,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.709203 - 0: The maximum resident set size (KB) = 837256 + 0: The total amount of wall time = 179.994537 + 0: The maximum resident set size (KB) = 836680 Test 045 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2067,28 +2067,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.919473 - 0: The maximum resident set size (KB) = 853736 + 0: The total amount of wall time = 324.174751 + 0: The maximum resident set size (KB) = 854076 Test 046 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.209318 - 0: The maximum resident set size (KB) = 855992 + 0: The total amount of wall time = 291.857390 + 0: The maximum resident set size (KB) = 857200 Test 047 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.731126 - 0: The maximum resident set size (KB) = 862288 + 0: The total amount of wall time = 293.881392 + 0: The maximum resident set size (KB) = 863604 Test 048 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2117,14 +2117,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.266676 - 0: The maximum resident set size (KB) = 618988 + 0: The total amount of wall time = 373.208293 + 0: The maximum resident set size (KB) = 622564 Test 049 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2171,14 +2171,14 @@ Checking test 050 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.801186 - 0: The maximum resident set size (KB) = 1058880 + 0: The total amount of wall time = 456.519598 + 0: The maximum resident set size (KB) = 1052820 Test 050 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_rrtmgp Checking test 051 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2225,14 +2225,14 @@ Checking test 051 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 489.123738 - 0: The maximum resident set size (KB) = 1216396 + 0: The total amount of wall time = 489.047953 + 0: The maximum resident set size (KB) = 1218788 Test 051 rap_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2243,14 +2243,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 285.968944 - 0: The maximum resident set size (KB) = 1175792 + 0: The total amount of wall time = 279.970852 + 0: The maximum resident set size (KB) = 1181168 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2297,14 +2297,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.094404 - 0: The maximum resident set size (KB) = 1002676 + 0: The total amount of wall time = 478.445883 + 0: The maximum resident set size (KB) = 999472 Test 053 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2351,14 +2351,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.850809 - 0: The maximum resident set size (KB) = 1123776 + 0: The total amount of wall time = 439.411182 + 0: The maximum resident set size (KB) = 1123344 Test 054 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2397,14 +2397,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.427636 - 0: The maximum resident set size (KB) = 961400 + 0: The total amount of wall time = 232.861180 + 0: The maximum resident set size (KB) = 965880 Test 055 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2451,14 +2451,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.726256 - 0: The maximum resident set size (KB) = 1063588 + 0: The total amount of wall time = 450.602377 + 0: The maximum resident set size (KB) = 1078268 Test 056 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2505,14 +2505,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.507476 - 0: The maximum resident set size (KB) = 1000576 + 0: The total amount of wall time = 478.221609 + 0: The maximum resident set size (KB) = 1001096 Test 057 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2551,14 +2551,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.176141 - 0: The maximum resident set size (KB) = 984132 + 0: The total amount of wall time = 338.628580 + 0: The maximum resident set size (KB) = 992388 Test 058 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2605,14 +2605,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.473063 - 0: The maximum resident set size (KB) = 1056260 + 0: The total amount of wall time = 433.884033 + 0: The maximum resident set size (KB) = 1059440 Test 059 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2659,14 +2659,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.447885 - 0: The maximum resident set size (KB) = 1000344 + 0: The total amount of wall time = 454.886451 + 0: The maximum resident set size (KB) = 1000244 Test 060 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2713,14 +2713,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.525787 - 0: The maximum resident set size (KB) = 1136660 + 0: The total amount of wall time = 416.166619 + 0: The maximum resident set size (KB) = 1127004 Test 061 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.210354 - 0: The maximum resident set size (KB) = 985812 + 0: The total amount of wall time = 329.285938 + 0: The maximum resident set size (KB) = 976244 Test 062 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.382148 - 0: The maximum resident set size (KB) = 1054464 + 0: The total amount of wall time = 445.618096 + 0: The maximum resident set size (KB) = 1056260 Test 063 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2835,14 +2835,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.388730 - 0: The maximum resident set size (KB) = 694616 + 0: The total amount of wall time = 525.123202 + 0: The maximum resident set size (KB) = 694216 Test 064 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.331375 - 0: The maximum resident set size (KB) = 756080 + 0: The total amount of wall time = 511.767735 + 0: The maximum resident set size (KB) = 757308 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_hrrr_warm Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2873,14 +2873,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.244569 - 0: The maximum resident set size (KB) = 925324 + 0: The total amount of wall time = 123.033689 + 0: The maximum resident set size (KB) = 925060 Test 066 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2889,14 +2889,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.074637 - 0: The maximum resident set size (KB) = 958216 + 0: The total amount of wall time = 138.657427 + 0: The maximum resident set size (KB) = 956224 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_radar_tten_warm Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.427514 - 0: The maximum resident set size (KB) = 934548 + 0: The total amount of wall time = 123.026517 + 0: The maximum resident set size (KB) = 931912 Test 068 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_hrrr_warm_2threads Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2921,14 +2921,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.676991 - 0: The maximum resident set size (KB) = 874212 + 0: The total amount of wall time = 77.240019 + 0: The maximum resident set size (KB) = 870536 Test 069 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_radar_tten_warm_2threads Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2937,14 +2937,14 @@ Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.288005 - 0: The maximum resident set size (KB) = 882896 + 0: The total amount of wall time = 77.899963 + 0: The maximum resident set size (KB) = 879720 Test 070 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2955,14 +2955,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.054912 - 0: The maximum resident set size (KB) = 722468 + 0: The total amount of wall time = 342.307967 + 0: The maximum resident set size (KB) = 727512 Test 071 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2973,14 +2973,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.381294 - 0: The maximum resident set size (KB) = 727396 + 0: The total amount of wall time = 336.143223 + 0: The maximum resident set size (KB) = 723432 Test 072 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2991,54 +2991,54 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.354107 - 0: The maximum resident set size (KB) = 715740 + 0: The total amount of wall time = 179.382010 + 0: The maximum resident set size (KB) = 718676 Test 073 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.384468 - 0: The maximum resident set size (KB) = 640056 + 0: The total amount of wall time = 112.390137 + 0: The maximum resident set size (KB) = 639760 Test 074 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 717.052052 - 0: The maximum resident set size (KB) = 955768 + 0: The total amount of wall time = 723.538036 + 0: The maximum resident set size (KB) = 955244 Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 714.426744 - 0: The maximum resident set size (KB) = 957636 + 0: The total amount of wall time = 721.272200 + 0: The maximum resident set size (KB) = 958912 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3065,348 +3065,348 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.740314 - 0: The maximum resident set size (KB) = 789328 + 0: The total amount of wall time = 163.625008 + 0: The maximum resident set size (KB) = 798688 Test 077 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.056589 - 0: The maximum resident set size (KB) = 794944 + 0: The total amount of wall time = 148.654981 + 0: The maximum resident set size (KB) = 794344 Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.952176 - 0: The maximum resident set size (KB) = 805916 + 0: The total amount of wall time = 169.976439 + 0: The maximum resident set size (KB) = 798688 Test 079 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.278332 - 0: The maximum resident set size (KB) = 794292 + 0: The total amount of wall time = 151.084941 + 0: The maximum resident set size (KB) = 806296 Test 080 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.054728 - 0: The maximum resident set size (KB) = 847648 + 0: The total amount of wall time = 229.676914 + 0: The maximum resident set size (KB) = 850296 Test 081 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.080941 - 0: The maximum resident set size (KB) = 842848 + 0: The total amount of wall time = 228.082700 + 0: The maximum resident set size (KB) = 844580 Test 082 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.171692 - 0: The maximum resident set size (KB) = 806800 + 0: The total amount of wall time = 153.266932 + 0: The maximum resident set size (KB) = 810588 Test 083 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.292434 - 0: The maximum resident set size (KB) = 860164 + 0: The total amount of wall time = 157.297997 + 0: The maximum resident set size (KB) = 850912 Test 084 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.041534 - 0: The maximum resident set size (KB) = 1625032 + 0: The total amount of wall time = 169.694411 + 0: The maximum resident set size (KB) = 1623616 Test 085 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 976.508847 - 0: The maximum resident set size (KB) = 888256 + 0: The total amount of wall time = 969.330053 + 0: The maximum resident set size (KB) = 899380 Test 086 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.942948 - 0: The maximum resident set size (KB) = 1175428 + 0: The total amount of wall time = 271.037841 + 0: The maximum resident set size (KB) = 1175132 Test 087 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.140115 - 0: The maximum resident set size (KB) = 1167092 + 0: The total amount of wall time = 270.142378 + 0: The maximum resident set size (KB) = 1172564 Test 088 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.548404 - 0: The maximum resident set size (KB) = 1177680 + 0: The total amount of wall time = 277.375841 + 0: The maximum resident set size (KB) = 1172400 Test 089 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.590824 - 0: The maximum resident set size (KB) = 1257872 + 0: The total amount of wall time = 290.490833 + 0: The maximum resident set size (KB) = 1262056 Test 090 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.689604 - 0: The maximum resident set size (KB) = 1173108 + 0: The total amount of wall time = 282.542723 + 0: The maximum resident set size (KB) = 1176400 Test 091 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.854737 - 0: The maximum resident set size (KB) = 1176324 + 0: The total amount of wall time = 281.452657 + 0: The maximum resident set size (KB) = 1177704 Test 092 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.452058 - 0: The maximum resident set size (KB) = 1178472 + 0: The total amount of wall time = 279.865627 + 0: The maximum resident set size (KB) = 1180580 Test 093 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.765910 - 0: The maximum resident set size (KB) = 1172464 + 0: The total amount of wall time = 272.733673 + 0: The maximum resident set size (KB) = 1172788 Test 094 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.371738 - 0: The maximum resident set size (KB) = 1179048 + 0: The total amount of wall time = 275.553015 + 0: The maximum resident set size (KB) = 1172768 Test 095 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.509515 - 0: The maximum resident set size (KB) = 1173520 + 0: The total amount of wall time = 269.617823 + 0: The maximum resident set size (KB) = 1180672 Test 096 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_rrtmgp_debug Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 460.593656 - 0: The maximum resident set size (KB) = 1304648 + 0: The total amount of wall time = 464.040558 + 0: The maximum resident set size (KB) = 1305500 Test 097 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.674463 - 0: The maximum resident set size (KB) = 1176884 + 0: The total amount of wall time = 279.223080 + 0: The maximum resident set size (KB) = 1176132 Test 098 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.686053 - 0: The maximum resident set size (KB) = 1176180 + 0: The total amount of wall time = 453.141318 + 0: The maximum resident set size (KB) = 1174240 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.800132 - 0: The maximum resident set size (KB) = 1173480 + 0: The total amount of wall time = 272.906670 + 0: The maximum resident set size (KB) = 1171560 Test 100 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 276.523254 - 0: The maximum resident set size (KB) = 519256 + 0: The total amount of wall time = 279.227265 + 0: The maximum resident set size (KB) = 523396 Test 101 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3417,14 +3417,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 258.859877 - 0: The maximum resident set size (KB) = 1073692 + 0: The total amount of wall time = 260.607604 + 0: The maximum resident set size (KB) = 1075928 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3471,14 +3471,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.290996 - 0: The maximum resident set size (KB) = 1008144 + 0: The total amount of wall time = 369.189470 + 0: The maximum resident set size (KB) = 1001584 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.921421 - 0: The maximum resident set size (KB) = 949872 + 0: The total amount of wall time = 193.038140 + 0: The maximum resident set size (KB) = 953512 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.288901 - 0: The maximum resident set size (KB) = 1023836 + 0: The total amount of wall time = 357.499776 + 0: The maximum resident set size (KB) = 1021340 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.700420 - 0: The maximum resident set size (KB) = 1007480 + 0: The total amount of wall time = 189.731442 + 0: The maximum resident set size (KB) = 1007360 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.190939 - 0: The maximum resident set size (KB) = 901560 + 0: The total amount of wall time = 203.789288 + 0: The maximum resident set size (KB) = 895016 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3733,14 +3733,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.507727 - 0: The maximum resident set size (KB) = 937328 + 0: The total amount of wall time = 277.725556 + 0: The maximum resident set size (KB) = 941432 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3779,14 +3779,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.897478 - 0: The maximum resident set size (KB) = 862136 + 0: The total amount of wall time = 99.373624 + 0: The maximum resident set size (KB) = 862176 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3833,81 +3833,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.402110 - 0: The maximum resident set size (KB) = 969672 + 0: The total amount of wall time = 238.909612 + 0: The maximum resident set size (KB) = 964472 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.487828 - 0: The maximum resident set size (KB) = 1063780 + 0: The total amount of wall time = 269.323177 + 0: The maximum resident set size (KB) = 1058252 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.022072 - 0: The maximum resident set size (KB) = 1058644 + 0: The total amount of wall time = 268.425363 + 0: The maximum resident set size (KB) = 1060348 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 280.657511 - 0: The maximum resident set size (KB) = 1091804 + 0: The total amount of wall time = 278.614249 + 0: The maximum resident set size (KB) = 1107664 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 221.129362 - 0: The maximum resident set size (KB) = 1025552 + 0: The total amount of wall time = 218.778379 + 0: The maximum resident set size (KB) = 1022364 Test 114 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 299.450799 - 0: The maximum resident set size (KB) = 1394740 + 0: The total amount of wall time = 303.831140 + 0: The maximum resident set size (KB) = 1394764 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3916,14 +3916,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.134642 - 0: The maximum resident set size (KB) = 1200088 + 0: The total amount of wall time = 358.749286 + 0: The maximum resident set size (KB) = 1196972 Test 116 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3932,14 +3932,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 720.673532 - 0: The maximum resident set size (KB) = 1234492 + 0: The total amount of wall time = 718.412019 + 0: The maximum resident set size (KB) = 1231988 Test 117 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3950,28 +3950,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 818.256866 - 0: The maximum resident set size (KB) = 1267340 + 0: The total amount of wall time = 819.666054 + 0: The maximum resident set size (KB) = 1244032 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 315.476789 - 0: The maximum resident set size (KB) = 501336 + 0: The total amount of wall time = 317.018595 + 0: The maximum resident set size (KB) = 505732 Test 119 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3980,28 +3980,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 357.553154 - 0: The maximum resident set size (KB) = 511848 + 0: The total amount of wall time = 363.815114 + 0: The maximum resident set size (KB) = 509184 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.901165 - 0: The maximum resident set size (KB) = 342624 + 0: The total amount of wall time = 144.069599 + 0: The maximum resident set size (KB) = 345876 Test 121 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.398154 - 0: The maximum resident set size (KB) = 422204 + 0: The total amount of wall time = 413.437685 + 0: The maximum resident set size (KB) = 416072 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,28 +4035,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 197.119770 - 0: The maximum resident set size (KB) = 512608 + 0: The total amount of wall time = 196.503078 + 0: The maximum resident set size (KB) = 516404 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 186.629924 - 0: The maximum resident set size (KB) = 508640 + 0: The total amount of wall time = 186.527525 + 0: The maximum resident set size (KB) = 515296 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4065,28 +4065,28 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 216.525359 - 0: The maximum resident set size (KB) = 546548 + 0: The total amount of wall time = 218.805920 + 0: The maximum resident set size (KB) = 550684 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 60.464359 - 0: The maximum resident set size (KB) = 359576 + 0: The total amount of wall time = 58.045202 + 0: The maximum resident set size (KB) = 360248 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4097,14 +4097,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 508.172471 - 0: The maximum resident set size (KB) = 641884 + 0: The total amount of wall time = 510.632475 + 0: The maximum resident set size (KB) = 646624 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4112,14 +4112,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.295342 - 0: The maximum resident set size (KB) = 1202808 + 0: The total amount of wall time = 338.074147 + 0: The maximum resident set size (KB) = 1208100 Test 128 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4127,131 +4127,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 334.749037 - 0: The maximum resident set size (KB) = 1191860 + 0: The total amount of wall time = 337.878752 + 0: The maximum resident set size (KB) = 1193820 Test 129 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 941.018094 - 0: The maximum resident set size (KB) = 1036020 + 0: The total amount of wall time = 950.501276 + 0: The maximum resident set size (KB) = 1036820 Test 130 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.163281 - 0: The maximum resident set size (KB) = 1065580 + 0: The total amount of wall time = 155.832690 + 0: The maximum resident set size (KB) = 1051812 Test 131 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.497611 - 0: The maximum resident set size (KB) = 1008000 + 0: The total amount of wall time = 94.503834 + 0: The maximum resident set size (KB) = 1020308 Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.403961 - 0: The maximum resident set size (KB) = 967752 + 0: The total amount of wall time = 147.417049 + 0: The maximum resident set size (KB) = 960272 Test 133 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.753868 - 0: The maximum resident set size (KB) = 962828 + 0: The total amount of wall time = 151.248444 + 0: The maximum resident set size (KB) = 958340 Test 134 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.920387 - 0: The maximum resident set size (KB) = 965256 + 0: The total amount of wall time = 152.296392 + 0: The maximum resident set size (KB) = 976264 Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.680867 - 0: The maximum resident set size (KB) = 1053004 + 0: The total amount of wall time = 155.241351 + 0: The maximum resident set size (KB) = 1055312 Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.714665 - 0: The maximum resident set size (KB) = 1061416 + 0: The total amount of wall time = 155.230138 + 0: The maximum resident set size (KB) = 1061516 Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.243032 - 0: The maximum resident set size (KB) = 963256 + 0: The total amount of wall time = 144.358357 + 0: The maximum resident set size (KB) = 963476 Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.370829 - 0: The maximum resident set size (KB) = 881892 + 0: The total amount of wall time = 400.547415 + 0: The maximum resident set size (KB) = 885000 Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4276,64 +4276,64 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.107026 - 0: The maximum resident set size (KB) = 939448 + 0: The total amount of wall time = 402.222590 + 0: The maximum resident set size (KB) = 939580 Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.888201 - 0: The maximum resident set size (KB) = 1058440 + 0: The total amount of wall time = 153.976316 + 0: The maximum resident set size (KB) = 1061372 Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.209898 - 0: The maximum resident set size (KB) = 2372496 + 0: The total amount of wall time = 217.467288 + 0: The maximum resident set size (KB) = 2364180 Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.440622 - 0: The maximum resident set size (KB) = 2312504 + 0: The total amount of wall time = 220.119645 + 0: The maximum resident set size (KB) = 2356912 Test 143 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 438.941013 - 0: The maximum resident set size (KB) = 995444 + 0: The total amount of wall time = 442.286797 + 0: The maximum resident set size (KB) = 998208 Test 144 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4342,14 +4342,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.945727 - 0: The maximum resident set size (KB) = 270244 + 0: The total amount of wall time = 6.297587 + 0: The maximum resident set size (KB) = 259624 Test 145 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4358,14 +4358,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.220389 - 0: The maximum resident set size (KB) = 268048 + 0: The total amount of wall time = 12.409256 + 0: The maximum resident set size (KB) = 263456 Test 146 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc ............ALT CHECK......OK Comparing sfcf000.tile2.nc ............ALT CHECK......OK @@ -4450,14 +4450,14 @@ Checking test 147 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 199.348698 - 0: The maximum resident set size (KB) = 1608464 + 0: The total amount of wall time = 199.520697 + 0: The maximum resident set size (KB) = 1615000 Test 147 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.148484 - 0: The maximum resident set size (KB) = 656780 + 0: The total amount of wall time = 85.705954 + 0: The maximum resident set size (KB) = 660216 Test 148 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4552,14 +4552,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.880167 - 0: The maximum resident set size (KB) = 2978896 + 0: The total amount of wall time = 223.461415 + 0: The maximum resident set size (KB) = 2975996 Test 149 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4603,14 +4603,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.463747 - 0: The maximum resident set size (KB) = 3042384 + 0: The total amount of wall time = 275.632870 + 0: The maximum resident set size (KB) = 3048600 Test 150 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4654,14 +4654,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.368122 - 0: The maximum resident set size (KB) = 3053316 + 0: The total amount of wall time = 280.442233 + 0: The maximum resident set size (KB) = 3058968 Test 151 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4677,14 +4677,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 594.905138 - 0: The maximum resident set size (KB) = 1557604 + 0: The total amount of wall time = 614.279464 + 0: The maximum resident set size (KB) = 1545240 Test 152 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14876/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11223/regional_atmaq_debug Checking test 153 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -4698,12 +4698,12 @@ Checking test 153 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 1325.163481 - 0: The maximum resident set size (KB) = 1512644 + 0: The total amount of wall time = 1313.824799 + 0: The maximum resident set size (KB) = 1508596 Test 153 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 24 11:48:18 UTC 2023 -Elapsed time: 17h:00m:09s. Have a nice day! +Thu Jan 26 03:39:35 UTC 2023 +Elapsed time: 07h:35m:13s. Have a nice day! From 3711b9f691defb6a2dd090b3982b7deaa0dc304c Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Thu, 26 Jan 2023 08:03:00 -0500 Subject: [PATCH 11/11] add gaea.intel RT log: passed --- tests/RegressionTests_gaea.intel.log | 970 +++++++++++++-------------- 1 file changed, 485 insertions(+), 485 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 1bc4b434f6..9b7cbec351 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,37 +1,37 @@ -Mon Jan 23 19:50:51 EST 2023 +Wed Jan 25 18:58:43 EST 2023 Start Regression test -Compile 001 elapsed time 947 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 870 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 544 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 575 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 865 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 842 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 227 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 774 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 1179 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 747 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 248 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 022 elapsed time 152 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 023 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 1114 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 1094 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 808 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 810 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 390 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 893 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 839 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 316 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 277 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 787 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 714 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 241 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 743 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 893 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 271 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 022 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 023 elapsed time 97 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 715 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 695 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 709 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 658 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 205 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,14 +96,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.625742 - 0: The maximum resident set size (KB) = 1552476 + 0: The total amount of wall time = 322.880840 + 0: The maximum resident set size (KB) = 1567292 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -167,14 +167,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.404673 - 0: The maximum resident set size (KB) = 1455676 + 0: The total amount of wall time = 239.277612 + 0: The maximum resident set size (KB) = 1455560 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.335792 - 0: The maximum resident set size (KB) = 1600032 + 0: The total amount of wall time = 373.204721 + 0: The maximum resident set size (KB) = 1600924 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_restart_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 239.242534 - 0: The maximum resident set size (KB) = 1022488 + 0: The total amount of wall time = 214.134064 + 0: The maximum resident set size (KB) = 1022576 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_2threads_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -359,14 +359,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.827991 - 0: The maximum resident set size (KB) = 1778108 + 0: The total amount of wall time = 385.958280 + 0: The maximum resident set size (KB) = 1792260 Test 005 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_esmfthreads_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_esmfthreads_p8 Checking test 006 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -419,14 +419,14 @@ Checking test 006 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.703471 - 0: The maximum resident set size (KB) = 1776448 + 0: The total amount of wall time = 388.310583 + 0: The maximum resident set size (KB) = 1776568 Test 006 cpld_esmfthreads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_decomp_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.322787 - 0: The maximum resident set size (KB) = 1593552 + 0: The total amount of wall time = 373.911216 + 0: The maximum resident set size (KB) = 1579212 Test 007 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_mpi_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -539,14 +539,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.233287 - 0: The maximum resident set size (KB) = 1543780 + 0: The total amount of wall time = 315.744437 + 0: The maximum resident set size (KB) = 1544184 Test 008 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -611,14 +611,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.928194 - 0: The maximum resident set size (KB) = 1586444 + 0: The total amount of wall time = 370.852800 + 0: The maximum resident set size (KB) = 1585992 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -671,14 +671,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 788.090460 - 0: The maximum resident set size (KB) = 1774540 + 0: The total amount of wall time = 737.285769 + 0: The maximum resident set size (KB) = 1779568 Test 010 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc ............ALT CHECK......OK Comparing sfcf030.tile2.nc ............ALT CHECK......OK @@ -731,14 +731,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 528.867921 - 0: The maximum resident set size (KB) = 1941084 + 0: The total amount of wall time = 516.700728 + 0: The maximum resident set size (KB) = 1929528 Test 011 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_bmark_p8 Checking test 012 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -786,14 +786,14 @@ Checking test 012 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 839.800671 - 0: The maximum resident set size (KB) = 2535904 + 0: The total amount of wall time = 753.796466 + 0: The maximum resident set size (KB) = 2520244 Test 012 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_restart_bmark_p8 Checking test 013 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -841,14 +841,14 @@ Checking test 013 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 619.445553 - 0: The maximum resident set size (KB) = 2334080 + 0: The total amount of wall time = 579.493003 + 0: The maximum resident set size (KB) = 2337600 Test 013 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_noaero_p8 Checking test 014 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 296.447369 - 0: The maximum resident set size (KB) = 1452564 + 0: The total amount of wall time = 281.344714 + 0: The maximum resident set size (KB) = 1440548 Test 014 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_nowave_noaero_p8 Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -981,14 +981,14 @@ Checking test 015 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 304.666173 - 0: The maximum resident set size (KB) = 1486808 + 0: The total amount of wall time = 287.195201 + 0: The maximum resident set size (KB) = 1487744 Test 015 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_debug_p8 Checking test 016 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 749.811168 - 0: The maximum resident set size (KB) = 1617396 + 0: The total amount of wall time = 580.604431 + 0: The maximum resident set size (KB) = 1633084 Test 016 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_debug_noaero_p8 Checking test 017 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc ............ALT CHECK......OK Comparing sfcf003.tile2.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 017 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.313876 - 0: The maximum resident set size (KB) = 1464380 + 0: The total amount of wall time = 395.833728 + 0: The maximum resident set size (KB) = 1488100 Test 017 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_noaero_p8_agrid Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -1169,14 +1169,14 @@ Checking test 018 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 311.961450 - 0: The maximum resident set size (KB) = 1490792 + 0: The total amount of wall time = 296.373194 + 0: The maximum resident set size (KB) = 1490328 Test 018 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_control_c48 Checking test 019 cpld_control_c48 results .... Comparing sfcf024.tile1.nc ............ALT CHECK......OK Comparing sfcf024.tile2.nc ............ALT CHECK......OK @@ -1226,14 +1226,14 @@ Checking test 019 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 617.551149 - 0: The maximum resident set size (KB) = 2556640 + 0: The total amount of wall time = 599.101464 + 0: The maximum resident set size (KB) = 2556656 Test 019 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_warmstart_c48 Checking test 020 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1283,14 +1283,14 @@ Checking test 020 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 173.995680 - 0: The maximum resident set size (KB) = 2570024 + 0: The total amount of wall time = 159.183199 + 0: The maximum resident set size (KB) = 2569592 Test 020 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/cpld_restart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/cpld_restart_c48 Checking test 021 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc ............ALT CHECK......OK Comparing sfcf006.tile2.nc ............ALT CHECK......OK @@ -1340,14 +1340,14 @@ Checking test 021 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.387233 - 0: The maximum resident set size (KB) = 1991384 + 0: The total amount of wall time = 83.326568 + 0: The maximum resident set size (KB) = 1991396 Test 021 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1374,28 +1374,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.355545 - 0: The maximum resident set size (KB) = 437284 + 0: The total amount of wall time = 137.065837 + 0: The maximum resident set size (KB) = 437396 Test 022 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 138.224780 - 0: The maximum resident set size (KB) = 437312 + 0: The total amount of wall time = 137.453074 + 0: The maximum resident set size (KB) = 437444 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1406,14 +1406,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.759934 - 0: The maximum resident set size (KB) = 436532 + 0: The total amount of wall time = 143.725498 + 0: The maximum resident set size (KB) = 436560 Test 024 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1424,14 +1424,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.829708 - 0: The maximum resident set size (KB) = 436412 + 0: The total amount of wall time = 151.237360 + 0: The maximum resident set size (KB) = 436520 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 420.193200 -0: The maximum resident set size (KB) = 631060 +0: The total amount of wall time = 423.342205 +0: The maximum resident set size (KB) = 629820 Test 026 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 578.101772 - 0: The maximum resident set size (KB) = 541472 + 0: The total amount of wall time = 571.922777 + 0: The maximum resident set size (KB) = 541456 Test 027 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1506,14 +1506,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1103.980845 - 0: The maximum resident set size (KB) = 805484 + 0: The total amount of wall time = 1080.582665 + 0: The maximum resident set size (KB) = 805388 Test 028 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 919.627553 - 0: The maximum resident set size (KB) = 923608 + 0: The total amount of wall time = 894.186298 + 0: The maximum resident set size (KB) = 923456 Test 029 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1574,28 +1574,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.289111 - 0: The maximum resident set size (KB) = 439592 + 0: The total amount of wall time = 96.698634 + 0: The maximum resident set size (KB) = 439608 Test 030 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_stochy_restart +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.350746 - 0: The maximum resident set size (KB) = 192192 + 0: The total amount of wall time = 52.105410 + 0: The maximum resident set size (KB) = 192128 Test 031 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1606,14 +1606,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.049040 - 0: The maximum resident set size (KB) = 440160 + 0: The total amount of wall time = 85.114902 + 0: The maximum resident set size (KB) = 440216 Test 032 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1628,14 +1628,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.362497 - 0: The maximum resident set size (KB) = 436608 + 0: The total amount of wall time = 146.014833 + 0: The maximum resident set size (KB) = 436680 Test 033 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.090087 - 0: The maximum resident set size (KB) = 436544 + 0: The total amount of wall time = 143.238927 + 0: The maximum resident set size (KB) = 436524 Test 034 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1704,14 +1704,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.155338 - 0: The maximum resident set size (KB) = 1403628 + 0: The total amount of wall time = 175.002184 + 0: The maximum resident set size (KB) = 1379780 Test 035 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1730,14 +1730,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 341.631156 - 0: The maximum resident set size (KB) = 1403928 + 0: The total amount of wall time = 326.147210 + 0: The maximum resident set size (KB) = 1379952 Test 036 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_restart_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1776,14 +1776,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.001200 - 0: The maximum resident set size (KB) = 549708 + 0: The total amount of wall time = 91.041568 + 0: The maximum resident set size (KB) = 549396 Test 037 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_decomp_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.903016 - 0: The maximum resident set size (KB) = 1397296 + 0: The total amount of wall time = 180.312487 + 0: The maximum resident set size (KB) = 1397356 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_2threads_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.592516 - 0: The maximum resident set size (KB) = 1459988 + 0: The total amount of wall time = 169.144506 + 0: The maximum resident set size (KB) = 1458520 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.245294 - 0: The maximum resident set size (KB) = 1504200 + 0: The total amount of wall time = 232.950543 + 0: The maximum resident set size (KB) = 1518908 Test 040 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1984,14 +1984,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.636302 - 0: The maximum resident set size (KB) = 1407368 + 0: The total amount of wall time = 202.287935 + 0: The maximum resident set size (KB) = 1407312 Test 041 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2002,28 +2002,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 334.965030 - 0: The maximum resident set size (KB) = 575432 + 0: The total amount of wall time = 329.083558 + 0: The maximum resident set size (KB) = 575408 Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_restart +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 168.513194 - 0: The maximum resident set size (KB) = 575512 + 0: The total amount of wall time = 166.558161 + 0: The maximum resident set size (KB) = 575104 Test 043 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_decomp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 347.409458 - 0: The maximum resident set size (KB) = 575668 + 0: The total amount of wall time = 344.700032 + 0: The maximum resident set size (KB) = 575716 Test 044 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_2threads +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2052,14 +2052,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.198179 - 0: The maximum resident set size (KB) = 578776 + 0: The total amount of wall time = 198.623911 + 0: The maximum resident set size (KB) = 576372 Test 045 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2067,28 +2067,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 360.097295 - 0: The maximum resident set size (KB) = 585276 + 0: The total amount of wall time = 356.928680 + 0: The maximum resident set size (KB) = 569772 Test 046 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 379.402816 - 0: The maximum resident set size (KB) = 569968 + 0: The total amount of wall time = 332.657556 + 0: The maximum resident set size (KB) = 570144 Test 047 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 386.462823 - 0: The maximum resident set size (KB) = 575308 + 0: The total amount of wall time = 329.528368 + 0: The maximum resident set size (KB) = 575488 Test 048 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2117,14 +2117,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 417.017673 - 0: The maximum resident set size (KB) = 257280 + 0: The total amount of wall time = 414.743507 + 0: The maximum resident set size (KB) = 257308 Test 049 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2171,14 +2171,14 @@ Checking test 050 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.364780 - 0: The maximum resident set size (KB) = 807552 + 0: The total amount of wall time = 473.857698 + 0: The maximum resident set size (KB) = 807516 Test 050 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_rrtmgp Checking test 051 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2225,14 +2225,14 @@ Checking test 051 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 525.355035 - 0: The maximum resident set size (KB) = 925344 + 0: The total amount of wall time = 521.588219 + 0: The maximum resident set size (KB) = 925300 Test 051 rap_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2243,14 +2243,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 333.777096 - 0: The maximum resident set size (KB) = 887304 + 0: The total amount of wall time = 320.309623 + 0: The maximum resident set size (KB) = 887380 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_decomp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2297,14 +2297,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.682376 - 0: The maximum resident set size (KB) = 807156 + 0: The total amount of wall time = 498.965776 + 0: The maximum resident set size (KB) = 807004 Test 053 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_2threads +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2351,14 +2351,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.200497 - 0: The maximum resident set size (KB) = 877060 + 0: The total amount of wall time = 460.797813 + 0: The maximum resident set size (KB) = 877088 Test 054 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_restart +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2397,14 +2397,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.114687 - 0: The maximum resident set size (KB) = 552024 + 0: The total amount of wall time = 241.943921 + 0: The maximum resident set size (KB) = 552100 Test 055 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2451,14 +2451,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 544.891928 - 0: The maximum resident set size (KB) = 807488 + 0: The total amount of wall time = 468.048482 + 0: The maximum resident set size (KB) = 807452 Test 056 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2505,14 +2505,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.235804 - 0: The maximum resident set size (KB) = 806920 + 0: The total amount of wall time = 499.374903 + 0: The maximum resident set size (KB) = 806840 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2551,14 +2551,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.217383 - 0: The maximum resident set size (KB) = 552304 + 0: The total amount of wall time = 351.393633 + 0: The maximum resident set size (KB) = 552136 Test 058 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2605,14 +2605,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.721985 - 0: The maximum resident set size (KB) = 807444 + 0: The total amount of wall time = 448.439512 + 0: The maximum resident set size (KB) = 807480 Test 059 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_decomp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2659,14 +2659,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.482981 - 0: The maximum resident set size (KB) = 806160 + 0: The total amount of wall time = 471.996466 + 0: The maximum resident set size (KB) = 806260 Test 060 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_2threads +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2713,14 +2713,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 543.746855 - 0: The maximum resident set size (KB) = 868556 + 0: The total amount of wall time = 431.019239 + 0: The maximum resident set size (KB) = 872280 Test 061 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_restart +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.313964 - 0: The maximum resident set size (KB) = 546732 + 0: The total amount of wall time = 338.856932 + 0: The maximum resident set size (KB) = 546848 Test 062 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 582.436811 - 0: The maximum resident set size (KB) = 803648 + 0: The total amount of wall time = 468.841267 + 0: The maximum resident set size (KB) = 803552 Test 063 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2835,14 +2835,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 703.851850 - 0: The maximum resident set size (KB) = 491936 + 0: The total amount of wall time = 571.700286 + 0: The maximum resident set size (KB) = 491760 Test 064 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 669.751632 - 0: The maximum resident set size (KB) = 486236 + 0: The total amount of wall time = 564.090525 + 0: The maximum resident set size (KB) = 486320 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_hrrr_warm Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2873,14 +2873,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.493727 - 0: The maximum resident set size (KB) = 616696 + 0: The total amount of wall time = 127.271949 + 0: The maximum resident set size (KB) = 616904 Test 066 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2889,14 +2889,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 157.922201 - 0: The maximum resident set size (KB) = 627724 + 0: The total amount of wall time = 142.737537 + 0: The maximum resident set size (KB) = 627644 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_radar_tten_warm Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 142.426445 - 0: The maximum resident set size (KB) = 619912 + 0: The total amount of wall time = 128.407739 + 0: The maximum resident set size (KB) = 620352 Test 068 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_hrrr_warm_2threads Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2921,14 +2921,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.465905 - 0: The maximum resident set size (KB) = 629388 + 0: The total amount of wall time = 83.466147 + 0: The maximum resident set size (KB) = 629332 Test 069 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_radar_tten_warm_2threads Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2937,14 +2937,14 @@ Checking test 070 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.407515 - 0: The maximum resident set size (KB) = 633024 + 0: The total amount of wall time = 84.452683 + 0: The maximum resident set size (KB) = 632792 Test 070 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2955,14 +2955,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 374.056984 - 0: The maximum resident set size (KB) = 505384 + 0: The total amount of wall time = 380.938535 + 0: The maximum resident set size (KB) = 505520 Test 071 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2973,54 +2973,54 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.019506 - 0: The maximum resident set size (KB) = 471508 + 0: The total amount of wall time = 193.687889 + 0: The maximum resident set size (KB) = 471568 Test 072 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.706375 - 0: The maximum resident set size (KB) = 186448 + 0: The total amount of wall time = 134.535338 + 0: The maximum resident set size (KB) = 186348 Test 073 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_hrrr_warm_debug Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 772.130279 - 0: The maximum resident set size (KB) = 645532 + 0: The total amount of wall time = 755.617556 + 0: The maximum resident set size (KB) = 645836 Test 074 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 773.148874 - 0: The maximum resident set size (KB) = 648524 + 0: The total amount of wall time = 756.364071 + 0: The maximum resident set size (KB) = 648636 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3047,348 +3047,348 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.872221 - 0: The maximum resident set size (KB) = 600988 + 0: The total amount of wall time = 162.000577 + 0: The maximum resident set size (KB) = 601200 Test 076 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.411626 - 0: The maximum resident set size (KB) = 601556 + 0: The total amount of wall time = 156.071606 + 0: The maximum resident set size (KB) = 601472 Test 077 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_stochy_debug Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.782932 - 0: The maximum resident set size (KB) = 608568 + 0: The total amount of wall time = 173.377322 + 0: The maximum resident set size (KB) = 608512 Test 078 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_lndp_debug Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.818313 - 0: The maximum resident set size (KB) = 605684 + 0: The total amount of wall time = 155.691392 + 0: The maximum resident set size (KB) = 605760 Test 079 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_csawmg_debug Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.552743 - 0: The maximum resident set size (KB) = 642384 + 0: The total amount of wall time = 247.053144 + 0: The maximum resident set size (KB) = 642484 Test 080 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_csawmgt_debug Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.838018 - 0: The maximum resident set size (KB) = 642444 + 0: The total amount of wall time = 243.693528 + 0: The maximum resident set size (KB) = 642560 Test 081 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_ras_debug Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.454266 - 0: The maximum resident set size (KB) = 613932 + 0: The total amount of wall time = 157.976278 + 0: The maximum resident set size (KB) = 614008 Test 082 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_diag_debug Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.269121 - 0: The maximum resident set size (KB) = 658708 + 0: The total amount of wall time = 160.187645 + 0: The maximum resident set size (KB) = 658896 Test 083 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_debug_p8 Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 186.775081 - 0: The maximum resident set size (KB) = 1379644 + 0: The total amount of wall time = 176.195139 + 0: The maximum resident set size (KB) = 1422392 Test 084 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_debug Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1050.118158 - 0: The maximum resident set size (KB) = 600056 + 0: The total amount of wall time = 1036.585486 + 0: The maximum resident set size (KB) = 600124 Test 085 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control_debug Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.661316 - 0: The maximum resident set size (KB) = 971824 + 0: The total amount of wall time = 286.489368 + 0: The maximum resident set size (KB) = 971776 Test 086 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_debug Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.686068 - 0: The maximum resident set size (KB) = 966608 + 0: The total amount of wall time = 280.349222 + 0: The maximum resident set size (KB) = 966568 Test 087 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_unified_drag_suite_debug Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.856163 - 0: The maximum resident set size (KB) = 971860 + 0: The total amount of wall time = 286.835671 + 0: The maximum resident set size (KB) = 971764 Test 088 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_diag_debug Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.648181 - 0: The maximum resident set size (KB) = 1055992 + 0: The total amount of wall time = 299.273114 + 0: The maximum resident set size (KB) = 1056088 Test 089 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_cires_ugwp_debug Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.019014 - 0: The maximum resident set size (KB) = 971120 + 0: The total amount of wall time = 291.842305 + 0: The maximum resident set size (KB) = 971044 Test 090 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_unified_ugwp_debug Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.715288 - 0: The maximum resident set size (KB) = 973224 + 0: The total amount of wall time = 292.504908 + 0: The maximum resident set size (KB) = 973288 Test 091 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_lndp_debug Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.559801 - 0: The maximum resident set size (KB) = 972520 + 0: The total amount of wall time = 287.499932 + 0: The maximum resident set size (KB) = 972468 Test 092 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_flake_debug Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.023728 - 0: The maximum resident set size (KB) = 971784 + 0: The total amount of wall time = 285.722138 + 0: The maximum resident set size (KB) = 971840 Test 093 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_progcld_thompson_debug Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.005678 - 0: The maximum resident set size (KB) = 971752 + 0: The total amount of wall time = 285.354923 + 0: The maximum resident set size (KB) = 971832 Test 094 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_noah_debug Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.664589 - 0: The maximum resident set size (KB) = 970376 + 0: The total amount of wall time = 279.432637 + 0: The maximum resident set size (KB) = 970512 Test 095 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_rrtmgp_debug Checking test 096 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 490.334321 - 0: The maximum resident set size (KB) = 1092624 + 0: The total amount of wall time = 483.374373 + 0: The maximum resident set size (KB) = 1092592 Test 096 rap_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_sfcdiff_debug Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.712880 - 0: The maximum resident set size (KB) = 971496 + 0: The total amount of wall time = 286.285257 + 0: The maximum resident set size (KB) = 971616 Test 097 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 474.438808 - 0: The maximum resident set size (KB) = 970920 + 0: The total amount of wall time = 469.781263 + 0: The maximum resident set size (KB) = 970960 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rrfs_v1beta_debug Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.895934 - 0: The maximum resident set size (KB) = 967748 + 0: The total amount of wall time = 280.404172 + 0: The maximum resident set size (KB) = 967800 Test 099 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.313521 - 0: The maximum resident set size (KB) = 216960 + 0: The total amount of wall time = 291.177480 + 0: The maximum resident set size (KB) = 216964 Test 100 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3399,14 +3399,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 313.563397 - 0: The maximum resident set size (KB) = 798244 + 0: The total amount of wall time = 298.014129 + 0: The maximum resident set size (KB) = 798136 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3453,14 +3453,14 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.066859 - 0: The maximum resident set size (KB) = 690276 + 0: The total amount of wall time = 391.961288 + 0: The maximum resident set size (KB) = 690420 Test 102 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3507,14 +3507,14 @@ Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.295377 - 0: The maximum resident set size (KB) = 688340 + 0: The total amount of wall time = 206.707952 + 0: The maximum resident set size (KB) = 688384 Test 103 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3561,14 +3561,14 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.773185 - 0: The maximum resident set size (KB) = 740492 + 0: The total amount of wall time = 367.746580 + 0: The maximum resident set size (KB) = 740552 Test 104 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3615,14 +3615,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.512706 - 0: The maximum resident set size (KB) = 742884 + 0: The total amount of wall time = 199.878325 + 0: The maximum resident set size (KB) = 743024 Test 105 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3669,14 +3669,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.977603 - 0: The maximum resident set size (KB) = 688872 + 0: The total amount of wall time = 215.540886 + 0: The maximum resident set size (KB) = 688868 Test 106 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3715,14 +3715,14 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.964321 - 0: The maximum resident set size (KB) = 525004 + 0: The total amount of wall time = 289.901287 + 0: The maximum resident set size (KB) = 524964 Test 107 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3761,14 +3761,14 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.313997 - 0: The maximum resident set size (KB) = 521308 + 0: The total amount of wall time = 106.031922 + 0: The maximum resident set size (KB) = 521196 Test 108 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3815,81 +3815,81 @@ Checking test 109 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 261.862206 - 0: The maximum resident set size (KB) = 711720 + 0: The total amount of wall time = 259.331746 + 0: The maximum resident set size (KB) = 711676 Test 109 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control_debug_dyn32_phy32 Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.455945 - 0: The maximum resident set size (KB) = 857532 + 0: The total amount of wall time = 282.892739 + 0: The maximum resident set size (KB) = 857556 Test 110 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hrrr_control_debug_dyn32_phy32 Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.429777 - 0: The maximum resident set size (KB) = 855844 + 0: The total amount of wall time = 281.497684 + 0: The maximum resident set size (KB) = 856252 Test 111 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/rap_control_dyn64_phy32_debug Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.366428 - 0: The maximum resident set size (KB) = 877020 + 0: The total amount of wall time = 289.885183 + 0: The maximum resident set size (KB) = 876832 Test 112 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 259.425294 - 0: The maximum resident set size (KB) = 653560 + 0: The total amount of wall time = 254.817027 + 0: The maximum resident set size (KB) = 653120 Test 113 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 293.756147 - 0: The maximum resident set size (KB) = 1016068 + 0: The total amount of wall time = 291.288707 + 0: The maximum resident set size (KB) = 1019532 Test 114 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3898,14 +3898,14 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 427.068008 - 0: The maximum resident set size (KB) = 692248 + 0: The total amount of wall time = 427.255940 + 0: The maximum resident set size (KB) = 692076 Test 115 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3914,14 +3914,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 913.419001 - 0: The maximum resident set size (KB) = 727532 + 0: The total amount of wall time = 911.719343 + 0: The maximum resident set size (KB) = 727836 Test 116 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3932,28 +3932,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1021.908557 - 0: The maximum resident set size (KB) = 740820 + 0: The total amount of wall time = 1019.491863 + 0: The maximum resident set size (KB) = 740956 Test 117 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_1nest_atm Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 372.305802 - 0: The maximum resident set size (KB) = 270708 + 0: The total amount of wall time = 379.104736 + 0: The maximum resident set size (KB) = 270932 Test 118 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3962,28 +3962,28 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 432.190337 - 0: The maximum resident set size (KB) = 274272 + 0: The total amount of wall time = 431.021095 + 0: The maximum resident set size (KB) = 274372 Test 119 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_global_1nest_atm Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 169.845772 - 0: The maximum resident set size (KB) = 172392 + 0: The total amount of wall time = 169.785941 + 0: The maximum resident set size (KB) = 172468 Test 120 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,14 +4001,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 502.108042 - 0: The maximum resident set size (KB) = 207028 + 0: The total amount of wall time = 496.628071 + 0: The maximum resident set size (KB) = 206304 Test 121 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4017,28 +4017,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 244.047339 - 0: The maximum resident set size (KB) = 282448 + 0: The total amount of wall time = 235.274320 + 0: The maximum resident set size (KB) = 282184 Test 122 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_storm_following_1nest_atm Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 223.902578 - 0: The maximum resident set size (KB) = 282288 + 0: The total amount of wall time = 220.860233 + 0: The maximum resident set size (KB) = 281848 Test 123 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4047,28 +4047,28 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 264.925715 - 0: The maximum resident set size (KB) = 316856 + 0: The total amount of wall time = 265.041829 + 0: The maximum resident set size (KB) = 317016 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_global_storm_following_1nest_atm Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 66.884802 - 0: The maximum resident set size (KB) = 187540 + 0: The total amount of wall time = 66.928950 + 0: The maximum resident set size (KB) = 187492 Test 125 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4079,14 +4079,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 742.656526 - 0: The maximum resident set size (KB) = 360596 + 0: The total amount of wall time = 739.086146 + 0: The maximum resident set size (KB) = 360252 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4094,14 +4094,14 @@ Checking test 127 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.329784 - 0: The maximum resident set size (KB) = 707428 + 0: The total amount of wall time = 382.693697 + 0: The maximum resident set size (KB) = 707280 Test 127 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4109,131 +4109,131 @@ Checking test 128 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 369.668488 - 0: The maximum resident set size (KB) = 694496 + 0: The total amount of wall time = 387.620960 + 0: The maximum resident set size (KB) = 694940 Test 128 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/hafs_regional_datm_cdeps Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1176.505450 - 0: The maximum resident set size (KB) = 824116 + 0: The total amount of wall time = 1166.245772 + 0: The maximum resident set size (KB) = 808952 Test 129 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_control_cfsr Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.135708 - 0: The maximum resident set size (KB) = 721140 + 0: The total amount of wall time = 168.949473 + 0: The maximum resident set size (KB) = 721192 Test 130 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_restart_cfsr Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 96.203320 - 0: The maximum resident set size (KB) = 716032 + 0: The total amount of wall time = 96.469633 + 0: The maximum resident set size (KB) = 708968 Test 131 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_control_gefs Checking test 132 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.034397 - 0: The maximum resident set size (KB) = 600960 + 0: The total amount of wall time = 161.929793 + 0: The maximum resident set size (KB) = 601084 Test 132 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_iau_gefs Checking test 133 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.687569 - 0: The maximum resident set size (KB) = 601256 + 0: The total amount of wall time = 166.617941 + 0: The maximum resident set size (KB) = 604928 Test 133 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_stochy_gefs Checking test 134 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.744360 - 0: The maximum resident set size (KB) = 600756 + 0: The total amount of wall time = 165.953224 + 0: The maximum resident set size (KB) = 603008 Test 134 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_ciceC_cfsr Checking test 135 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.818520 - 0: The maximum resident set size (KB) = 721116 + 0: The total amount of wall time = 168.681493 + 0: The maximum resident set size (KB) = 721184 Test 135 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_bulk_cfsr Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.201048 - 0: The maximum resident set size (KB) = 721120 + 0: The total amount of wall time = 166.162372 + 0: The maximum resident set size (KB) = 721260 Test 136 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_bulk_gefs Checking test 137 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.508304 - 0: The maximum resident set size (KB) = 600928 + 0: The total amount of wall time = 159.378504 + 0: The maximum resident set size (KB) = 603092 Test 137 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4242,14 +4242,14 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 449.930439 - 0: The maximum resident set size (KB) = 497068 + 0: The total amount of wall time = 424.437498 + 0: The maximum resident set size (KB) = 496628 Test 138 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4258,64 +4258,64 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.752629 - 0: The maximum resident set size (KB) = 477060 + 0: The total amount of wall time = 438.337625 + 0: The maximum resident set size (KB) = 476368 Test 139 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_multiple_files_cfsr Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.571638 - 0: The maximum resident set size (KB) = 709676 + 0: The total amount of wall time = 168.151312 + 0: The maximum resident set size (KB) = 721180 Test 140 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_3072x1536_cfsr Checking test 141 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 256.735864 - 0: The maximum resident set size (KB) = 1948364 + 0: The total amount of wall time = 252.776505 + 0: The maximum resident set size (KB) = 1947908 Test 141 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_gfs Checking test 142 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 250.056374 - 0: The maximum resident set size (KB) = 1947988 + 0: The total amount of wall time = 253.654453 + 0: The maximum resident set size (KB) = 1948332 Test 142 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_debug_cfsr Checking test 143 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 373.739112 - 0: The maximum resident set size (KB) = 714784 + 0: The total amount of wall time = 376.587524 + 0: The maximum resident set size (KB) = 714760 Test 143 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_lnd_gswp3 Checking test 144 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4324,14 +4324,14 @@ Checking test 144 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.990515 - 0: The maximum resident set size (KB) = 149936 + 0: The total amount of wall time = 12.032565 + 0: The maximum resident set size (KB) = 145908 Test 144 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/datm_cdeps_lnd_gswp3_rst Checking test 145 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4340,14 +4340,14 @@ Checking test 145 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 20.591433 - 0: The maximum resident set size (KB) = 154028 + 0: The total amount of wall time = 15.675134 + 0: The maximum resident set size (KB) = 153936 Test 145 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_p8_atmlnd_sbs Checking test 146 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc ............ALT CHECK......OK Comparing sfcf000.tile2.nc ............ALT CHECK......OK @@ -4432,14 +4432,14 @@ Checking test 146 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 228.924336 - 0: The maximum resident set size (KB) = 1425208 + 0: The total amount of wall time = 247.884753 + 0: The maximum resident set size (KB) = 1425144 Test 146 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/control_atmwav Checking test 147 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4483,14 +4483,14 @@ Checking test 147 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 92.468344 - 0: The maximum resident set size (KB) = 450388 + 0: The total amount of wall time = 95.664574 + 0: The maximum resident set size (KB) = 450280 Test 147 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/atmaero_control_p8 Checking test 148 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4534,14 +4534,14 @@ Checking test 148 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.773467 - 0: The maximum resident set size (KB) = 1461140 + 0: The total amount of wall time = 261.020198 + 0: The maximum resident set size (KB) = 1478596 Test 148 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/atmaero_control_p8_rad Checking test 149 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4585,14 +4585,14 @@ Checking test 149 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.414722 - 0: The maximum resident set size (KB) = 1498988 + 0: The total amount of wall time = 302.574517 + 0: The maximum resident set size (KB) = 1482012 Test 149 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/atmaero_control_p8_rad_micro Checking test 150 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 150 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 303.544291 - 0: The maximum resident set size (KB) = 1503540 + 0: The total amount of wall time = 303.416278 + 0: The maximum resident set size (KB) = 1487220 Test 150 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230120/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31689/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28836/regional_atmaq Checking test 151 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4659,12 +4659,12 @@ Checking test 151 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 647.286081 - 0: The maximum resident set size (KB) = 1082172 + 0: The total amount of wall time = 665.526029 + 0: The maximum resident set size (KB) = 1082052 Test 151 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 23 22:33:07 EST 2023 -Elapsed time: 02h:42m:16s. Have a nice day! +Wed Jan 25 21:06:37 EST 2023 +Elapsed time: 02h:07m:55s. Have a nice day!