forked from ESMCI/cime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
14883 lines (13890 loc) · 632 KB
/
ChangeLog
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
======================================================================
Originator: Chris Fischer
Date: 03-12-2019
Tag: cime5.8.0
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Merge maint-5.6 branch.
- Cleanup of build.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
5f939ae Merge pull request #3039 from ESMCI/maint-5.6
3ebf15e Merge pull request #3024 from jedwards4b/jedwards/standard_makefile_args
Modified files: git diff --name-status [previous_tag]
M config/cesm/config_grids_nuopc.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M scripts/Tools/Makefile
A scripts/Tools/get_standard_makefile_args
M scripts/lib/CIME/Servers/svn.py
M scripts/lib/CIME/build.py
M scripts/lib/CIME/buildlib.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/check_input_data.py
M src/build_scripts/buildlib.csm_share
M src/build_scripts/buildlib.gptl
M src/build_scripts/buildlib.mct
M src/build_scripts/buildlib.mpi-serial
M src/build_scripts/buildlib.pio
M src/drivers/mct/cime_config/buildexe
M src/drivers/nuopc/cime_config/buildexe
M src/share/timing/Makefile
======================================================================
======================================================================
Originator: Bill Sacks
Date: 03-08-2019
Tag: cime5.7.9
Answer Changes: roundoff differences and namelist changes in NYF forced cases for mct (from #3020)
Tests: scripts_regression_tests, CTSM's aux_clm test suite
Dependencies:
Brief Summary:
- Fix cheyenne for recent machine update (from maint-5.6 merge)
- New inputdata chksum feature (from maint-5.6 merge)
- Update NYF CORE2 DROF data stream file
- Update support for CAM-SE grids
- Misc changes from E3SM split
- Misc additional changes from maint-5.6 branch
User interface changes: none
PR summary: git log --oneline --first-parent [previous_tag]..master
518bddb73 Merge pull request #3030 from ESMCI/fischer/SE_grids
eb2eb704f Merge branch 'maint-5.6' for PR 3029
69b5419f5 fix typo
dedae2335 fix py3 error
460fac35f fix testing on centos7-linux
549c8d39b Merge pull request #3021 from ESMCI/jgfouca/branch-for-acme-split-2019-02-28
e91008eed Fix minor bug in e3sm mgmt
191289eb0 Merge pull request #3020 from alperaltuntas/fix_core2_nyf_datastream
5f7029e93 Merge pull request #3016 from colleenRooney/coeus-xml-config
Modified files: git diff --name-status [previous_tag]
M ChangeLog
M config/cesm/config_grids.xml
M config/cesm/config_grids_common.xml
M config/cesm/config_grids_mct.xml
M config/cesm/config_inputdata.xml
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M config/e3sm/allactive/config_pesall.xml
M config/e3sm/config_grids.xml
M config/e3sm/machines/config_batch.xml
M config/e3sm/machines/config_compilers.xml
M config/e3sm/machines/config_machines.xml
M config/e3sm/machines/config_pio.xml
M config/e3sm/tests.py
M config/xml_schemas/config_compilers_v2.xsd
M doc/source/misc_tools/ect.rst
M scripts/Tools/Makefile
M scripts/Tools/check_input_data
M scripts/create_test
M scripts/lib/CIME/BuildTools/cmakemacroswriter.py
M scripts/lib/CIME/BuildTools/macrowriterbase.py
M scripts/lib/CIME/BuildTools/makemacroswriter.py
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/Servers/wget.py
M scripts/lib/CIME/SystemTests/tsc.py
M scripts/lib/CIME/XML/generic_xml.py
M scripts/lib/CIME/XML/inputdata.py
M scripts/lib/CIME/bless_test_results.py
M scripts/lib/CIME/build.py
M scripts/lib/CIME/case/case_st_archive.py
M scripts/lib/CIME/case/case_submit.py
M scripts/lib/CIME/case/check_input_data.py
M scripts/lib/CIME/test_scheduler.py
M scripts/lib/e3sm_cime_mgmt.py
M scripts/lib/get_tests.py
M scripts/tests/scripts_regression_tests.py
A src/build_scripts/buildlib.kokkos
M src/components/data_comps/drof/cime_config/namelist_definition_drof.xml
M src/externals/pio1/pio/pio_types.F90
M src/externals/pio1/pio/piodarray.F90.in
M src/externals/pio2/ctest/CTestEnvironment-nwscla.cmake
M src/externals/pio2/src/clib/pio_nc.c
M src/externals/pio2/tests/cunit/test_async_multi2.c
M src/externals/pio2/tests/cunit/test_darray_2sync.c
M src/externals/pio2/tests/general/ncdf_simple_tests.F90.in
M src/share/timing/gptl.c
M src/share/timing/private.h
======================================================================
======================================================================
Originator: Chris Fischer
Date: 2-25-2019
Tag: cime5.7.8
Answer Changes: answer changes in all CORE2 and JRA forced cases (because coldair_outbreak_mod turned off)
Tests: scripts_regression_tests, SMS_D_Ln9.T42_T42.FSCAM.cheyenne_intel.cam-scam_mpace_outfrq9s
Dependencies:
Brief Summary:
- Split the cesm/config_grids.xml file into 4 parts add new schema.
- Add ne30np4 and ne30pg3 grid support
- Fix deprecated flag.
- Merge to latest pio2 version.
- Fix issues with centos7-linux build.
- Merge in latest nuopc-cmeps development code.
- Merge maint-5.6
- Port to athena.
- Fix CIME dashboad regression tests.
- Port to new cgd system izumi.
- Report missing variables in cprnc(cprnc changes on machines backed outed to fix failing tests)
- Avoid an error message when CIME_MODEL is cesm - CAM_TARGET is not defined.
- Modifications to allow for E3SM developer tests for the SE SCM.
- Add a test for tools/configure.
- Minor JRA & CORE2 DATM forcing changes
- Remove debug print
- Fix test issue for cesm.
- Better handling of file permissions when copying files.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
5f31182 Merge pull request #3014 from jedwards4b/config_grids_v2.1
9e2c5e9 Merge pull request #3015 from ESMCI/fischer/ne30_support
25d2332 fix deprecated flag
d13fb72 Merge pull request #3009 from jedwards4b/pio2_merge_0c390bf9c
ed1a6f4 Merge pull request #3013 from jedwards4b/centos7-linux-update
8c45f67 Merge pull request #3011 from jedwards4b/nuopc-cmeps
3b76217 Merge pull request #3008 from ESMCI/maint-5.6
ba09f0a Merge pull request #3006 from ESMCI/jedwards/athena_port
dd162f2 Merge pull request #3003 from ESMCI/jgfouca/fix_failing_tests
a4faaf4 Merge pull request #3000 from jedwards4b/izumi_port_5.6
51ab1c1 Merge pull request #2988 from billsacks/cprnc_report_fieldlist_change
a5bea3a Merge pull request #2992 from jedwards4b/cam_target_error
4c79172 Merge pull request #2990 from ESMCI/bogensch/SCM_SE_test
5fa1832 Merge pull request #2985 from ESMCI/jgfouca/add_test_for_config
9adff6a Merge pull request #2984 from alperaltuntas/jra_updates
60b93de remove debug print
63738cb fix test issue for cesm
a7938a3 Merge pull request #2983 from ESMCI/jgfouca/better_perm_mgmt_copy
Modified files: git diff --name-status [previous_tag]
M CMakeLists.txt
M config/cesm/config_files.xml
M config/cesm/config_grids.xml
A config/cesm/config_grids_common.xml
A config/cesm/config_grids_mct.xml
A config/cesm/config_grids_nuopc.xml
M config/cesm/config_inputdata.xml
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M config/e3sm/config_files.xml
M config/e3sm/tests.py
M config/xml_schemas/config_batch.xsd
M config/xml_schemas/config_compilers_v2.xsd
A config/xml_schemas/config_grids_v2.1.xsd
M doc/source/data_models/data-atm.rst
M doc/source/users_guide/cloning-a-case.rst
M scripts/Tools/Makefile
M scripts/Tools/archive_metadata
M scripts/lib/CIME/SystemTests/homme.py
M scripts/lib/CIME/XML/env_batch.py
M scripts/lib/CIME/XML/generic_xml.py
M scripts/lib/CIME/XML/grids.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_cmpgen_namelists.py
M scripts/lib/CIME/get_timing.py
M scripts/lib/CIME/hist_utils.py
M scripts/lib/CIME/namelist.py
M scripts/lib/CIME/nmlgen.py
M scripts/lib/CIME/provenance.py
M scripts/lib/CIME/test_scheduler.py
M scripts/lib/CIME/utils.py
M scripts/tests/scripts_regression_tests.py
M src/build_scripts/buildlib.csm_share
M src/build_scripts/buildlib.gptl
M src/components/data_comps/datm/cime_config/namelist_definition_datm.xml
M src/components/data_comps/datm/nuopc/atm_comp_nuopc.F90
M src/components/data_comps/dshr_nuopc/dshr_nuopc_mod.F90
M src/components/xcpl_comps/xatm/nuopc/atm_comp_nuopc.F90
M src/components/xcpl_comps/xglc/nuopc/glc_comp_nuopc.F90
M src/components/xcpl_comps/xice/nuopc/ice_comp_nuopc.F90
M src/components/xcpl_comps/xlnd/nuopc/lnd_comp_nuopc.F90
M src/components/xcpl_comps/xocn/nuopc/ocn_comp_nuopc.F90
M src/components/xcpl_comps/xrof/nuopc/rof_comp_nuopc.F90
M src/components/xcpl_comps/xshare/nuopc/dead_nuopc_mod.F90
M src/components/xcpl_comps/xwav/nuopc/wav_comp_nuopc.F90
M src/drivers/mct/cime_config/config_component.xml
M src/drivers/mct/cime_config/namelist_definition_drv.xml
M src/drivers/mct/main/cime_comp_mod.F90
M src/drivers/mct/main/seq_hist_mod.F90
M src/drivers/mct/main/seq_io_mod.F90
M src/drivers/nuopc/cime_config/buildexe
M src/drivers/nuopc/cime_config/buildnml
M src/drivers/nuopc/cime_config/config_component.xml
M src/drivers/nuopc/cime_config/config_component_cesm.xml
D src/drivers/nuopc/cime_config/config_component_e3sm.xml
D src/drivers/nuopc/cime_config/fd.yaml
M src/drivers/nuopc/cime_config/namelist_definition_drv.xml
A src/drivers/nuopc/cime_config/nuopc_runseq_A
A src/drivers/nuopc/cime_config/nuopc_runseq_ADLND
A src/drivers/nuopc/cime_config/nuopc_runseq_ADWAV
A src/drivers/nuopc/cime_config/nuopc_runseq_B
A src/drivers/nuopc/cime_config/nuopc_runseq_C_G_D
A src/drivers/nuopc/cime_config/nuopc_runseq_F
A src/drivers/nuopc/cime_config/nuopc_runseq_I
A src/drivers/nuopc/cime_config/nuopc_runseq_I_mosart
A src/drivers/nuopc/cime_config/nuopc_runseq_NEMS
A src/drivers/nuopc/cime_config/nuopc_runseq_Q
A src/drivers/nuopc/cime_config/nuopc_runseq_X
A src/drivers/nuopc/cime_config/nuopc_runseq_default
M src/drivers/nuopc/cime_config/testdefs/testlist_drv.xml
M src/drivers/nuopc/cime_driver/ensemble_driver.F90
M src/drivers/nuopc/cime_driver/esm.F90
M src/drivers/nuopc/cime_driver/esmApp.F90
D src/drivers/nuopc/cime_flds/esmDict.F90
M src/drivers/nuopc/cime_flds/esmFlds.F90
A src/drivers/nuopc/cime_flds/esmFldsExchange.F90
A src/drivers/nuopc/cime_flds/fd.yaml
D src/drivers/nuopc/cime_flds/glc_elevclass_mod.F90
D src/drivers/nuopc/cime_flds/seq_drydep_mod.F90
D src/drivers/nuopc/cime_flds/shr_carma_mod.F90
D src/drivers/nuopc/cime_flds/shr_fire_emis_mod.F90
D src/drivers/nuopc/cime_flds/shr_flds_mod.F90
D src/drivers/nuopc/cime_flds/shr_megan_mod.F90
D src/drivers/nuopc/cime_flds/shr_ndep_mod.F90
A src/drivers/nuopc/cime_flds_shr/glc_elevclass_mod.F90
A src/drivers/nuopc/cime_flds_shr/seq_drydep_mod.F90
A src/drivers/nuopc/cime_flds_shr/shr_carma_mod.F90
A src/drivers/nuopc/cime_flds_shr/shr_fire_emis_mod.F90
A src/drivers/nuopc/cime_flds_shr/shr_megan_mod.F90
A src/drivers/nuopc/cime_flds_shr/shr_ndep_mod.F90
M src/drivers/nuopc/mediator/med.F90
M src/drivers/nuopc/mediator/med_fraction_mod.F90
M src/drivers/nuopc/mediator/med_infodata_mod.F90
M src/drivers/nuopc/mediator/med_internalstate_mod.F90
M src/drivers/nuopc/mediator/med_io_mod.F90
M src/drivers/nuopc/mediator/med_map_mod.F90
M src/drivers/nuopc/mediator/med_merge_mod.F90
M src/drivers/nuopc/mediator/med_phases_aofluxes_mod.F90
M src/drivers/nuopc/mediator/med_phases_history_mod.F90
M src/drivers/nuopc/mediator/med_phases_ocnalb_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_atm_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ice_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_lnd_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ocn_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_rof_mod.F90
M src/drivers/nuopc/mediator/med_phases_profile_mod.F90
M src/drivers/nuopc/mediator/med_phases_restart_mod.F90
D src/drivers/nuopc/shr/seq_comm_mct.F90
D src/drivers/nuopc/shr/shr_nuopc_fldList_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_methods_mod.F90
A src/drivers/nuopc/shr/shr_nuopc_multiinst_mod.F90
M src/externals/pio2/CMakeLists.txt
M src/externals/pio2/README.md
M src/externals/pio2/cmake/FindNetCDF.cmake
M src/externals/pio2/cmake/LibMPI.cmake
M src/externals/pio2/cmake/mpiexec.nwscla
M src/externals/pio2/configure.ac
M src/externals/pio2/ctest/CTestEnvironment-nwscla.cmake
M src/externals/pio2/ctest/runcdash-nwscla-intel.sh
M src/externals/pio2/doc/Doxyfile.in
M src/externals/pio2/examples/c/darray_async.c
M src/externals/pio2/examples/c/darray_no_async.c
M src/externals/pio2/src/clib/pio.h
M src/externals/pio2/src/clib/pio_darray.c
M src/externals/pio2/src/clib/pio_darray_int.c
M src/externals/pio2/src/clib/pio_getput_int.c
M src/externals/pio2/src/clib/pio_internal.h
M src/externals/pio2/src/clib/pio_msg.c
M src/externals/pio2/src/clib/pio_nc.c
M src/externals/pio2/src/clib/pioc.c
M src/externals/pio2/src/clib/pioc_support.c
M src/externals/pio2/tests/cunit/CMakeLists.txt
M src/externals/pio2/tests/cunit/Makefile.am
M src/externals/pio2/tests/cunit/test_async_multi2.c
M src/externals/pio2/tests/cunit/test_darray.c
M src/externals/pio2/tests/cunit/test_darray_1d.c
M src/externals/pio2/tests/cunit/test_darray_2sync.c
M src/externals/pio2/tests/cunit/test_darray_multi.c
M src/externals/pio2/tests/cunit/test_darray_multivar3.c
M src/externals/pio2/tests/cunit/test_pioc.c
M src/externals/pio2/tests/general/ncdf_simple_tests.F90.in
M src/externals/pio2/tests/general/pio_decomp_tests_1d.F90.in
M src/share/timing/Makefile
M src/share/timing/perf_mod.F90
M src/share/util/shr_flux_mod.F90
M src/share/util/shr_frz_mod.F90.in
M src/share/util/shr_mem_mod.F90
M src/share/util/shr_pio_mod.F90
M src/share/util/shr_reprosum_mod.F90
M tools/cprnc/README
M tools/cprnc/compare_vars_mod.F90.in
M tools/cprnc/cprnc.F90
M tools/cprnc/filestruct.F90
M tools/cprnc/run_tests
M tools/cprnc/test_inputs/README
A tools/cprnc/test_inputs/control_attributes.nc
A tools/cprnc/test_inputs/control_char.nc
A tools/cprnc/test_inputs/copy_char.nc
A tools/cprnc/test_inputs/diffs_in_attribute.nc
A tools/cprnc/test_inputs/diffs_in_vals_and_extra_and_missing.nc
A tools/cprnc/test_inputs/extra_variables.nc
A tools/cprnc/test_inputs/missing_variables.nc
======================================================================
======================================================================
Originator: Chris Fischer
Date: 1-15-2019
Tag: cime5.7.7
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Minor fix to e3sm_cime_mgmt to properly handle exe files.
- Merge branch for acme split 2019-01-14.
- e3sm_cime_mgmt: big upgrade/refactor to auto conf handling
- Add expected failure annotations to cs.status output.
- Bringing the latest nuopc development to master.
- Changes for PGI 18.4.
- Bring in the latest pio1 from external .
- Fix Case context manager enforcement.
- Update to pio 130c564.
- docn_comp_mod needs fix for optional variable.
- Remove support for CLM4.0.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
e5c2368 Minor fix to e3sm_cime_mgmt to properly handle exe files
222df09 Merge pull request #2979 from ESMCI/jgfouca/branch-for-acme-split-2019-01-14
20a635a Merge pull request #2980 from ESMCI/jgfouca/e3sm_cime_mgmt_upgrade
26a18ff Merge pull request #2962 from billsacks/cs_status_expected_fails
86ab407 Merge pull request #2976 from jedwards4b/nuopc-cmeps
f560074 Merge pull request #2974 from fvitt/misc_fixes
e166e75 Merge pull request #2975 from jedwards4b/pio1_update
71acf83 Merge pull request #2972 from ESMCI/jgfouca/fix_case_ctx_mgr
0c6f294 Merge pull request #2967 from jedwards4b/pio2_merge_130c564
aa8b0fa Merge pull request #2970 from jedwards4b/test_fixes
74d03b7 Merge pull request #2968 from billsacks/cesm_remove_clm4_rebased
Modified files: git diff --name-status [previous_tag]
M config/cesm/config_files.xml
M config/cesm/config_grids.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M config/cesm/machines/config_pio.xml
M config/e3sm/machines/config_machines.xml
M config/e3sm/machines/syslog.anvil
D config/e3sm/machines/syslog.cetus
M config/e3sm/machines/syslog.cori-haswell
M config/e3sm/machines/syslog.cori-knl
M config/e3sm/machines/syslog.edison
D config/e3sm/machines/syslog.mira
M config/e3sm/machines/syslog.summit
M config/e3sm/machines/syslog.theta
M config/e3sm/machines/syslog.titan
M config/xml_schemas/config_compilers_v2.xsd
A config/xml_schemas/expected_fails_file.xsd
M scripts/Tools/Makefile
M scripts/Tools/cs.status
M scripts/create_test
M scripts/lib/CIME/SystemTests/README
M scripts/lib/CIME/SystemTests/dae.py
M scripts/lib/CIME/SystemTests/eri.py
M scripts/lib/CIME/SystemTests/pgn.py
M scripts/lib/CIME/SystemTests/system_tests_compare_two.py
M scripts/lib/CIME/SystemTests/tsc.py
A scripts/lib/CIME/XML/expected_fails_file.py
M scripts/lib/CIME/build.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_clone.py
M scripts/lib/CIME/cs_status.py
A scripts/lib/CIME/expected_fails.py
M scripts/lib/CIME/test_status.py
A scripts/lib/CIME/tests/XML/__init__.py
A scripts/lib/CIME/tests/XML/test_expected_fails_file.py
A scripts/lib/CIME/tests/custom_assertions_test_status.py
M scripts/lib/CIME/tests/test_cs_status.py
A scripts/lib/CIME/tests/test_custom_assertions_test_status.py
A scripts/lib/CIME/tests/test_test_status.py
M scripts/lib/e3sm_cime_mgmt.py
M scripts/lib/get_tests.py
D scripts/testlist_cmeps.xml
M scripts/tests/scripts_regression_tests.py
M src/components/data_comps/docn/mct/docn_comp_mod.F90
M src/drivers/mct/cime_config/config_component_cesm.xml
M src/drivers/mct/cime_config/config_component_e3sm.xml
M src/drivers/mct/cime_config/namelist_definition_drv.xml
M src/drivers/mct/main/cime_comp_mod.F90
M src/drivers/mct/shr/seq_comm_mct.F90
M src/drivers/nuopc/cime_config/buildnml
M src/drivers/nuopc/cime_config/config_component_cesm.xml
M src/drivers/nuopc/cime_config/fd.yaml
M src/drivers/nuopc/cime_config/namelist_definition_drv.xml
M src/drivers/nuopc/cime_config/testdefs/testlist_drv.xml
M src/drivers/nuopc/cime_flds/esmFlds.F90
M src/drivers/nuopc/mediator/med.F90
M src/drivers/nuopc/mediator/med_map_mod.F90
M src/drivers/nuopc/mediator/med_merge_mod.F90
M src/drivers/nuopc/mediator/med_phases_aofluxes_mod.F90
D src/drivers/nuopc/mediator/med_phases_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_atm_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ice_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ocn_mod.F90
M src/drivers/nuopc/mediator/med_phases_profile_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_fldList_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_grid_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_methods_mod.F90
M src/externals/pio1/pio/pionfput_mod.F90.in
M src/externals/pio2/ctest/runcdash-nwscla-pgi.sh
M src/externals/pio2/src/clib/pio_darray.c
M src/externals/pio2/src/clib/pio_darray_int.c
D src/externals/pio2/src/clib/pio_varm.c
M src/externals/pio2/tests/general/pio_decomp_tests_1d.F90.in
M src/share/timing/GPTLprint_memusage.c
M src/share/timing/perf_mod.F90
M src/share/util/shr_wv_sat_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 01-07-2019
Tag: cime5.7.6
Answer Changes: None
Tests: scripts_regression_tests.py, hand testing of cesm cases
scripts_regression_tests.py with PIO_VERSION=2
code-checker, by-hand
Dependencies:
Brief Summary:
- case.cmpgen_namelists needs to be able to write to the case
- Improve errors messages coming from generic_xml.
- Update to the latest pio2 master from https://github.com/NCAR/ParallelIO
pio hash is 317963f
- Improve the logic of the continue run check.
- Merge latest maint-5.6 changes into master.
- Make sure optional arg exists before using.
- Improve error/exception handling throughout CIME.
- Update esmf in mapping master.
- Minor fix for e3sm_cime_mgmt.
- Fix issues found in cesm testing.
- Big improvement to robustness of CIME's XML handling.
- Correct timer merge issue.
- Fix PFS generate issue.
- Nuopc merge to master.
- Merge branch for acme split 2018-11-27.
- Resolve conflicts.
- Merge latest maint-5.6 changes into master.
- Fix new pylint errors.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
486c579 Merge pull request #2966 from jedwards4b/cmpgen_needs_write
ac2d671 Merge pull request #2964 from ESMCI/jgfouca/improve_xml_err_msgs
37d7afb Merge pull request #2955 from jedwards4b/jedwards/pio2-merge
18c822b Merge pull request #2956 from jedwards4b/improve_continue_run_check
59c158c Merge pull request #2958 from jedwards4b/jedwards/maint-5.6merge
3e2f45e Merge pull request #2950 from jedwards4b/docn_optional_arg_fix
2686d66 Merge pull request #2948 from ESMCI/jgfouca/improve_error_handling
a909466 Merge pull request #2941 from mnlevy1981/mlevy/update_esmf_in_mapping-master
ea8f9b8 Merge pull request #2946 from ESMCI/jgfouca/fix_e3sm_cime_mgmt
3c17731 Merge pull request #2944 from jedwards4b/cesmtestissues
d712b83 Merge pull request #2932 from ESMCI/jgfouca/xml_cache_upgrade
920ffca Merge pull request #2934 from jedwards4b/correct_timer_merge_issue
ba2f030 Merge pull request #2931 from jedwards4b/fixforpfsgenerate
25649e9 Merge pull request #2930 from jedwards4b/nuopc_merge_to_master
392eca0 Merge pull request #2926 from ESMCI/jgfouca/branch-for-acme-split-2018-11-27
56563f7 resolve conflicts
c81376f Merge branch 'maint-5.6' update master with maint-5.6
c0ff78e Merge pull request #2920 from ESMCI/jgfouca/fix_new_pylint_errs
Modified files: git diff --name-status [previous_tag]
M config/cesm/config_grids.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M config/e3sm/allactive/config_compsets.xml
M config/e3sm/config_grids.xml
M config/e3sm/machines/config_batch.xml
M config/e3sm/machines/config_compilers.xml
M config/e3sm/machines/config_machines.xml
M config/e3sm/tests.py
M config/xml_schemas/config_grids_v2.xsd
M doc/source/users_guide/testing.rst
M scripts/Tools/Makefile
M scripts/Tools/archive_metadata
M scripts/Tools/case.build
M scripts/Tools/case.cmpgen_namelists
M scripts/Tools/case_diff
M scripts/Tools/cime_bisect
M scripts/Tools/simple_compare
M scripts/Tools/testreporter.py
M scripts/Tools/xmlquery
M scripts/create_newcase
M scripts/create_test
M scripts/fortran_unit_testing/run_tests.py
M scripts/lib/CIME/BuildTools/macrowriterbase.py
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/SystemTests/erio.py
M scripts/lib/CIME/SystemTests/ers.py
M scripts/lib/CIME/SystemTests/ers2.py
M scripts/lib/CIME/SystemTests/homme.py
M scripts/lib/CIME/SystemTests/system_tests_common.py
M scripts/lib/CIME/SystemTests/system_tests_compare_two.py
M scripts/lib/CIME/XML/component.py
M scripts/lib/CIME/XML/env_archive.py
M scripts/lib/CIME/XML/env_base.py
M scripts/lib/CIME/XML/env_batch.py
M scripts/lib/CIME/XML/env_build.py
M scripts/lib/CIME/XML/env_case.py
M scripts/lib/CIME/XML/env_mach_pes.py
M scripts/lib/CIME/XML/env_mach_specific.py
M scripts/lib/CIME/XML/env_run.py
M scripts/lib/CIME/XML/env_test.py
M scripts/lib/CIME/XML/generic_xml.py
M scripts/lib/CIME/XML/grids.py
M scripts/lib/CIME/XML/machines.py
M scripts/lib/CIME/build.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_clone.py
M scripts/lib/CIME/case/case_cmpgen_namelists.py
M scripts/lib/CIME/case/case_run.py
M scripts/lib/CIME/case/case_setup.py
M scripts/lib/CIME/case/case_st_archive.py
M scripts/lib/CIME/case/case_submit.py
M scripts/lib/CIME/case/case_test.py
M scripts/lib/CIME/case/check_lockedfiles.py
M scripts/lib/CIME/case/preview_namelists.py
M scripts/lib/CIME/compare_namelists.py
M scripts/lib/CIME/get_timing.py
M scripts/lib/CIME/hist_utils.py
M scripts/lib/CIME/locked_files.py
M scripts/lib/CIME/namelist.py
M scripts/lib/CIME/nmlgen.py
M scripts/lib/CIME/provenance.py
M scripts/lib/CIME/simple_compare.py
M scripts/lib/CIME/test_scheduler.py
M scripts/lib/CIME/tests/SystemTests/test_system_tests_compare_two.py
M scripts/lib/CIME/tests/test_user_mod_support.py
M scripts/lib/CIME/user_mod_support.py
M scripts/lib/CIME/utils.py
M scripts/lib/CIME/wait_for_tests.py
M scripts/lib/e3sm_cime_mgmt.py
M scripts/lib/get_tests.py
M scripts/query_config
M scripts/testlist_cmeps.xml
M scripts/tests/scripts_regression_tests.py
M scripts/tests/user_mods_test3/shell_commands
M src/CMake/FindpFUnit.cmake
M src/build_scripts/buildlib.csm_share
M src/build_scripts/buildlib.gptl
M src/build_scripts/buildlib.internal_components
M src/build_scripts/buildlib.mct
M src/build_scripts/buildlib.mpi-serial
M src/build_scripts/buildlib.pio
M src/components/data_comps/datm/cime_config/buildnml
M src/components/data_comps/datm/cime_config/config_component.xml
M src/components/data_comps/datm/cime_config/namelist_definition_datm.xml
M src/components/data_comps/datm/nuopc/atm_comp_nuopc.F90
M src/components/data_comps/datm/nuopc/datm_comp_mod.F90
M src/components/data_comps/datm/nuopc/datm_shr_mod.F90
M src/components/data_comps/dice/nuopc/dice_comp_mod.F90
M src/components/data_comps/dice/nuopc/dice_shr_mod.F90
M src/components/data_comps/dice/nuopc/ice_comp_nuopc.F90
M src/components/data_comps/dlnd/nuopc/dlnd_comp_mod.F90
M src/components/data_comps/dlnd/nuopc/dlnd_shr_mod.F90
M src/components/data_comps/dlnd/nuopc/lnd_comp_nuopc.F90
M src/components/data_comps/docn/mct/docn_comp_mod.F90
M src/components/data_comps/docn/nuopc/docn_comp_mod.F90
M src/components/data_comps/docn/nuopc/docn_shr_mod.F90
M src/components/data_comps/docn/nuopc/ocn_comp_nuopc.F90
M src/components/data_comps/drof/cime_config/config_component.xml
M src/components/data_comps/drof/cime_config/namelist_definition_drof.xml
M src/components/data_comps/drof/nuopc/drof_comp_mod.F90
M src/components/data_comps/drof/nuopc/drof_shr_mod.F90
M src/components/data_comps/drof/nuopc/rof_comp_nuopc.F90
M src/components/data_comps/dshr_nuopc/dshr_nuopc_mod.F90
M src/components/data_comps/dwav/nuopc/dwav_comp_mod.F90
M src/components/data_comps/dwav/nuopc/dwav_shr_mod.F90
M src/components/data_comps/dwav/nuopc/wav_comp_nuopc.F90
M src/components/xcpl_comps/xatm/nuopc/atm_comp_nuopc.F90
M src/components/xcpl_comps/xglc/nuopc/glc_comp_nuopc.F90
M src/components/xcpl_comps/xice/nuopc/ice_comp_nuopc.F90
M src/components/xcpl_comps/xlnd/nuopc/lnd_comp_nuopc.F90
M src/components/xcpl_comps/xocn/nuopc/ocn_comp_nuopc.F90
M src/components/xcpl_comps/xrof/nuopc/rof_comp_nuopc.F90
M src/components/xcpl_comps/xshare/nuopc/dead_nuopc_mod.F90
M src/components/xcpl_comps/xwav/nuopc/wav_comp_nuopc.F90
M src/drivers/mct/cime_config/buildnml
M src/drivers/mct/cime_config/config_component.xml
M src/drivers/mct/cime_config/config_component_e3sm.xml
M src/drivers/mct/main/seq_diag_mct.F90
M src/drivers/mct/shr/seq_flds_mod.F90
M src/drivers/nuopc/cime_config/buildexe
M src/drivers/nuopc/cime_config/buildnml
M src/drivers/nuopc/cime_config/config_component.xml
M src/drivers/nuopc/cime_config/config_component_cesm.xml
M src/drivers/nuopc/cime_config/namelist_definition_drv.xml
M src/drivers/nuopc/cime_driver/ensemble_driver.F90
M src/drivers/nuopc/cime_driver/esm.F90
M src/drivers/nuopc/cime_flds/esmFlds.F90
M src/drivers/nuopc/mediator/med.F90
M src/drivers/nuopc/mediator/med_connectors_mod.F90
M src/drivers/nuopc/mediator/med_fraction_mod.F90
M src/drivers/nuopc/mediator/med_infodata_mod.F90
M src/drivers/nuopc/mediator/med_internalstate_mod.F90
M src/drivers/nuopc/mediator/med_io_mod.F90
M src/drivers/nuopc/mediator/med_map_mod.F90
M src/drivers/nuopc/mediator/med_merge_mod.F90
M src/drivers/nuopc/mediator/med_phases_aofluxes_mod.F90
M src/drivers/nuopc/mediator/med_phases_history_mod.F90
M src/drivers/nuopc/mediator/med_phases_mod.F90
M src/drivers/nuopc/mediator/med_phases_ocnalb_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_atm_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_glc_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ice_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_lnd_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_ocn_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_rof_mod.F90
M src/drivers/nuopc/mediator/med_phases_prep_wav_mod.F90
A src/drivers/nuopc/mediator/med_phases_profile_mod.F90
M src/drivers/nuopc/mediator/med_phases_restart_mod.F90
M src/drivers/nuopc/shr/med_constants_mod.F90
M src/drivers/nuopc/shr/seq_comm_mct.F90
D src/drivers/nuopc/shr/seq_timemgr_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_grid_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_methods_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_time_mod.F90
M src/drivers/nuopc/shr/shr_nuopc_utils_mod.F90
M src/externals/pio1/pio/piodarray.F90.in
M src/externals/pio2/.gitignore
M src/externals/pio2/CMakeLists.txt
M src/externals/pio2/Makefile.am
M src/externals/pio2/README.md
M src/externals/pio2/cmake/LibFind.cmake
M src/externals/pio2/cmake/LibMPI.cmake
D src/externals/pio2/cmake/mpiexec.nwsc
M src/externals/pio2/cmake/mpiexec.nwscla
M src/externals/pio2/cmake_config.h.in
M src/externals/pio2/configure.ac
D src/externals/pio2/ctest/CTestEnvironment-nwsc.cmake
M src/externals/pio2/ctest/CTestEnvironment-nwscla.cmake
D src/externals/pio2/ctest/runcdash-nwsc-gnu.sh
D src/externals/pio2/ctest/runcdash-nwsc-pgi.sh
A src/externals/pio2/ctest/runcdash-nwscla-gnu.sh
M src/externals/pio2/ctest/runcdash-nwscla-intel.sh
A src/externals/pio2/ctest/runcdash-nwscla-pgi.sh
D src/externals/pio2/ctest/runctest-nwsc.sh
A src/externals/pio2/examples/Makefile.am
A src/externals/pio2/examples/basic/perl5lib/XML/man3/XML_Lite.3
A src/externals/pio2/examples/basic/perl5lib/XML/man3/XML_Lite_Element.3
A src/externals/pio2/examples/c/Makefile.am
M src/externals/pio2/examples/c/darray_async.c
M src/externals/pio2/examples/c/darray_no_async.c
M src/externals/pio2/examples/c/example1.c
M src/externals/pio2/examples/c/examplePio.c
A src/externals/pio2/examples/c/run_tests.sh
M src/externals/pio2/src/Makefile.am
M src/externals/pio2/src/clib/CMakeLists.txt
M src/externals/pio2/src/clib/Makefile.am
M src/externals/pio2/src/clib/pio.h
M src/externals/pio2/src/clib/pio_darray.c
M src/externals/pio2/src/clib/pio_darray_int.c
M src/externals/pio2/src/clib/pio_file.c
M src/externals/pio2/src/clib/pio_getput_int.c
M src/externals/pio2/src/clib/pio_internal.h
M src/externals/pio2/src/clib/pio_lists.c
M src/externals/pio2/src/clib/pio_msg.c
M src/externals/pio2/src/clib/pio_nc.c
M src/externals/pio2/src/clib/pio_rearrange.c
M src/externals/pio2/src/clib/pio_spmd.c
M src/externals/pio2/src/clib/pioc.c
M src/externals/pio2/src/clib/pioc_sc.c
M src/externals/pio2/src/clib/pioc_support.c
M src/externals/pio2/src/flib/CMakeLists.txt
M src/externals/pio2/src/flib/piodarray.F90.in
M src/externals/pio2/tests/Makefile.am
M src/externals/pio2/tests/cunit/CMakeLists.txt
M src/externals/pio2/tests/cunit/Makefile.am
M src/externals/pio2/tests/cunit/run_tests.sh
M src/externals/pio2/tests/cunit/test_async_multi2.c
M src/externals/pio2/tests/cunit/test_async_multicomp.c
M src/externals/pio2/tests/cunit/test_darray_1d.c
M src/externals/pio2/tests/cunit/test_darray_2sync.c
M src/externals/pio2/tests/cunit/test_darray_async.c
A src/externals/pio2/tests/cunit/test_darray_fill.c
M src/externals/pio2/tests/cunit/test_darray_frame.c
A src/externals/pio2/tests/cunit/test_decomp_frame.c
M src/externals/pio2/tests/cunit/test_intercomm2.c
M src/externals/pio2/tests/general/CMakeLists.txt
M src/externals/pio2/tests/general/ncdf_simple_tests.F90.in
M src/externals/pio2/tests/general/pio_decomp_tests_1d.F90.in
M src/externals/pio2/tests/general/util/pio_tf_f90gen.pl
M src/externals/pio2/tests/performance/pioperformance.F90
M src/externals/pio2/tests/unit/basic_tests.F90
M src/externals/pio2/tests/unit/driver.F90
M src/share/streams/shr_dmodel_mod.F90
M src/share/streams/shr_strdata_mod.F90
M src/share/timing/ChangeLog
M src/share/timing/Makefile
M src/share/timing/f_wrappers.c
M src/share/timing/gptl.c
M src/share/timing/gptl.h
M src/share/timing/gptl.inc
M src/share/timing/perf_mod.F90
M src/share/util/shr_file_mod.F90
M src/share/util/shr_log_mod.F90
M tools/configure
M tools/load_balancing_tool/load_balancing_submit.py
M tools/mapping/gen_mapping_files/gen_ESMF_mapping_file/create_ESMF_map.sh
M tools/statistical_ensemble_test/addmetadata.sh
M tools/statistical_ensemble_test/pyCECT/README_pyCECT.rst
M tools/statistical_ensemble_test/pyCECT/README_pyEnsSum.rst
M tools/statistical_ensemble_test/pyCECT/README_pyEnsSumPop.rst
M tools/statistical_ensemble_test/pyCECT/pyCECT.py
M tools/statistical_ensemble_test/pyCECT/pyEnsLib.py
M tools/statistical_ensemble_test/pyCECT/pyEnsSum.py
M tools/statistical_ensemble_test/pyCECT/pyEnsSumPop.py
D tools/statistical_ensemble_test/pyCECT/pyEnsSumPop_test.sh
M tools/statistical_ensemble_test/pyCECT/test_pop_CECT.sh
D tools/statistical_ensemble_test/pyCECT/test_pop_ensemble.sh
A tools/statistical_ensemble_test/pyCECT/test_pyEnsSumPop.sh
======================================================================
Originator: Bill Sacks
Date: 11-01-2018
Tag: cime5.7.5
Answer Changes: None
Tests: scripts_regression_tests, CTSM's aux_clm test suite
Dependencies:
Brief Summary: Miscellaneous minor bug fixes, including getting
mpi-serial working again
User interface changes: none
Originator: Chris Fischer
Date: 11-29-2018
Tag: cime_cesm2_1_rel_06
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Fix new pylint errors.
- Update addmetadata for POP-ECT tests.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
5a86646 Merge pull request #2921 from jedwards4b/fixpylint3errors
98821ff Merge pull request #2919 from ESMCI/fischer/addmetadata
Modified files: git diff --name-status [previous_tag]
M scripts/lib/CIME/BuildTools/macrowriterbase.py
M scripts/lib/CIME/SystemTests/erio.py
M scripts/lib/CIME/SystemTests/ers.py
M scripts/lib/CIME/SystemTests/ers2.py
M scripts/lib/CIME/SystemTests/homme.py
M scripts/lib/CIME/SystemTests/system_tests_common.py
M scripts/lib/CIME/SystemTests/system_tests_compare_two.py
M scripts/lib/CIME/case/case_run.py
M scripts/lib/CIME/case/case_setup.py
M scripts/lib/CIME/case/case_st_archive.py
M scripts/lib/CIME/provenance.py
M scripts/lib/e3sm_cime_mgmt.py
M src/build_scripts/buildlib.gptl
M src/build_scripts/buildlib.pio
M tools/statistical_ensemble_test/addmetadata.sh
======================================================================
======================================================================
Originator: Chris Fischer
PR summary: git log --oneline --first-parent [previous_tag]..master
e882c1c06 Merge pull request #2897 from billsacks/fix_histutils_regex
fc14d5870 Merge pull request #2895 from billsacks/fix_lnd2glc_averaged_now
beff2289e Merge pull request #2892 from ESMCI/jhkennedy/mpi-serial-2890
44aa1f2c8 Merge pull request #2888 from ESMCI/jhkennedy/charge-account-2886
610ac40c5 Merge pull request #2889 from dabail10/pop_som_frc
a25d2b4c1 Merge pull request #2887 from billsacks/funit_fix_path
6c7981abd Merge pull request #2872 from billsacks/datm_wiso_typo
9087ed3ab Merge pull request #2883 from ESMCI/jgfouca/add_nuopc_e3sm_config
90e595c21 Merge pull request #2882 from jedwards4b/resolve_mpi_run_command
14bb217ec Merge pull request #2876 from ESMCI/jgfouca/fix_pet_no_batch
7720b1e83 Merge pull request #2877 from ESMCI/sarich/update-e3sm-config-driver
ddec7ebf0 Merge pull request #2854 from ESMCI/jhkennedy/machine-missing-2686
Modified files: git diff --name-status [previous_tag]
M ChangeLog
M config/e3sm/config_files.xml
M config/e3sm/machines/config_machines.xml
M config/e3sm/machines/config_pio.xml
M config/xml_schemas/config_machines.xsd
M doc/source/users_guide/cime-config.rst
M scripts/create_clone
M scripts/create_newcase
M scripts/create_test
M scripts/lib/CIME/SystemTests/funit.py
M scripts/lib/CIME/SystemTests/system_tests_common.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/hist_utils.py
M scripts/lib/CIME/tests/SystemTests/test_system_tests_compare_two.py
M scripts/lib/CIME/utils.py
M scripts/lib/get_tests.py
M src/components/data_comps/datm/cime_config/namelist_definition_datm.xml
M src/components/data_comps/docn/tools/pop_som_frc/README
M src/components/data_comps/docn/tools/pop_som_frc/pop_frc_mlann.ncl
M src/components/data_comps/docn/tools/pop_som_frc/pop_frc_mlt.ncl
M src/drivers/mct/main/cime_comp_mod.F90
M src/drivers/mct/main/component_mod.F90
A src/drivers/nuopc/cime_config/config_component_e3sm.xml
M src/drivers/nuopc/cime_config/namelist_definition_drv.xml
Originator: Chris Fischer
Date: 11-17-2018
Tag: cime_cesm2_1_rel_05
Answer Changes: None
Tests: ./create_test cime_developer on cheyenne
Dependencies:
Brief Summary:
- Do not include time of day in cpl auxiliary hist file names.
User interface changes:
- Changes names of cpl auxiliary history files.
PR summary: git log --oneline --first-parent [previous_tag]..master
b3fc9d6 Merge pull request #2914 from billsacks/auxhist_no_time
Modified files: git diff --name-status [previous_tag]
M src/drivers/mct/main/seq_hist_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 11-13-2018
Tag: cime_cesm2_1_rel_04
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Fix 2010 period for datm GSWP3v1.
- Update pyCECT to v3.0.8
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
2e72d20 Merge pull request #2908 from ekluzek/fix2010datm
5f4a911 Merge pull request #2905 from ESMCI/fischer/pyCECT_v3.0.8
Modified files: git diff --name-status [previous_tag]
M src/components/data_comps/datm/cime_config/config_component.xml
M tools/statistical_ensemble_test/pyCECT/README_pyCECT.rst
M tools/statistical_ensemble_test/pyCECT/README_pyEnsSum.rst
M tools/statistical_ensemble_test/pyCECT/README_pyEnsSumPop.rst
M tools/statistical_ensemble_test/pyCECT/pyCECT.py
M tools/statistical_ensemble_test/pyCECT/pyEnsLib.py
M tools/statistical_ensemble_test/pyCECT/pyEnsSum.py
M tools/statistical_ensemble_test/pyCECT/pyEnsSumPop.py
D tools/statistical_ensemble_test/pyCECT/pyEnsSumPop_test.sh
M tools/statistical_ensemble_test/pyCECT/test_pop_CECT.sh
D tools/statistical_ensemble_test/pyCECT/test_pop_ensemble.sh
A tools/statistical_ensemble_test/pyCECT/test_pyEnsSumPop.sh
======================================================================
Originator: Chris Fischer
Date: 10-22-2018
Tag: cime5.7.4
Answer Changes: I compsets (with datm) change answers due to #2828
(merged to master as #2847)
Tests: scripts_regression_tests, by hand
Dependencies:
Brief Summary:
- Remove all references to BATCHQUERY and BATCHSUBMIT.
- Bug fix.
- Update to CIME statistical ensemble test ensemble generation scripts.
- Fix debug builds for pio.
- Remove commented-out code
- Merge ACME split 2018-10-16
- Fix floating-point mpiprocs for Python 3.
- Fix floating-point mpiprocs for Python 3.
- Merge latest nuopc-cmeps development.
- Don't exceed maximum MPI tag value.
- maint-5.6 merge.
- Propagate logging settings to submitted jobs.
- mlchange: Give user guidance on what to do next.
- Dont hide ctest output in run_tests.py.
- Add FUNIT fake test.
- Improve continue run checks in case_submit.
- Some minor cleanup for nmlgen.py.
- ntasks_per_inst should never be <=0
- one more driver issue
- another driver issue
- fix e3sm cdash issue
- fix cdash issues
- Merge of the nuopc development branch.
- OS is not an environment variable on all systems.
- Add Daint and Euler machines.
- Merge acme split 2018-09-10.
- Fix ESMF library before version 8 build.
- Add /cluster/torque/bin to path on hobart.
User interface changes:
- Python scripts instead of shell scripts for ECT.
- Adds CIME_DRIVER env and config variable to set the default driver.
PR summary: git log --oneline --first-parent [previous_tag]..master
9355d97 Merge pull request #2868 from ESMCI/jgfouca/remove_old_batch_stuff
479c666 Merge pull request #2869 from ESMCI/jgfouca/f90_bug_fix
9839983 Merge pull request #2864 from allibco/master
5850391 Fix debug builds of pio
374dce4 Remove commented-out code
eaeff0c Merge pull request #2858 from ESMCI/jgfouca/branch-for-acme-split-2018-10-16
8d642a1 Merge pull request #2859 from ESMCI/fix_mpiprocs
00b2252 Merge pull request #2857 from jedwards4b/add_mpilibs_query_config
532d4ca Merge pull request #2848 from jedwards4b/nuopc-cmeps
490074f Merge pull request #2804 from ESMCI/jhkennedy/mpi_tags
00908db Merge pull request #2847 from jedwards4b/maint-5.6-merge
fb05358 Merge pull request #2833 from ESMCI/jgfouca/propagate_logging
6fb5659 Merge pull request #2829 from ESMCI/jgfouca/xmlchange_help_user
e002ac3 Merge pull request #2834 from ESMCI/jgfouca/dont_hide_ctest_output
3a5b47a Merge pull request #2826 from ESMCI/jgfouca/funit_fake_test
a4fb22e Merge pull request #2825 from ESMCI/jgfouca/improve_cont_run_guard
1df4dca Merge pull request #2830 from ESMCI/jgfouca/nmlgen_cleanup
9ca93ca ntasks_per_inst should never be <=0
4e621e6 one more driver issue
bdd0563 another driver issue
868c273 fix e3sm cdash issue
83ea95c fix cdash issues
6d383cc Merge pull request #2811 from jedwards4b/jedwards/merge_cmeps
3effd6a OS is not an environment variable on all systems
922f6e7 Merge pull request #2805 from beyerle/ethz
9de1492 Merge pull request #2800 from ESMCI/jgfouca/branch-for-acme-split-2018-09-10
eeae4e3 Merge pull request #2803 from ekluzek/fixesmflog
e075cac Merge pull request #2797 from billsacks/hobart_path
Modified files: git diff --name-status [previous_tag]
M .travis.yml
M ChangeLog
M config/cesm/config_files.xml
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M config/config_tests.xml
M config/e3sm/config_grids.xml
M config/e3sm/machines/config_batch.xml
M config/e3sm/machines/config_compilers.xml