forked from ESCOMP/CISM-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
10533 lines (7558 loc) · 414 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
================================================================================
This file describes what tags were created on master and why
================================================================================
Originator: mvertens, katetc
Date: June 28, 2024
Version: cismwrap_2_2_002
One-line summary: Reroute runoff from glc->ocn to glc->rtm
Purpose of changes:
This PR does the following:
- Changed glc->ocn to be glc->rof fields
- Fogg_rofi -> Fgrg_rofi
- Fogg_rofl -> Fgrg_rofl
- This PR also depends on Implementation of glc->ocn coupling via going through mosart CMEPS#463
- Incorporate capability of receiving multi level ocean data from mediator
- removed MCT
- Update external submodules
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: All change answers due to externals updates
Generated new baselines
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel and gnu). Generated new suite of baselines.
================================================================================
Originator: jedwards
Date: May 14, 2024
Version: cismwrap_2_2_001
One-line summary: Replace manage_externals with git-fleximod
Purpose of changes:
manage-externals was a package manager used to handle mixed subversion and
git repositories. We no longer have subversion repositories and the burdon
of supporting manage-externals was deemed to be too much. git-fleximod is
a much more lightweight tool to handle the same task.
Standalone checkout supported in this tag (Yes/No): Yes with a caveat
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
Note that the clm tag included in the cism externals here still uses manage-externals
and so to run I compset tests you must go to the components/clm directory and
run ./manage_externals/checkout_externals -e Externals_CLM.cfg first.
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No answer changes from previous tag
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel). Generated new suite of baselines.
================================================================================
Originator: katetc
Date: April 18, 2024
Version: cismwrap_2_1_100
One-line summary: Update Externals and advertise import fields with NoEvolve
Purpose of changes:
Changes to the NUOPC cap to make sure that CISM NoEvolve gets downscaled data
from the coupler. This tag also includes an update for the external components,
including CTSM and ccs_config, to ensure that cism-wrapper continues building
and running supported compsets.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES - the new CTSM external changes
answers for I compsets.
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel + gnu). Generated new suite of baselines.
- ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: DIFF) details
No longer fails COMPARE_base_rest due to new Externals (See notes under cismwrap_2_1_98)
Baseline compare fails because no baselines generated in previous tags
- All other T compsets NLFAIL due to coupler namelist changes
- All I compsets DIFF due to new CTSM external
Failures are as expected:
- FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
- Fails on master, too (not noted for earlier tags because derecho_gnu testing hasn't been run)
================================================================================
Originator: sacks
Date: April 3, 2024
Version: cismwrap_2_1_99
One-line summary: Change CISM_USE_ICESHEET to GLC_USE_ICESHEET
Purpose of changes:
Now DGLC defines similar variables. To keep the logic simple in CTSM
(which uses these variables), we'll use GLC_USE_ICESHEET in both.
For now also keeps CISM_USE_ICESHEET for backwards compatibility.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel + gnu). Generated new suite of baselines.
Failures are as expected:
- FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- See notes under cismwrap_2_1_98
- FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
- Fails on master, too (not noted for earlier tags because derecho_gnu testing hasn't been run)
================================================================================
Originator: katetc
Date: February 27, 2024
Version: cismwrap_2_1_98
One-line summary: Fix externals link and documentation updates
Purpose of changes:
Point to cism main tag for Derecho support instead of branch (bug fix).
Includes updates to documentation related to multiple ice sheets as
well.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only. Generated new suite of baselines.
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve FAIL
FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- Test fails due to a specific code mod in the CMEPS driver that treated
T compsets differently from others. This was fixed in CMEPS pr #425 and included
in all CMEPS tags after cmeps0.14.50. However, I will leave updating the
externals to support this to another tag as there are issues with CIME and
manage_externals currently that need to be sorted.
All tests but the one above ran and passed, including B4B baseline compares.
================================================================================
Originator: katetc
Date: December 11, 2023
Version: cismwrap_2_1_97
One-line summary: Updates for Derecho
Purpose of changes:
CISM updates to support Dercho, the new CISM tag fixes SLAP
and Intel build times in CISM. Update externals for Derecho, update test
list and PE layouts for Derecho and NUOPC-only supported going forward.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only. Generated new suite of baselines.
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve FAIL
FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- Test fails because restart runs for 3 years instead of just one year, and then
tries to compare year 0004 to 0006. I have no idea why this is happening. Added as
a CISM-Wrapper issue: #83
All tests but the one above ran and passed, but failed baseline compares due to the
new machine name.
================================================================================
Originator: katetc
Date: June 30, 2023
Version: cismwrap_2_1_96
One-line summary: Include new CISM source tag, update externals, update test list
Purpose of changes:
Update the cism source tag to cism_main_2.01.012 to include PR #55 in
ESCOMP/CISM from jedwards: Change required for Derecho. In cism-wrapper,
all Externals updated to current versions (reflecting CTSM currently),
and test list updated to remove mct and pgi tests.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed but namelist comparison fails in all cases due to changes
in data components. Baseline differences in all I cases due to CTSM updates.
================================================================================
Originator: sacks
Date: December 28, 2021
Version: cismwrap_2_1_95
One-line summary: Support one ice sheet evolving and one not evolving
Purpose of changes:
Changes needed to allow a mix of evolving and non-evolving ice sheets
in a single run. The primary need for this was moving zero_gcm_fluxes
from cism_in into the config file, but I also made some other small
changes to support this scenario. I have also added an ERI test of
this scenario to make sure that hybrid, branch and restart runs all
work when you have a mix of evolving and non-evolving ice sheets.
Also some other minor fixes.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
Resolves ESCOMP/CISM-wrapper#53 (Change handling of some ice
sheet-specific variables that are currently in cism_in)
Resolves ESCOMP/CISM-warpper#54 (Do some testing with one ice sheet
evolving and the other not evolving)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and were bit-for-bit.
================================================================================
Originator: sacks
Date: December 27, 2021
Version: cismwrap_2_1_94
One-line summary: Update externals to versions in CESM2_3_beta07
Purpose of changes:
Update externals to versions in CESM2_3_beta07
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Changes answers for I compsets due to externals update
Also, FIELDLIST diffs for T compsets (change in cpl hist file), and
NLCOMP diffs for all tests.
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed, with answer changes as noted above.
================================================================================
Originator: sacks
Date: October 22, 2021
Version: cismwrap_2_1_93
One-line summary: Support multiple ice sheets
Purpose of changes:
Many changes to support multiple ice sheets. Multiple ice sheet
support is now essentially working, though there are still one or two
additions needed (supporting one ice sheet evolving and the other
not; and maybe one or two other things).
This tag also moves CISM's config_archive information into CISM
instead of being in CIME.
In addition, this tag adds some multiple ice sheet tests to the
aux_glc and prealpha test suites - either modifying existing tests to
have multiple ice sheets, adding new tests. It also adds two new,
related test types (MULTINOAIS and MULTINOGRIS) for comparing runs
with multiple vs. single ice sheets, to help ensure that the multiple
ice sheet functionality is working correctly.
Standalone checkout supported in this tag (Yes/No): Yes (but note that
some externals point to hashes on branches)
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Changes answers in the topo export field from glc to lnd, but this
change doesn't impact the evolution of the model: The difference is
that, previously, outside of the CISM domain, topo was topo_virtual;
now, outside of the CISM domain, topo is 0. This change arises from a
change in CMEPS which was done for the sake of multiple ice sheets,
but seems fine in general, because these topo values shouldn't be
used outside of the CISM domain in CTSM.
This impacted the following tests in the test list:
- ERI.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling
- ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-override_glc_frac
- ERI_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-isostasy_period4
- ERS_Ly3.f10_f10_ais8_mg37.I1850Clm50SpGa.cheyenne_intel
- ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel
- SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-noevolve
As well as the following tests that I replaced but ran for this tag:
- ERS_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel
- SMS_D.f10_f10_ais8_mg37.I1850Clm50SpGa.cheyenne_gnu.cism-test_coupling
- SMS_D.T31_g37_gris20.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling
I have verified that, if I back out the relevant logic change in
CMEPS (by changing the 'icemask_l(l) > 0._r8' conditional to a
hard-coded '.true.'), then baseline comparisons pass.
Bugs fixed (include github issue number):
- Resolves ESCOMP/CISM-wrapper#41 (Bring in Fortran changes needed for
multiple ice sheets)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed, and were bit-for-bit other than the change noted
above.
For tests that used to be in the test suite and have now been
replaced by multi-ice sheet tests, I ran the original version with
baseline comparisons as well.
================================================================================
Originator: sacks
Date: September 29, 2021
Version: cismwrap_2_1_92
One-line summary: Update externals (nuopc now the default!) and test list
Purpose of changes:
- Update externals to versions tentatively planned for
cesm2_3_beta06. A key change here is to make nuopc the default
driver.
- Rework test names now that nuopc is the default driver (so _Vmct is
needed explicitly, _Vnuopc is not)
- Add a few more nuopc tests, now that nuopc is working on izumi_nag
(partially addresses
https://github.com/ESCOMP/CISM-wrapper/issues/60)
- Fix for build issue on izumi_nag
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No, but test names have changed
To do baseline comparisons, I needed to create a temporary baseline
directory where I renamed the tests as in this tag. With those
renames, all tests passed baseline comparisons, though I compset
tests had fieldlist differences.
Bugs fixed (include github issue number):
- Partially addresses ESCOMP/CISM-wrapper#60 (Once nuopc/cmeps cases
work on izumi, add some testing)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and are bit-for-bit.
Note that there are a few other nuopc tests I feel we should add, but
I have left them out for now because they would fail: see
https://github.com/ESCOMP/CISM-wrapper/issues/60 for details.
================================================================================
Originator: sacks
Date: September 14, 2021
Version: cismwrap_2_1_91
One-line summary: Fixes for Antarctica
Purpose of changes:
- Point to new Antarctica init file that fixes
https://github.com/ESCOMP/CISM/issues/39 and removes some unnecessary
fields (see discussion in that issue for details)
- Update some Antarctica config settings (see
https://github.com/ESCOMP/CISM/issues/39 for details)
- Point to new version of CISM external that fixes an issue in debug mode
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Changes answers for Antarctica. Greenland cases are bit-for-bit (but
have namelist changes that do not impact the simulation)
Bugs fixed (include github issue number):
- Resolves ESCOMP/CISM#39 (For Antarctica simulations in CESM, SMB can
accumulate in the ocean)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
Tests pass. Antarctica tests change answers as expected. All tests
have NLCOMP diffs as expected.
================================================================================
Originator: katetc
Date: September 8, 2021
Version: cismwrap_2_1_90
One-line summary: Default for pseudo_plastic_bedmin and namelist changes
Purpose of changes:
The default value for pseudo_plastic_bedmin is changed from -700m to -300m.
Clean up comments (desc field) for which_ho_ground so that it is more clear.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
- No specific issue (email conversation with Adam Herrington)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and are bit-for-bit.
================================================================================
Originator: sacks
Date: August 23, 2021
Version: cismwrap_2_1_89
One-line summary: Support multiple user_nl_cism files
Purpose of changes:
For the sake of supporting multiple ice sheets, this tag adds support
for multiple user_nl_cism files: An overall user_nl_cism plus a
separate user_nl_cism_icesheet file for each ice sheet (e.g.,
user_nl_cism_ais, user_nl_cism_gris).
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
- Ties in with https://github.com/ESMCI/cime/issues/3999
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and are bit-for-bit.
================================================================================
Originator: sacks
Date: August 12, 2021
Version: cismwrap_2_1_88
One-line summary: Add out-of-the-box Antarctica support
Purpose of changes:
Add out-of-the-box for running Antarctica configurations, both in T
compsets (CISM-only) and I compsets (CISM & CTSM).
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No
Bugs fixed (include github issue number):
- https://github.com/ESCOMP/CISM-wrapper/issues/40 (Make a supported
Antarctica grid and compset)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi. This includes 5 new
tests covering Antarctica configurations.
All tests passed and are bit-for-bit (except 5 new Antarctica tests,
which had no baselines)
================================================================================
Originator: mvertens
Date: August 3, 2021
Version: cismwrap_2_1_87
One-line summary: Fix mid-year restarts with CMEPS driver
Purpose of changes:
Small code change and update to the CMEPS external to fix mid-year
restarts with the CMEPS driver. Also add _Vnuopc tests with mid-year
restart back to the test suite.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
- https://github.com/ESCOMP/CMEPS/issues/143
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and are bit-for-bit.
================================================================================
Originator: sacks
Date: August 2, 2021
Version: cismwrap_2_1_86
One-line summary: Update externals
Purpose of changes:
Update externals to versions used in ctsm5.1.dev049 - generally a
little past cesm2_3_beta04. This includes the separation of cime into
multiple repositories, so there are some new externals in this tag.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
The externals update causes answer changes for:
- I compsets: diffs
- NUOPC cases: just field list changes
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass, with answer changes as noted above.
================================================================================
Originator: sacks
Date: May 29, 2021
Version: cismwrap_2_1_85
One-line summary: Scripting changes to support multiple grids for a component
Purpose of changes:
This tag brings in scripting changes to support multiple grids for a
component, as will be needed to support multiple GLC grids (e.g.,
Greenland + Antarctica). Most of these changes come in via an update
in the cime external. In addition, there are some changes in CISM's
buildnml, reworking error checking and grid matches for
colon-delimited grids. There is also an update in the CMEPS external
to remove some unneeded namelist variables, somewhat connected with
these changes.
Also, an unrelated change: Change python shebang lines to python3,
now that we're using python3 with CIME.
Standalone checkout supported in this tag (Yes/No): Ys
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass and are bit-for-bit with the previous tag. NLCOMP
failures as expected, just for NUOPC tests, just due to the removal
of some namelist variables in CMEPS (glc2lnd_fmapname,
glc2lnd_smapname, glc_nx, glc_ny, lnd2glc_fmapname,
lnd2glc_smapname).
================================================================================
Originator: sacks
Date: May 29, 2021
Version: cismwrap_2_1_84
One-line summary: Update externals
Purpose of changes:
Update externals to version in cesm2_3_beta03
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Changes answers for I compsets due to externals updates
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass; I compsets change answers, others are bit-for-bit.
================================================================================
Originator: sacks
Date: May 11, 2021
Version: cismwrap_2_1_83
One-line summary: Rename CISM's parallel_mod to cism_parallel
Purpose of changes:
Rename CISM's parallel_mod to cism_parallel, because parallel_mod
conflicts with a CAM-SE module name.
The main change here is an update to the CISM external, with code
changes from Bill Lipscomb and Kate Thayer-Calder
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass and are bit-for-bit with the previous tag.
================================================================================
Originator: sacks
Date: May 7, 2021
Version: cismwrap_2_1_82
One-line summary: Update externals to cesm2_3_beta02
Purpose of changes:
Update externals to approximately the cesm2_3_beta02 version.
This includes a minor change in buildlib for compatibility with the
latest cime.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass and are bit-for-bit with the previous tag.
================================================================================
Originator: mvertens, sacks
Date: May 4, 2021
Version: cismwrap_2_1_81
One-line summary: Updates for multiple ice sheet support
Purpose of changes:
Some updates to the NUOPC cap for multiple ice sheet support, along
with an updated CMEPS external with similar updates.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
However, cpl hist files differ in their field lists due to renamed
glc fields for the sake of supporting multiple ice sheets.
Bugs fixed (include github issue number): None
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass and are bit-for-bit with the previous tag, with the
caveats noted above.
================================================================================
Originator: sacks
Date: April 30, 2021
Version: cismwrap_2_1_80
One-line summary: Rename Greenland grid "gland" to "gris"
Purpose of changes:
We want to consistently refer to the Greenland ice sheet as "gris".
This will be particularly helpful as we move to supporting multiple
ice sheets in a single run. Therefore, this tag renames "gland" to
"gris" in the grid long name and uses "_gris4" or "_gris20" in place
of "_gl4" and "_gl20" in the grid aliases. This is accomplished via
changes in both CISM-wrapper and CIME.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
However:
1. In order to perform baseline comparisons, I made a temporary
baselines directory where I changed the test directory names to
use the new grid alias names.
2. ERI_Vnuopc.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling
failed against baselines. However, it also failed baseline
comparisons when I ran it from master. I get bfb answers when
comparing my branch with a test that I ran myself from master. One
hypothesis is that the version stored in the baseline directory
mistakenly used --mpilib openmpi.
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests pass and are bit-for-bit with the previous tag, with the
caveats noted above.
================================================================================
Originator: katetc / whlipscomb
Date: April 7, 2021
Version: cismwrap_2_1_79
One-line summary: Support for new CISM version cism_main_2.01.002
Purpose of changes:
- Point to new CISM, now using tags on the main branch. This new version includes
several new features such as support for ISMIP6 standalone experiments, new
schemes for sub-ice-shelf melting and CESM ocean coupling support.
- Adding new namelist options for CISM's new options and parameterizations, as
well as ocean coupling grid specifications.
- Basic support for gathering temperature and salinity information from the coupler
to support sub-ice-sheet melting in CESM.
- Updates to a few tests that may take a little longer with the new CISM code.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
No baselines stored or compared on Izumi.
All tests fail NL compare due to extensive namelist updates.
All tests with an active ice sheet DIFF against baselines.
Tests with GNU compiler on Cheyenne use default mpi library (not openmpi).
Different from baselines:
ERI_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly15.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly44.f09_g17_gl20.T1850Gg.cheyenne_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Vnuopc_Ly15.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Vnuopc_Ly44.f09_g17_gl20.T1850Gg.cheyenne_intel.cism-isostasy_period4 (Overall: DIFF)
ERS_D_Ly3.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-cmip6_evolving_icesheet (Overall: DIFF)
ERS_D_Ly3.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-noevolve (Overall: NLFAIL)
ERS_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel (Overall: DIFF)
ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel (Overall: DIFF)
ERS_Ly3_N2_D.f09_g17_gl20.T1850Gg.cheyenne_intel (Overall: DIFF)
ERS_Ly7.f09_g17_gl4.T1850Gg.cheyenne_intel (Overall: DIFF)
ERS_Vnuopc_D_Ly3.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-cmip6_evolving_icesheet (Overall: DIFF)
ERS_Vnuopc_Ly3.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel (Overall: DIFF)
ERS_Vnuopc_Ly3_N2_D.f09_g17_gl20.T1850Gg.cheyenne_intel (Overall: DIFF)
ERS_Vnuopc_Ly7.f09_g17_gl4.T1850Gg.cheyenne_intel (Overall: DIFF)
SMS_D_Ly1.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-isostasy_period1 (Overall: DIFF)
SMS_D_Ly1.f09_g17_gl4.T1850Gg.cheyenne_intel (Overall: DIFF)
SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-noevolve (Overall: NLFAIL)
SMS_Vnuopc_D_Ly1.f09_g17_gl4.T1850Gg.cheyenne_intel.cism-isostasy_period1 (Overall: DIFF)
SMS_Vnuopc_D_Ly1.f09_g17_gl4.T1850Gg.cheyenne_intel (Overall: DIFF)
SMS_Vnuopc_Lm13.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-noevolve (Overall: NLFAIL)
ERI.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling (Overall: DIFF)
ERI_N2_Ly9.f09_g17_gl20.T1850Gg.cheyenne_gnu (Overall: DIFF)
ERI_Vnuopc.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling (Overall: DIFF)
ERI_Vnuopc_N2_Ly9.f09_g17_gl20.T1850Gg.cheyenne_gnu (Overall: DIFF)
ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-override_glc_frac (Overall: DIFF)
ERS_Ly11.f09_g17_gl20.T1850Gg.cheyenne_gnu.cism-oneway (Overall: DIFF)
ERS_Ly11.f09_g17_gl20.T1850Gg.cheyenne_gnu (Overall: DIFF)
ERS_Ly3.f09_g17_gl4.T1850Gg.cheyenne_gnu.cism-isostasy_period1 (Overall: DIFF)