forked from ESMCI/cime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
14533 lines (13334 loc) · 605 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: 6-1-2023
Tag: cime5.6.44
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
Port to intel compiler on gust and Derecho
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
7f84e12f9 (HEAD -> maint-5.6, origin/maint-5.6) Merge pull request #4423 from jedwards4b/maint-5.6_gust_port_040923
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/XML/machines.py
M scripts/tests/scripts_regression_tests.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 7-27-2022
Tag: cime5.6.41
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Update stampede2 modules.
- Added configs for ARCHER2 machine.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
0dd71e319 (HEAD -> maint-5.6, origin/maint-5.6) Merge pull request #4281 from ESMCI/fischer/stampede2
fa8102fde Merge pull request #4244 from cemac-ccs/maint_5.6_archer2_port
Modified files: git diff --name-status [previous_tag]
======================================================================
======================================================================
Originator: Chris Fischer
Date: 4-27-2022
Tag: cime5.6.40
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Update cori modules.
- Adding arc4 machine and SGE batch scheduler.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
26b7409be Merge pull request #4198 from jedwards4b/cori_update0322
fa2ebc4bd Merge pull request #4001 from MarkUoLeeds/uol_arc4_add_sge
Modified files: git diff --name-status [previous_tag]
======================================================================
======================================================================
Originator: Chris Fischer
Date: 2-8-2022
Tag: cime5.6.39
Answer Changes: None
Tests: hand testing on izumi
Dependencies:
Brief Summary:
- Fix izumi jobid matching pattern.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
66a25e28f Merge pull request #4176 from jedwards4b/izumi_batch_fix
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_batch.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 2-2-2022
Tag: cime5.6.38
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Addition of AWS machine entry for their HPC6a nodes.
- Update comet settings.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
d8ac39f88 Merge pull request #4171 from briandobbins/aws-hpc6a
d87274028 Merge pull request #4165 from jedwards4b/maint-5.6-smyleL83
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 12-7-2021
Tag: cime5.6.37
Answer Changes: None
Tests: Build SMS.f19_g17.B1850.cori-haswell_intel and SMS.f19_g17.B1850.cori-knl_intel
Tested query_config --compsets by hand
scripts_regression_tests
Dependencies:
Brief Summary:
- Update cori modules.
- Fix documentation of seq_flux_mct_alb* variables.
- Fix issue iterating over compsets.
- Fix issue reading streams from user_nl_datm.
- Add a check for case_dir.
- Update comet port.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
6ee76f234 Merge pull request #4138 from ESMCI/fischer/cori_update
27b5571ff Merge pull request #4069 from billsacks/fix_albedo_doc
ba4251401 Merge pull request #4044 from jedwards4b/maint-5.6
56b8845f5 Merge pull request #3992 from jedwards4b/bugfix/streams_from_user_nl
ccdea36cd Merge pull request #4004 from jedwards4b/case_dir_check/maint-5.6
4d507fd33 Merge pull request #3928 from jedwards4b/SDSCcomet_port
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M scripts/Tools/xmlchange
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/nmlgen.py
M scripts/query_config
M src/components/data_comps/datm/cime_config/buildnml
M src/drivers/mct/cime_config/namelist_definition_drv.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 4-2-2021
Tag: cime5.6.36
Answer Changes: None
Tests: Hand testing with SMS.f19_g17.B1850cmip6.cheyenne_intel
Dependencies:
Brief Summary:
- Fix order of timers.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
cdc5f5efd Merge pull request #3906 from jedwards4b/timer_ooo_fix
Modified files: git diff --name-status [previous_tag]
M .github/workflows/srt.yml
M src/externals/pio1/pio/piodarray.F90.in
======================================================================
======================================================================
Originator: Chris Fischer
Date: 3-26-2021
Tag: cime5.6.35
Answer Changes: None
Tests: scripts_regression_tests, cam-uf ect, pop ect, github actions.
Dependencies:
Brief Summary:
- Archive pop.rh.ecosys.nyear1 files.
- SDSC comet port.
- Add grace port.
- Replace travis with github.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
7a2c36b18 Merge pull request #3897 from jedwards4b/pop_ecosys_archive_fix
367289403 Merge pull request #3871 from jedwards4b/SDSCcomet_port
65275576a Merge pull request #3842 from jedwards4b/add_grace_maint-5.6
6271948e9 Merge pull request #3751 from jedwards4b/github_workflow_maint-5.6
Modified files: git diff --name-status [previous_tag]
A .github/workflows/srt.yml
D .travis.yml
M config/cesm/config_archive.xml
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/case/case.py
M scripts/tests/scripts_regression_tests.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 10-12-2020
Tag: cime5.6.34
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Add CLA --query-expType option to query the CESM2 experiment database.
- Adds a raw xml output feature to query_config.
- Izumi updates.
- Initialize XML variable values to be empty.
- Add ftp timeout, fix failover to svn.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
8edc73213 Merge pull request #3629 from bertinia/maint-5.6_archive_metadata
c651c93d8 Merge pull request #3715 from jedwards4b/add_xml_option_to_query_config
913ad5f82 Merge pull request #3561 from ESMCI/fischer/izumi_update_56
449a39594 Merge pull request #3482 from bertinia/maint-5.6_archive_metadata
949d3d66a Merge pull request #3480 from jedwards4b/ftp_timeout_56
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/Tools/archive_metadata
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/case/check_input_data.py
M scripts/query_config
M src/drivers/mct/cime_config/config_component.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 1-30-2020
Tag: cime5.6.32
Answer Changes: None
Tests: Prealpha tests on izumi
Dependencies:
Brief Summary:
- Update intel and cprnc on izumi
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
7a0b1a48f Merge pull request #3382 from ESMCI/fischer/izumi
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 1-28-2020
Tag: cime5.6.31
Answer Changes: None
Tests: scripts_regression_tests, f19_g17.I1850Clm50BgcCropCmip6waccm, T62_g16.GIAF
Dependencies:
Brief Summary:
User interface changes:
- Fixes domain filename in input_data_list.
PR summary: git log --oneline --first-parent [previous_tag]..master
- c55bcd226 Merge pull request #3378 from ESMCI/fischer/domainfile
Modified files: git diff --name-status [previous_tag]
M scripts/lib/CIME/nmlgen.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 1-24-2020
Tag: cime5.6.30
Answer Changes: None
Tests: scripts_regression_tests, hand testing of downloads
Dependencies:
Brief Summary:
- Add timeouts for ftp and wget logins.
- Fix chmod command in safe_copy
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
291fc8e41 Merge pull request #3367 from jedwards4b/server_timeouts
3688f02bb Merge pull request #3364 from billsacks/fix_safe_copy
Modified files: git diff --name-status [previous_tag]
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/Servers/wget.py
M scripts/lib/CIME/case/check_input_data.py
M scripts/lib/CIME/utils.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 1-22-2020
Tag: cime5.6.29
Answer Changes: None
Tests: examine namelist for GIAF_JRA..., scripts_regression_tests
Dependencies:
Brief Summary:
- Stampede2 module updates.
- Restore 2.1.1 behavior for JRA compsets.
- Allow writing T-forcing cplhist files even when running with SGLC.
- Updates for the cesm2 ensemble run on aleph.
- Convert user requested walltime to match walltime_format.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
7489690af Merge pull request #3362 from ESMCI/fischer/stampede2
be1255262 Merge pull request #3361 from klindsay28/cesm2_omip_take2
123742d6e Merge pull request #3356 from billsacks/t_forcing_cplhist_with_sglc
77e30d80d Merge pull request #3355 from jedwards4b/aleph_updates
22afa61fe Merge pull request #3342 from ESMCI/fischer/walltime_format
Modified files: git diff --name-status [previous_tag]
M config/cesm/config_grids.xml
M config/cesm/machines/config_batch.xml
M config/cesm/machines/config_machines.xml
M config/cesm/machines/config_workflow.xml
M config/cesm/machines/cylc_suite.rc.template
M scripts/lib/CIME/XML/env_batch.py
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/drof/cime_config/config_component.xml
M src/components/data_comps/drof/cime_config/namelist_definition_drof.xml
M src/drivers/mct/main/cime_comp_mod.F90
M src/drivers/mct/main/prep_glc_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 12-12-2019
Tag: cime5.6.28
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Update CIME_OUTPUT_ROOT for aleph.
- Update exp_types.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
fd98044f7 Merge branch 'maint-5.6' of https://github.com/ESMCI/cime into maint-5.6
cfcce68b9 update scratch directory
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/Tools/archive_metadata
======================================================================
======================================================================
Originator: Chris Fischer
Date: 12-2-2019
Tag: cime5.6.27
Answer Changes: Only RCE
Tests: QPRCEMIP
Dependencies:
Brief Summary:
- Change sst_aquap11 to sst_aquap_constant.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
b92cea675 Merge pull request #3316 from cacraigucar/maint-5.6
Modified files: git diff --name-status [previous_tag]
M src/drivers/mct/cime_config/namelist_definition_drv.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 11-25-2019
Tag: cime5.6.26
Answer Changes: None
Tests: CLM PFunit testing on izumi, scripts_regression_tests
SMS_Ld5.f09_g16.B1850G.cheyenne_intel.allactive-cism-test_coupling
Dependencies:
Brief Summary:
- Add path for PFUNIT on izumi and add path for batch commands to $PATH.
- Initialize albdif and albdir
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
0f0531e18 Merge pull request #3302 from ekluzek/izumipgi
21476986b Merge pull request #3295 from jedwards4b/seq_flux_vars_init
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M src/drivers/mct/main/seq_flux_mct.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 10-25-2019
Tag: cime5.6.25
Answer Changes: None
Tests: SMS_Ld1_D.f19_g17.I1850Clm50BgcCropCmip6.cheyenne_gnu.clm-default
Dependencies:
Brief Summary:
- Cherry-picked AQPCONST changes.
- Fix mpi_bcast in seq_flux_mct.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
03cb90660 Merge pull request #3266 from ESMCI/aqp_cherrypick
f75914619 Merge pull request #3261 from jedwards4b/seq_flux_mct_fix
Modified files: git diff --name-status [previous_tag]
M src/components/data_comps/docn/cime_config/buildnml
M src/components/data_comps/docn/cime_config/config_component.xml
M src/components/data_comps/docn/cime_config/namelist_definition_docn.xml
M src/components/data_comps/docn/docn_comp_mod.F90
M src/components/data_comps/docn/docn_shr_mod.F90
M src/drivers/mct/main/seq_flux_mct.F90
M src/share/util/shr_scam_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 9-30-2019
Tag: cime5.6.24
Answer Changes: None
Tests: aux_cam tests, cime_developer tests, scripts_regression_tests
tested workflow by hand
Dependencies:
Brief Summary:
- Add namelist for minimum wind speed for atmOcn fluxes.
- Address objection to using case in workflow.
- Fix case of workflow job prior to case.run or case.test.
- Fix bug in SCAM.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
cf62e3524 Merge pull request #3251 from cacraigucar/atmOcn_wind
98d8115ac Merge pull request #3246 from jedwards4b/workflow_casetoworkflow_id
829138e73 Merge pull request #3242 from jedwards4b/workflow_before_run_fix
7b1b3208c Merge pull request #3238 from cacraigucar/maint-5.6
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_workflow.xml
M config/e3sm/machines/config_workflow.xml
M config/xml_schemas/config_workflow.xsd
M scripts/Tools/preview_run
M scripts/create_newcase
M scripts/lib/CIME/XML/env_batch.py
M scripts/lib/CIME/XML/workflow.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_submit.py
M src/drivers/mct/cime_config/namelist_definition_drv.xml
M src/drivers/mct/main/seq_flux_mct.F90
M src/share/util/shr_flux_mod.F90
M src/share/util/shr_scam_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 9-11-2019
Tag: cime5.6.23
Answer Changes: climate changing for C & G compsets.
Tests: cime_developers, aux_cam, scripts_regression_tests
Dependencies:
Brief Summary:
- Change rce_sst to fixed_sst to better reflect its purpose.
- Fix wallclocks in testlists.
- Archive metadata add support for lens experiment type.
- Changes to support Radiative Convective Equilibrium.
- Add support for CMIP6 OMIP, update JRA forcing files.
- Make the streams file legitiment xml files.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
e7e14698a Merge pull request #3236 from cacraigucar/fixed_sst
189ac85c6 Merge pull request #3234 from ESMCI/fischer/wallclocks
751d24c99 Merge pull request #3228 from bertinia/maint-5.6_archive_metadata
3a3fa6fab Merge pull request #3231 from cacraigucar/rce_release
3418675b0 Merge pull request #3223 from klindsay28/cesm2_omip
38117f02d Merge pull request #3217 from jedwards4b/maint-5.6_user_streamfix
Modified files: git diff --name-status [previous_tag]
M config/cesm/config_archive.xml
M config/cesm/config_grids.xml
M scripts/Tools/archive_metadata
A scripts/lib/CIME/XML/stream.py
M scripts/lib/CIME/case/case_setup.py
M scripts/lib/CIME/nmlgen.py
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/datm_comp_mod.F90
M src/components/data_comps/dice/cime_config/buildnml
M src/components/data_comps/dlnd/cime_config/buildnml
M src/components/data_comps/docn/cime_config/buildnml
M src/components/data_comps/docn/cime_config/config_component.xml
M src/components/data_comps/docn/cime_config/namelist_definition_docn.xml
M src/components/data_comps/docn/docn_comp_mod.F90
M src/components/data_comps/docn/docn_shr_mod.F90
M src/components/data_comps/drof/cime_config/buildnml
M src/components/data_comps/drof/cime_config/namelist_definition_drof.xml
M src/components/data_comps/dwav/cime_config/buildnml
M src/drivers/mct/cime_config/buildnml
M src/drivers/mct/cime_config/config_component_cesm.xml
M src/drivers/mct/cime_config/namelist_definition_drv.xml
M src/drivers/mct/cime_config/testdefs/testlist_drv.xml
M src/drivers/mct/main/cime_comp_mod.F90
M src/drivers/mct/main/seq_flux_mct.F90
M src/drivers/mct/shr/seq_infodata_mod.F90
M src/share/streams/shr_tInterp_mod.F90
M src/share/util/shr_orb_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 8-26-2019
Tag: cime5.6.22
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Fix nag on izumi.
- Update for cori modules.
- Update regex to match changing cheyenne login name.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
b37b70c3b Merge pull request #3207 from ESMCI/fischer/nag
8d2fa1ec6 Merge pull request #3212 from ESMCI/fischer/cori_updates
7f8173207 Merge pull request #3214 from ESMCI/fischer/cheyenne_hostname
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M scripts/Tools/Makefile
======================================================================
======================================================================
Originator: Chris Fischer
Date: 8-14-2019
Tag: cime5.6.21
Answer Changes: None
Tests:
Dependencies:
Brief Summary:
- Update config_machines to update pgi software stack on cheyenne
- If filename is abspath use for filepath.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
80ae90470 Merge pull request #3202 from ESMCI/fischer/cheyenne_pgi
1c3da2440 Merge pull request #3200 from jedwards4b/aquap_fix
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/nmlgen.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 7-23-2019
Tag: cime5.6.20
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Fix mkDepends issue with shr_assert_mod.
- Server 0 file length fix.
- Avoid undefined variable error.
- More workflow updates.
- Adds a --ensemble option to create_clone.
- Workflow development.
- Fix error in job_id
- Put correct wallclock format for cheyenne.
- Changes to continue workflow development.
- Aleph port.
- Add nemo.
- presaero file for SSP1-2.6
- Add workflow xml.
- Avoid divide by 0 when timing file is bad.
User interface changes:
- Add --ensemble to generate_cylc_workflow generating an ensemble driver
for cylc workflow, this driver is generated in the first ensemble member
and controls all members from a single cylc suite.
- Adds --ensemble to create_clone, to use this option the original case
must end in one or more integers, so for example if the case is named
case.001 and --ensemble 4 is used you will get case.002, case.003, case.004
created.
- Adds support for external workflow engine cylc.
- New file for SSP1-2.6.
- Adds a --workflow-case option to create_newcase.
PR summary: git log --oneline --first-parent [previous_tag]..master
35e24bb50 Merge pull request #3179 from jedwards4b/mkDepends_fix
3e0b00a6d Merge pull request #3176 from jedwards4b/Server0filelengthfix
5f5408d4e avoid undefined variable error
c5bd8567c Merge pull request #3173 from jedwards4b/jedwards/more_workflow
12ca87021 Merge pull request #3169 from jedwards4b/ensemble_clone
a2a48c423 Merge pull request #3168 from jedwards4b/jedwards/workflow_development
802bf0dd1 fix error in job_id
ba17f31f0 Merge pull request #3164 from jedwards4b/maint-5.6_cheyenne_wallclock_fix
35b78be10 Merge pull request #3160 from jedwards4b/workflow_changes
09c0a969e Merge pull request #3159 from jedwards4b/aleph_port
735053ce7 Merge pull request #3153 from ESMCI/peano/nemo
2e842025c Merge pull request #3152 from ekluzek/presaerossp2126
fc70da142 Merge pull request #3125 from jedwards4b/add_workflow_xml
958190cf2 Merge pull request #3138 from jedwards4b/timing_0_fix
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_batch.xml
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
A config/cesm/machines/config_workflow.xml
A config/cesm/machines/cylc_suite.rc.template
M config/config_headers.xml
M config/e3sm/config_files.xml
M config/e3sm/machines/config_batch.xml
A config/e3sm/machines/config_workflow.xml
M config/xml_schemas/config_batch.xsd
M config/xml_schemas/config_compilers_v2.xsd
A config/xml_schemas/config_workflow.xsd
M scripts/Tools/Makefile
A scripts/Tools/generate_cylc_workflow.py
M scripts/Tools/mkDepends
M scripts/Tools/preview_run
M scripts/create_clone
M scripts/create_newcase
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/XML/batch.py
M scripts/lib/CIME/XML/env_base.py
M scripts/lib/CIME/XML/env_batch.py
M scripts/lib/CIME/XML/env_mach_specific.py
A scripts/lib/CIME/XML/env_workflow.py
M scripts/lib/CIME/XML/generic_xml.py
A scripts/lib/CIME/XML/workflow.py
M scripts/lib/CIME/aprun.py
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_clone.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/check_input_data.py
M scripts/lib/CIME/get_timing.py
M scripts/tests/scripts_regression_tests.py
M src/build_scripts/buildlib.csm_share
M src/components/data_comps/datm/cime_config/namelist_definition_datm.xml
M src/drivers/mct/cime_config/config_component.xml
M src/drivers/mct/cime_config/config_component_cesm.xml
M src/share/timing/Makefile
M src/share/util/shr_file_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 6-6-2019
Tag: cime5.6.19
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Remove changes to case_run, fix a module issue on cori-knl.
- Fix was not py2 compatible, this one is.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
1adcdeb Merge pull request #3136 from jedwards4b/cori_and_case_run
40615b7 Merge pull request #3134 from jedwards4b/encodefixagain
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/case/case_run.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 6-5-2019
Tag: cime5.6.18
Answer Changes: Round Off for centos7-linux and cori
Tests: scripts_regression_tests on cori and cheyenne
Dependencies:
Brief Summary:
- Update modules for centos7-linux, fix py3 error in case_run.py.
- Update modules on cori-haswell and cori-knl.
- Add test_release as a test category consulted to determine if a compset -- grid combination is supported.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
6704570 Merge pull request #3133 from jedwards4b/centos7-update
d40e715 Merge pull request #3132 from jedwards4b/cori_update
d86457d Merge pull request #3128 from gold2718/add_test_release
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/case/case.py
M scripts/lib/CIME/case/case_run.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 5-29-2019
Tag: cime5.6.17
Answer Changes: None
Tests: Manually ran archive_metadata
By hand
Dependencies:
Brief Summary:
- Update archive_metadata strip to lstrip.
- Correct error messages from wget interface.
- Fix README
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
bacf1db Merge pull request #3122 from bertinia/maint-5.6_archive_metadata
c050233 Merge pull request #3119 from jedwards4b/wget_message_fix
bd7e7fd fix README
Modified files: git diff --name-status [previous_tag]
M ChangeLog
M scripts/Tools/archive_metadata
M scripts/lib/CIME/Servers/wget.py
M tools/statistical_ensemble_test/README
======================================================================
======================================================================
Originator: Chris Fischer
Date: 5-15-2019
Tag: cime5.6.16
Answer Changes: climate-changing -- new datasets
Tests: Ran all 8 ISSP's
SMS_D_Ln9.f19_f19_mg16.FX2000.pleiades-has_intel (Overall: PASS)
SMS_D_Ln9.f19_f19_mg16.FX2000.pleiades-san_intel (Overall: PASS)
SMS_Ld1.f19_f19_mg16.FX2000.pleiades-bro_intel (Overall: PASS)
SMS_Ld1.f19_f19_mg16.FX2000.pleiades-has_intel (Overall: PASS)
SMS_Ld1.f19_f19_mg16.FX2000.pleiades-ivy_intel (Overall: PASS)
SMS_Ld1.f19_f19_mg16.FX2000.pleiades-san_intel (Overall: PASS)
Dependencies:
Brief Summary:
- Add CO2 time-series for CMIP6 future scenarios and three prescribed
aerosol CMIP6 future scenarios.
- Bring changes to datm Present Day compsets from master to maint-5.6.
- pdate intel compiler version and ESMF lib for pleiades.
- Fix archive dir for stampede.
User interface changes:
- Changes default settings for some compsets.
PR summary: git log --oneline --first-parent [previous_tag]..master
59960d9 Merge pull request #3112 from ekluzek/addSSPCO2npresaero
f43ef89 Merge pull request #3110 from ekluzek/datmsettings4PDcompsets
1e703d8 Merge pull request #3108 from fvitt/pleiades
29536e1 fix archive dir for stampede
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_compilers.xml
M config/cesm/machines/config_machines.xml
M doc/source/users_guide/compsets.rst
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/drivers/mct/cime_config/config_component_cesm.xml
M src/drivers/mct/cime_config/config_compsets.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 4-26-2019
Tag: cime5.6.15
Answer Changes: None
Tests: scripts_regression_tests.py, by hand, SMS_P45.f19_g16.X
manually test archive_metadata
Dependencies:
Brief Summary:
- Improve reporting of invalid settings in REFCASE when GET_REFCASE=TRUE.
- Remove ESMF modules on edison.
- Fix issue with setting 2 io tasks.
- maint-5.6 archive_metadata update.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
a1c0e9d Merge pull request #3095 from jedwards4b/get_refcase_errors
4abc89e Merge pull request #3080 from ESMCI/fischer/edison
bfd3e22 Merge pull request #3078 from jedwards4b/shr_pio_bug_fix
93bd063 Merge pull request #3076 from bertinia/maint-5.6_archive_metadata
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/Tools/archive_metadata
M scripts/lib/CIME/case/check_input_data.py
M src/share/util/shr_pio_mod.F90
======================================================================
======================================================================
Originator: Chris Fischer
Date: 4-08-2019
Tag: cime5.6.14
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Update modules for cori.
- Update A compsets to avoid needing a 6GB inputdata file for testing.
- Minor bug fixes for xml interface.
- Update modules for cheyenne pgi.
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
ff65ad0 Merge pull request #3070 from ESMCI/fischer/cori_module_update
4f5b655 Merge pull request #3069 from ESMCI/fischer/3053
e3fbee4 Merge pull request #3057 from jedwards4b/maint-5.6-xml_fixes
398df65 Merge pull request #3049 from ESMCI/fischer/cheyenne_mpt_pgi
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/XML/entry_id.py
M scripts/lib/CIME/XML/generic_xml.py
M src/components/data_comps/datm/cime_config/config_component.xml
======================================================================
======================================================================
Originator: Chris Fischer
Date: 3-13-2019
Tag: cime5.6.13
Answer Changes: None
Tests: scripts_regression_tests
Dependencies:
Brief Summary:
- Only download chksum file(s) if requested.
- mpiexec_mpt argument fix on cheyenne
User interface changes:
PR summary: git log --oneline --first-parent [previous_tag]..master
170db73 Merge pull request #3038 from jedwards4b/chksum_fixes_maint-5.6
cc6fe0f for mpt/2.19 -p must preceed -np in mpiexec_mpt arguments
Modified files: git diff --name-status [previous_tag]
M config/cesm/machines/config_machines.xml
M scripts/lib/CIME/Servers/ftp.py
M scripts/lib/CIME/Servers/gftp.py
M scripts/lib/CIME/Servers/svn.py
M scripts/lib/CIME/Servers/wget.py
M scripts/lib/CIME/case/check_input_data.py
======================================================================
======================================================================
Originator: Chris Fischer
Date: 3-7-219
Tag: cime5.6.12
Answer Changes: None
Tests: scripts_regression_tests, code_checker
Dependencies:
Brief Summary:
- Fix issue with chksum option, update cheyenne.
- Add checksum support for inputdata.
- PIO performance optimization merge.
- Move the logic to check and update batch options.
- Update Ensemble Consistency Test README.
- Update to archive_metadata stand-alone functionality.
- Consolidate inputdata for stamepede2 and lonestar5.
- Port to tacc system lonestar5.
- Initial port to izumi.
- Allow specifying directives to use for an unknown queue.
- Update bluewaters machine interface.
- Minor update to archive_metadata.