-
Notifications
You must be signed in to change notification settings - Fork 278
Expand file tree
/
Copy pathrt.conf
More file actions
481 lines (409 loc) · 41.8 KB
/
rt.conf
File metadata and controls
481 lines (409 loc) · 41.8 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
### RT.CONF FORMATTING ###
# COMPILE Line ( Items separated by a | )
# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job
# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler.
# If two compilations are identical except compiler, please use the same name for each.
# Item 3: Compiler to use in build (intel or gnu)
# Item 4: CMAKE Options - Provide all CMAKE options for the build
# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines)
## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines
## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn
# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code
#
# RUN Line ( Items separated by a | )
## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test
# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run
# Item 2: Test name. (Which test in the tests/tests directory should be sourced)
# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines).
## reference example above
# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test.
# Item 5: Test name to compare baselines with if not itself.
#############################
### Intel (Classic) Tests ###
#############################
### S2S tests ###
#GEFS
COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 |
RUN | cpld_control_gefs | - noaacloud derecho gaeac6 | baseline |
RUN | cpld_restart_gefs | - noaacloud derecho gaeac6 | | cpld_control_gefs
RUN | cpld_dcp_gefs | - noaacloud derecho wcoss2 acorn gaeac6 | |
#RUN | cpld_nothr_gefs | - noaacloud derecho | |
#GFS
COMPILE | s2sw_32bit_pdlib | intel | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DUFS_TRACING=ON | - noaacloud | fv3 |
RUN | cpld_control_gfsv17 | - noaacloud | baseline |
RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17
RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17
RUN | cpld_restart_gfsv17_iau | - noaacloud | | cpld_control_gfsv17_iau
RUN | cpld_mpi_gfsv17 | - noaacloud | |
#SFS
COMPILE | s2s_32bit_sfs | intel | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - noaacloud | fv3 |
RUN | cpld_control_sfs | - noaacloud | baseline |
RUN | cpld_restart_sfs | - noaacloud | | cpld_control_sfs
# DEBUG
COMPILE | s2s_32bit_sfs_debug | intel | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DDEBUG=ON | - noaacloud | fv3 |
RUN | cpld_debug_sfs | - noaacloud | baseline |
COMPILE | s2sw_32bit_pdlib_debug | intel | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | cpld_debug_gfsv17 | - noaacloud | baseline |
COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 |
RUN | cpld_control_p8 | - noaacloud | baseline |
RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline |
RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8
RUN | cpld_2threads_p8 | - noaacloud | |
RUN | cpld_decomp_p8 | - noaacloud | |
RUN | cpld_mpi_p8 | - noaacloud | |
RUN | cpld_control_ciceC_p8 | - noaacloud | baseline |
RUN | cpld_control_c192_p8 | - wcoss2 acorn s4 noaacloud derecho | baseline |
RUN | cpld_restart_c192_p8 | - wcoss2 acorn s4 noaacloud gaeac6 derecho | | cpld_control_c192_p8
# CPLD LND
COMPILE | s2swl | intel | -DAPP=S2SWL -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 |
RUN | cpld_control_p8_lnd | - noaacloud wcoss2 derecho | baseline |
RUN | cpld_restart_p8_lnd | - noaacloud wcoss2 derecho | | cpld_control_p8_lnd
# Waves and aerosol off for computing fluxes in mediator
COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 |
RUN | cpld_control_noaero_p8_agrid | | baseline |
# Unstructured WW3 mesh
COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1,FV3_coupled_lowres -DPDLIB=ON | - noaacloud | fv3 |
RUN | cpld_control_c48_5deg | | baseline |
RUN | cpld_warmstart_c48_5deg | - noaacloud | baseline |
RUN | cpld_restart_c48_5deg | - noaacloud | | cpld_warmstart_c48_5deg
RUN | cpld_control_c24_5deg | | baseline |
RUN | cpld_warmstart_c24_5deg | - noaacloud | baseline |
RUN | cpld_restart_c24_5deg | - noaacloud | | cpld_warmstart_c24_5deg
RUN | cpld_control_c24_9deg | | baseline |
RUN | cpld_warmstart_c24_9deg | - noaacloud | baseline |
RUN | cpld_restart_c24_9deg | - noaacloud | | cpld_warmstart_c24_9deg
RUN | cpld_control_c12_9deg | | baseline |
RUN | cpld_warmstart_c12_9deg | - noaacloud | baseline |
RUN | cpld_restart_c12_9deg | - noaacloud | | cpld_warmstart_c12_9deg
### ATM tests ###
COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v16_gfdlmpv3,FV3_GFS_v17_p8_ugwpv1_tempo -D32BIT=ON | | fv3 |
RUN | control_CubedSphereGrid | | baseline |
RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline |
RUN | control_latlon | | baseline |
RUN | control_wrtGauss_netcdf_parallel | | baseline |
RUN | control_c48 | | baseline |
RUN | control_c48.v2.sfc | | baseline |
RUN | control_c48_lnd_iau | | baseline |
RUN | control_c192 | - noaacloud | baseline |
RUN | control_c384 | | baseline |
RUN | control_c384gdas | - noaacloud | baseline |
RUN | control_stochy | | baseline |
RUN | control_stochy_restart | - noaacloud | | control_stochy
RUN | control_lndp | | baseline |
RUN | control_iovr4_gfdlmpv3 | | baseline |
RUN | control_p8 | - noaacloud | baseline |
RUN | control_p8.v2.sfc | - noaacloud | baseline |
RUN | control_p8_ugwpv1 | - noaacloud | baseline |
RUN | control_p8_ugwpv1_tempo | - noaacloud | baseline |
RUN | control_p8_ugwpv1_tempo_aerosol | - noaacloud | baseline |
RUN | control_p8_ugwpv1_tempo_aerosol_hail | - noaacloud | baseline |
RUN | control_restart_p8 | - noaacloud | | control_p8
RUN | control_noqr_p8 | - noaacloud | |
RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8
RUN | control_decomp_p8 | - noaacloud | |
RUN | control_2threads_p8 | - noaacloud | |
RUN | control_p8_lndp | | baseline |
RUN | control_p8_rrtmgp | - noaacloud | baseline |
RUN | control_p8_mynn | - noaacloud | baseline |
RUN | merra2_thompson | - noaacloud | baseline |
RUN | merra2_hf_thompson | - noaacloud | baseline |
RUN | regional_control | | baseline |
RUN | regional_restart | - noaacloud | | regional_control
RUN | regional_decomp | - noaacloud | |
RUN | regional_2threads | - derecho noaacloud | |
RUN | regional_noquilt | - s4 | baseline |
RUN | regional_netcdf_parallel | - acorn | baseline |
RUN | regional_2dwrtdecomp | | |
RUN | regional_wofs | - s4 | baseline |
### RTE-RRTMGP 32BIT
COMPILE | atm_dyn32_rad32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DRRTMGP_32BIT=ON | | fv3 |
RUN | control_p8_rrtmgp_rad32 | - noaacloud | baseline |
COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 |
RUN | rap_control | | baseline |
RUN | regional_spp_sppt_shum_skeb | | baseline |
RUN | rap_decomp | - noaacloud | |
RUN | rap_2threads | - noaacloud | |
RUN | rap_restart | - noaacloud | | rap_control
RUN | rap_sfcdiff | - noaacloud | baseline |
RUN | rap_sfcdiff_decomp | - noaacloud | |
RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff
RUN | hrrr_control | - noaacloud | baseline |
RUN | hrrr_control_decomp | - noaacloud | |
RUN | hrrr_control_2threads | - noaacloud | |
RUN | hrrr_control_restart | - noaacloud | | hrrr_control
RUN | rrfs_v1beta | | baseline |
RUN | rrfs_v1nssl | | baseline |
RUN | rrfs_v1nssl_nohailnoccn | | baseline |
COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 |
RUN | control_csawmg | - noaacloud | baseline |
RUN | control_ras | - noaacloud | baseline |
# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere
COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 |
RUN | control_wam | - noaacloud | baseline |
### DEBUG ATM tests ###
COMPILE | atm_debug_dyn32 | intel | -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_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 |
RUN | control_CubedSphereGrid_debug | - noaacloud | baseline |
RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline |
RUN | control_stochy_debug | - noaacloud | baseline |
RUN | control_lndp_debug | - noaacloud | baseline |
RUN | control_csawmg_debug | - noaacloud | baseline |
RUN | control_ras_debug | - noaacloud | baseline |
RUN | control_diag_debug | - noaacloud | baseline |
RUN | control_debug_p8 | - noaacloud | baseline |
RUN | regional_debug | - noaacloud | baseline |
RUN | rap_control_debug | - noaacloud | baseline |
RUN | hrrr_control_debug | - noaacloud | baseline |
RUN | hrrr_gf_debug | - noaacloud | baseline |
RUN | hrrr_c3_debug | - noaacloud | baseline |
RUN | rap_unified_drag_suite_debug | - noaacloud | |
RUN | rap_diag_debug | - noaacloud | baseline |
RUN | rap_cires_ugwp_debug | - noaacloud | baseline |
RUN | rap_unified_ugwp_debug | - noaacloud | |
RUN | rap_lndp_debug | - noaacloud | baseline |
RUN | rap_progcld_thompson_debug | - noaacloud | baseline |
RUN | rap_noah_debug | - noaacloud | baseline |
RUN | rap_sfcdiff_debug | - noaacloud | baseline |
RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline |
###RUN | rrfs_v1beta_debug | - noaacloud | baseline |
RUN | rap_clm_lake_debug | - noaacloud | baseline |
RUN | gnv1_c96_no_nest_debug | - noaacloud orion hercules | baseline |
COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | control_wam_debug | - noaacloud hercules | baseline |
### 32-bit physics tests ###
COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 |
RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline |
RUN | rap_control_dyn32_phy32 | - noaacloud | baseline |
RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline |
RUN | rap_2threads_dyn32_phy32 | - noaacloud | |
RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | |
RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | |
RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32
RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32
RUN | conus13km_control | - noaacloud | baseline |
RUN | conus13km_2threads | - noaacloud | |
RUN | conus13km_decomp | - noaacloud | |
RUN | conus13km_restart | - noaacloud | | conus13km_control
COMPILE | rrfs_dyn32_phy32_faster_cdeps | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DCDEPS=ON -DCDEPS_INLINE=ON | - noaacloud | fv3 |
RUN | conus13km_gl_inline | - noaacloud | baseline |
COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 |
RUN | rap_control_dyn64_phy32 | - noaacloud | baseline |
COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | conus13km_debug | - noaacloud | baseline |
RUN | conus13km_debug_qr | - noaacloud | |
RUN | conus13km_debug_2threads | - noaacloud | |
RUN | conus13km_debug_decomp | - noaacloud | |
RUN | conus13km_radar_tten_debug | - noaacloud | baseline |
COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline |
### HAFS tests ###
COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1,FV3_HAFS_v1_gfdlmpv3_tedmf -D32BIT=ON | | fv3 |
RUN | hafs_regional_atm | | baseline |
RUN | hafs_regional_atm_gfdlmpv3 | | baseline |
RUN | hafs_regional_atm_thompson_gfdlsf | | baseline |
#RUN | hafs_regional_atm_ocn | | baseline |
RUN | hafs_regional_atm_wav | | baseline |
#RUN | hafs_regional_atm_ocn_wav | - noaacloud hera | baseline |
RUN | hafs_regional_1nest_atm | - s4 noaacloud | baseline |
RUN | hafs_regional_telescopic_2nests_atm | - s4 noaacloud | baseline |
RUN | hafs_global_1nest_atm | - s4 noaacloud | baseline |
RUN | hafs_global_multiple_4nests_atm | - s4 noaacloud | baseline |
RUN | hafs_regional_specified_moving_1nest_atm | - s4 noaacloud | baseline |
RUN | hafs_regional_storm_following_1nest_atm | - s4 noaacloud | baseline |
#RUN | hafs_regional_storm_following_1nest_atm_ocn | - s4 noaacloud | baseline |
RUN | hafs_global_storm_following_1nest_atm | - s4 noaacloud | baseline |
# This probably works on S4, but I cannot know for certain. I don't have access to the machine.
RUN | gnv1_nested | - s4 noaacloud | baseline |
#COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - noaacloud s4 | fv3 |
#RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - s4 noaacloud | baseline |
#COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | - noaacloud s4 | fv3 |
#RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - s4 noaacloud | baseline |
#RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - s4 noaacloud | baseline |
COMPILE | hafs_mom6w | intel| -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | - noaacloud s4 | fv3 |
RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - s4 noaacloud | baseline |
COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 |
RUN | hafs_regional_docn | - noaacloud | baseline |
RUN | hafs_regional_docn_oisst | - noaacloud | baseline |
#RUN | hafs_regional_datm_cdeps | - s4 noaacloud | baseline |
### CDEPS Data Atmosphere tests ###
COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS -DWARN_AS_ERROR=OFF | - wcoss2 | fv3 |
RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline |
RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr
RUN | datm_cdeps_control_gefs | - wcoss2 | baseline |
RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline |
RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline |
RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline |
RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline |
RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline |
RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | |
RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline |
RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline |
COMPILE | datm_cdeps_debug | intel | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 |
RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline |
### CDEPS Data Atmosphere tests with LND ###
COMPILE | datm_cdeps_land | intel | -DAPP=LND -DWARN_AS_ERROR=ON | - wcoss2 | fv3 |
RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline |
RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline |
RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5
### CDEPS Data Atmosphere tests with LM4 ###
COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 -DWARN_AS_ERROR=ON | + hera orion | fv3 |
RUN | datm_cdeps_lm4_gswp3 | + hera orion | baseline |
RUN | datm_cdeps_lm4_gswp3_rst | + hera orion | | datm_cdeps_lm4_gswp3
### AMIP+ tests ###
COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 |
RUN | atm_ds2s_docn_pcice | - noaacloud | baseline |
#Needs updating
#COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 acorn | fv3 |
#RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8
### ATM-LND tests ###
COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 |
RUN | control_p8_atmlnd | - noaacloud wcoss2 derecho | baseline |
RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 derecho | | control_p8_atmlnd
COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DDEBUG=ON | | fv3 |
RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 derecho | baseline |
### ATM-WAV tests ###
#mediator (cmeps)
COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 |
RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline |
### ATM-GOCART tests ###
COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 |
RUN | atmaero_control_p8 | - noaacloud | baseline |
RUN | atmaero_control_p8_rad | - noaacloud | baseline |
RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline |
### ATM-CMAQ tests ###
COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - s4 | fv3 |
RUN | regional_atmaq | - s4 | baseline |
RUN | regional_atmaq_canopy | - s4 | baseline |
COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v16 -DDEBUG=ON -D32BIT=ON | - noaacloud s4 | fv3 |
RUN | regional_atmaq_debug | - s4 noaacloud | baseline |
### ATM-FBH test ###
COMPILE | atm_fbh | intel | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 |
RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline |
#############################
### Intel (LLVM) Tests ######
#############################
# GFS
COMPILE | s2sw_32bit_pdlib | intelllvm | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + ursa | fv3 |
RUN | cpld_control_gfsv17 | + ursa | baseline |
COMPILE | s2sw_32bit_pdlib_debug | intelllvm | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + ursa | fv3 |
RUN | cpld_debug_gfsv17 | + ursa | baseline |
# SFS
COMPILE | s2s_32bit_sfs | intelllvm | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | + ursa | fv3 |
RUN | cpld_control_sfs | + ursa | baseline |
COMPILE | s2s_32bit_sfs_debug | intelllvm | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DDEBUG=ON | + ursa | fv3 |
RUN | cpld_debug_sfs | + ursa | baseline |
# Regional RRFS tests
COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON | + hera ursa | fv3 |
RUN | rap_control_dyn32_phy32 | + hera ursa | baseline |
COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -DCCPP_32BIT=ON | + hera ursa | fv3 |
RUN | rap_control_dyn64_phy32 | + hera ursa | baseline |
# HAFS tests
#COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | + orion ursa | fv3 |
#RUN | hafs_regional_storm_following_1nest_atm_ocn | + orion ursa | baseline |
#COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | + ursa | fv3 |
#RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | + ursa | baseline |
# DATM/CDEPS tests
COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS -DWARN_AS_ERROR=ON | + ursa | fv3 |
RUN | datm_cdeps_control_cfsr | + ursa | baseline |
COMPILE | datm_cdeps_debug | intelllvm | -DAPP=NG-GODAS -DDEBUG=ON | + ursa | fv3 |
RUN | datm_cdeps_debug_cfsr | + ursa | baseline |
#############################
### Gnu Tests ###############
#############################
### CCPP PROD tests ###
COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules ursa derecho| fv3 |
RUN | control_c48 | + hera hercules ursa derecho | baseline |
RUN | control_stochy | + hera hercules ursa derecho | baseline |
RUN | control_ras | + hera hercules ursa derecho | baseline |
RUN | control_p8 | + hera hercules ursa derecho | baseline |
RUN | control_p8_ugwpv1 | + hera hercules ursa derecho | baseline |
COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera hercules ursa derecho| fv3 |
RUN | rap_control | + hera hercules ursa derecho | baseline |
RUN | rap_decomp | + hera hercules ursa derecho | |
RUN | rap_2threads | + hera hercules ursa derecho | |
RUN | rap_restart | + hera hercules ursa derecho | | rap_control
RUN | rap_sfcdiff | + hera hercules ursa derecho | baseline |
RUN | rap_sfcdiff_decomp | + hera hercules ursa derecho | |
RUN | rap_sfcdiff_restart | + hera hercules ursa derecho | | rap_sfcdiff
RUN | hrrr_control | + hera hercules ursa derecho | baseline |
RUN | hrrr_control_noqr | + hera hercules ursa derecho | |
RUN | hrrr_control_2threads | + hera hercules ursa derecho | |
RUN | hrrr_control_decomp | + hera hercules ursa derecho | |
RUN | hrrr_control_restart | + hera hercules ursa derecho | | hrrr_control
RUN | hrrr_control_restart_noqr | + hera hercules ursa derecho | | hrrr_control_noqr
RUN | rrfs_v1beta | + hera hercules ursa derecho | baseline |
COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules ursa derecho | fv3 |
RUN | control_csawmg | + hera hercules ursa derecho | baseline |
### CCPP DEBUG tests ###
# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode)
COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera hercules ursa derecho| fv3 |
RUN | control_diag_debug | + hera hercules ursa derecho | baseline |
RUN | regional_debug | + hera hercules ursa derecho | baseline |
RUN | rap_control_debug | + hera hercules ursa derecho | baseline |
RUN | hrrr_control_debug | + hera hercules ursa derecho | baseline |
RUN | hrrr_gf_debug | + hera hercules ursa derecho | baseline |
RUN | hrrr_c3_debug | + hera hercules ursa derecho | baseline |
RUN | rap_diag_debug | + hera hercules ursa derecho | baseline |
RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera hercules ursa derecho | baseline |
RUN | rap_progcld_thompson_debug | + hera hercules ursa derecho | baseline |
###RUN | rrfs_v1beta_debug | + hera hercules ursa derecho | baseline |
RUN | control_ras_debug | + hera hercules ursa derecho | baseline |
RUN | control_stochy_debug | + hera hercules ursa derecho | baseline |
RUN | control_debug_p8 | + hera hercules ursa derecho | baseline |
RUN | rap_clm_lake_debug | + hera hercules ursa derecho | baseline |
RUN | gnv1_c96_no_nest_debug | + hera hercules ursa derecho | baseline |
COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules ursa derecho| fv3 |
RUN | control_wam_debug | + hera hercules ursa derecho | baseline |
### DEBUG ATM tests ###
COMPILE | atm_debug_dyn32 | gnu | -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_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules ursa derecho| fv3 |
RUN | control_csawmg_debug | + hera hercules ursa derecho | baseline |
### 32-bit physics tests ###
COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera hercules ursa derecho| fv3 |
RUN | rap_control_dyn32_phy32 | + hera hercules ursa derecho | baseline |
RUN | hrrr_control_dyn32_phy32 | + hera hercules ursa derecho | baseline |
RUN | rap_2threads_dyn32_phy32 | + hera hercules ursa derecho | |
RUN | hrrr_control_2threads_dyn32_phy32 | + hera hercules ursa derecho | |
RUN | hrrr_control_decomp_dyn32_phy32 | + hera hercules ursa derecho | |
RUN | rap_restart_dyn32_phy32 | + hera hercules ursa derecho | | rap_control_dyn32_phy32
RUN | hrrr_control_restart_dyn32_phy32 | + hera hercules ursa derecho | | hrrr_control_dyn32_phy32
RUN | conus13km_control | + hera hercules ursa derecho | baseline |
RUN | conus13km_2threads | + hera hercules ursa derecho | |
RUN | conus13km_decomp | + hera hercules ursa derecho | |
RUN | conus13km_restart | + hera hercules ursa derecho | | conus13km_control
COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera hercules ursa derecho| fv3 |
RUN | rap_control_dyn64_phy32 | + hera hercules ursa derecho | baseline |
COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules ursa derecho| fv3 |
RUN | rap_control_debug_dyn32_phy32 | + hera hercules ursa derecho | baseline |
RUN | hrrr_control_debug_dyn32_phy32 | + hera hercules ursa derecho | baseline |
RUN | conus13km_debug | + hera hercules ursa derecho | baseline |
RUN | conus13km_debug_qr | + hera hercules ursa derecho | |
RUN | conus13km_debug_2threads | + hera hercules ursa derecho | |
RUN | conus13km_debug_decomp | + hera hercules ursa derecho | |
RUN | conus13km_radar_tten_debug | + hera hercules ursa derecho | baseline |
COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules ursa derecho| fv3 |
RUN | rap_control_dyn64_phy32_debug | + hera hercules ursa derecho | baseline |
### S2S tests ###
# GFS
COMPILE | s2sw_32bit_pdlib | gnu | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + hera hercules ursa derecho | fv3 |
RUN | cpld_control_gfsv17 | + hera hercules ursa derecho | baseline |
COMPILE | s2sw_32bit_pdlib_debug | gnu | -DAPP=S2SW -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + hera hercules ursa derecho | fv3 |
RUN | cpld_debug_gfsv17 | + hera hercules ursa derecho | baseline |
# SFS
COMPILE | s2s_32bit_sfs | gnu | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | + hera hercules ursa derecho | fv3 |
RUN | cpld_control_sfs | + hera hercules ursa derecho | baseline |
COMPILE | s2s_32bit_sfs_debug | gnu | -DAPP=S2S -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DDEBUG=ON | + hera hercules ursa derecho | fv3 |
RUN | cpld_debug_sfs | + hera hercules ursa derecho | baseline |
#Turn off until fixed
#COMPILE | s2swa_32bit_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 |
#RUN | cpld_debug_gefs | - noaacloud derecho | baseline |
### CDEPS Data Atmosphere test ###
COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS -DWARN_AS_ERROR=OFF | + hera hercules ursa derecho| fv3 |
RUN | datm_cdeps_control_cfsr | + hera hercules ursa derecho | baseline |
### UFS with MPAS dynamical core ###
COMPILE | atm_mpas_dyn32 | gnu | -DAPP=ATMMPAS -DCCPP_SUITES=MPAS_RRFS -D32BIT=ON | + hera hercules derecho | fv3 |
RUN | control_gfs_mpas | + hera hercules derecho | baseline |
#RUN | control_rrfs_mpas | + hera hercules derecho | baseline |
# Minimal "process model" physics idealized test
COMPILE | pm_ideal_doubly_periodic | intel | -DAPP=ATM -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_ideal_mp_nssl -DCCPP_32BIT=ON | + hera | fv3 |
RUN | pm_ideal_supercell | + hera | baseline |