forked from ufs-community/ufs-weather-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME_HERA.txt
80 lines (55 loc) · 2.22 KB
/
README_HERA.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
################################################################################
# Hera/Intel
################################################################################
# OFFICIAL BASELINE
# /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20190824
# OWN BASELINE
# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT
# RUN DIRS - substitute $USER with your username
# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_...
export NEMS_COMPILER=intel # optional, default is intel if not set
export ACCNR=... # set account name/number for job scheduler
# from the top-level directory of NEMSfv3gfs
cd tests
# Test standard compile
./compile.sh $PWD/../FV3 hera.intel 2>&1 | tee log.compile
# Regression tests against official baseline
./rt.sh -f 2>&1 | tee rt_full.log
################################################################################
# Hera/GNU
################################################################################
# OFFICIAL BASELINE
# N/A
# OWN BASELINE
# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_GNU
# RUN DIRS
# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_...
export NEMS_COMPILER=gnu
export ACCNR=... # set account name/number for job scheduler
# from the top-level directory of NEMSfv3gfs
cd tests
# Test standard compile
./compile.sh $PWD/../FV3 hera.gnu 2>&1 | tee log.compile
# Create new baseline
./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log
# Regression tests against new baseline
./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log
################################################################################
# Hera/PGI
################################################################################
# OFFICIAL BASELINE
# N/A
# OWN BASELINE
# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_PGI
# RUN DIRS
# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_...
export NEMS_COMPILER=pgi
export ACCNR=... # set account name/number for job scheduler
# from the top-level directory of NEMSfv3gfs
cd tests
# Test standard compile
./compile.sh $PWD/../FV3 hera.pgi 2>&1 | tee log.compile
# Create new baseline
./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log
# Regression tests against new baseline
./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log