forked from NCAR/ParallelIO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
4609 lines (3056 loc) · 139 KB
/
Copy pathChangeLog
File metadata and controls
4609 lines (3056 loc) · 139 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
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
================================================================================
SVN $Id: ChangeLog 45058 2013-03-20 16:12:21Z jedwards $
SVN $URL: https://parallelio.googlecode.com/svn/trunk $
================================================================================
This file describes what tags were created and why
===========================
Originator: jedwards
Date: Jan 16, 2014
Model: pio
Version: pio1_8_7
One-line Fix issues with BGQ topology, fix minor memleaks
M topology.c
M piolib_mod.F90
===========================
Originator: jedwards
Date: Dec 11, 2013
Model: pio
Version: pio1_8_6
One-line summary: further build updates
===========================
Originator: jedwards
Date: Dec 06, 2013
Model: pio
Version: pio1_8_5
One-line summary: Get cmake utilities from external repository
D pio/cmake
D SVN_EXTERNAL_DIRECTORIES
A pio/SVN_EXTERNAL_DIRECTORIES
===========================
Originator: jedwards
Date: Dec 06, 2013
Model: pio
Version: pio1_8_4
One-line summary: added unittests - tested on yellowstone_intel and hopper_pgi - these tests must be run from an
interative login session
A unittests/
===========================
Originator: jedwards
Date: Dec 03, 2013
Model: pio
Version: pio1_8_3
One-line summary: cmake updates
M pio/cmake/TryCSizeOf.f90
M pio/cmake/TryMPISERIAL.f90
M pio/CMakeLists.txt
===========================
Originator: jedwards
Date: Nov 24, 2013
Model: pio
Version: pio1_8_2
One-line summary: fix issues with put in pnetcdf
M pionfput_mod.F90.in
M pionfput_mod.F90
===========================
Originator: jedwards
Date: Nov 19, 2013
Model: pio
Version: pio1_8_1
One-line summary: Fixes for problems found in the build of cesm1_3_alpha06c
M pio_types.F90
M pio.F90
M nf_mod.F90
===========================
Originator: jedwards
Date: Nov 13, 2013
Model: pio
Version: pio1_8_0
One-line summary: switch to a cmake build, updates for mira, fixes for netcdf4p
remove all autoconf support files, add cmake support files.
it is currently required to run tests by hand, a cmake implimentation
of tests is planned but incomplete. CESM tests have been run
on this tag.
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_7_2
Originator(s): Jim
Date: 05-31-2013
One-line Summary: Bug fix in calcdecomp.F90
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M Calcdecomp.F90 - only mark as converged if all iotasks are counted
M box_rearranger.F90.in - add code to avoid an infinate loop
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed: Bugzilla 1721
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests:
testpio.693883.stdout:test complete on yellowstone 103 tests PASS, 0 tests FAIL
testpio.696040.stdout:test complete on yellowstone_gnu 80 tests PASS, 0 tests FAIL
testpio.696166.stdout:test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_7_1
Originator(s): Jim
Date: 05-20-2013
One-line Summary: bug fix in calcdecomp.F90
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M calcdecomp.F90
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed: edge case in ROF model, problem was found in cesm test
ERS_N2.f19_g16.B20TRC5CN.yellowstone_intel
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Self
Summary of pre-tag testing:
Regression tests:
testpio.693883.stdout:test complete on yellowstone 103 tests PASS, 0 tests FAIL
testpio.696040.stdout:test complete on yellowstone_gnu 80 tests PASS, 0 tests FAIL
testpio.696166.stdout:test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
cesm1_2_rel03 prebeta yellowstone intel tests all pass.
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_7_0
Originator(s): Jim
Date: May 10, 2013
One-line Summary: Bug fix in calcdecomp, remove parameters from mpi_bcast
and pass variables to satisfy f90 module issues.
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
pionfput_mod.F90.in
piolib_mod.F90
pionfget_mod.F90.in
pionfatt_mod.F90.in
piodarray.F90.in
Remove constant fields from mpi_bcast calls, these were not errors, but
caused problems with the F90 interface in fujitsues mpi.mod
calcdecomp.F90
Every io task now computes all io tasks start and count and checks them
for consistancy, if inconsistant reduce the number of io tasks by 1 and try
again.
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests:
test complete on yellowstone 103 tests PASS, 0 tests FAIL
test complete on yellowstone_gnu 80 tests PASS, 0 tests FAIL
test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
cesm intel prealpha tests on yellowstone
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_9
Originator(s): Jim
Date: May 01, 2013
One-line Summary: minor fix (again) in box_rearrange.F90 for mpi-serial
M pio/box_rearrange.F90.in
M pio/box_rearrange.F90
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_8
Originator(s): Jim
Date: April 23, 2013
One-line Summary: minor fix in box_rearrange.F90 for mpi-serial
M pio/box_rearrange.F90.in
M pio/box_rearrange.F90
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_7
Originator(s): Jim
Date: April 22, 2013
One-line Summary: bug fixes in async interface, mpi-serial interface
List all subroutines eliminated:
List all subroutines added and what they do:
readded file dtypes.h which is generated but timestamps were causing issues
List all existing files that have been modified, and describe the changes:
M pio/pio_msg_callbacks.F90
M pio/piolib_mod.F90
M pio/Makefile
M pio/pio_msg_mod.F90
A pio/dtypes.h
M pio/nf_mod.F90
M pio/piodarray.F90.in
M pio/piodarray.F90
M pio/iompi_mod.F90.in
M pio/iompi_mod.F90
M pio/box_rearrange.F90.in
M pio/box_rearrange.F90
M pio/pionfput_mod.F90.in
M pio/pionfput_mod.F90
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing: cesm prealpha testing
Regression tests:
test complete on yellowstone 103 tests PASS, 0 tests FAIL
test complete on yellowstone_gnu 80 tests PASS, 0 tests FAIL
test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_6
Originator(s): Jim, Alice
Date: Apr 03, 2013
One-line Summary: Documentation update, mv genf90.pl to external, bug fix in nfput for pnetcdf
List all subroutines eliminated: pio_quicksort.F90 (not used), dtypes.h (now autogenerated) genf90.pl (now external)
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
Many changes in documentation.
pionfput_mod.F90.in: Made put_var_0d_{TYPE} explicit and seperate from put_var_{DIMS}d_{TYPE} to allow
for a bug fix in 0d vars written using pnetcdf and to allow some CPP code cleanup.
List all component tags that were used to create pio tag:
genf90: genf90_130402
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed: Bugzilla 1647
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: cesm1_2_beta05 yellowstone_intel.prealpha tests
test complete on yellowstone_gnu 80 tests PASS, 0 tests FAIL
test complete on yellowstone 103 tests PASS, 0 tests FAIL
test complete on titan 102 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_5
Originator(s): Jim
Date: 03-07-2013
One-line Summary: minor change to work with mpi-serial
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
piolib_mod.F90 : add ifdef around MPI datatype calls (not supported by mpi-serial lib)
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests:
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_4
Originator(s): Jim
Date: 03-06-2013
One-line Summary: improved init_decomp performance
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M pio/configure.ac
M pio/configure
Updated version number in configure
M pio/piolib_mod.F90
M pio/box_rearrange.F90
M pio/box_rearrange.F90.in
Refactored search algorythm for ionodes significantly reducing the
time required for this operation
M testpio/build_defaults.xml
A testpio/ystest.sh
Changes to allow yellowstone to run netcdf4 tests, requires
a new script to submit compile to caldera.
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
box_rearrange_create time was reduced significantly with a change
to the search algorythm
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: test complete on yellowstone 103 tests PASS, 0 tests FAIL
cesm yellowstone prealpha tests completed (cesm1_2_alpha03c)
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_3
Originator(s): Jim
Date: 02-28-2013
One-line Summary: Remove indep mode calls from pnetcdf interface
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
testpio/testpio.F90 - reordered write of integer test file, useful for debugging
testpio/testpio_run.pl - fix netcdf4 test match
testpio/build_defaults.xml - update yellowstone interface to work with netcdf4 tests
a minor change to make the file xml compliant
testpio/check_mod.F90 - update test to avoid underflow warning
testpio/Utils.pm - update modules loaded for yellowstone
a minor change to support xml compliance in build_defaults.xml
pio/configure.ac - fix sizeof test issue
pio/configure
pio/calcdisplace_mod.F90 - remove intent from pointer argument
pio/pionfput_mod.F90.in - rework interface to pnetcdf to avoid indep_mode
pio/pionfput_mod.F90
pio/piolib_mod.F90 - add gensubarray routine to create subarray mpitype
pio/piovdc.F90 - reindent file
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: test complete on yellowstone 103 tests PASS, 0 tests FAIL
test complete on titan 102 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_2
Originator(s): jim
Date: 02-07-2013
One-line Summary: support for large data (bug fix), autoconf update
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M 703 testpio/testpio_run.pl - When using --twopass option do not
submit job unless build completes successfully
M 700 testpio/gdecomp_mod.F90 - fix a dependancy issue
M 700 pio/calcdisplace_mod.F90 - fail silently on overflow of displace
array, this data is not used for pnetcdf so by failing silently
here we defer the failure of mpiio i/o until the read or write call
M 700 pio/configure.ac - change line length max to 132 to support nag
fortran compiler
M 703 pio/piolib_mod.F90 - if displace array overflows in calcdisplace_mod
set filetype to mpi_datatype_null
M 700 pio/configure
M 700 pio/aclocal.m4
M 700 pio/config.h.in
these autoconf generated files are in the repo
for convience
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: Tested on challenger, titan, yellowstone with xlf,
pgi, and intel compilers
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_1
Originator(s): Jim
Date: 02-05-2013
One-line Summary: bug fix in reading 1d arrays
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M pio/piolib_mod.F90 lenblocks was incorrectly set to 1 for 1D arrays
M testpio/Utils.pm updates for yellowstone_pgi
M testpio/testpio_run.pl match yellowstone_pgi to host yellowstone
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: test complete on yellowstone 81 tests PASS, 0 tests FAIL
test complete on titan 80 tests PASS, 0 tests FAIL
test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
Also ran cesm1_2_alpha02a prealpha tests
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_6_0
Originator(s): Jim
Date: 02-04-2013
One-line Summary: fix bug in genindexedblock to allow larger arrays, separate vdc init routine
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M piolib_mod.F90
M calcdisplace_mod.F90
M pio_types.F90
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed: mpas decomp issue when two leading non-decomposed dimensions.
Describe any changes made to scripts/build system:
Updated tests to reflect
Describe any substantial timing or memory changes:
Code reviewed by: self
Summary of pre-tag testing:
Regression tests: test complete on yellowstone 81 tests PASS, 0 tests FAIL
test complete on titan 80 tests PASS, 0 tests FAIL
test complete on yellowstone_pgi 80 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_7
Originator(s): Jim
Date: 11-04-2012
One-line Summary: minor change in box_rearrange to avoid intel compiler bug
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
box_rearranger.F90.in : a variable was changed from i4 to i8 that didn't need to be
this was tickling a known issue in the intel compiler v 11.1
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Self
Summary of pre-tag testing:
Regression tests:
yellowstone 80 tests PASS, 0 tests FAIL
lynx_intel 81 tests PASS, 0 tests FAIL
bluefire 114 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name:pio1_5_6
Originator(s): Jim
Date: 10-30-2012
One-line Summary: minor change in pnetcdf interface, update documentation, update yellowstone in testpio
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
Index: Doxyfile
Index: doc/Decomp.txt
Index: doc/GettingStarted.txt
Index: doc/base.txt
Index: testpio/testpio.F90
Index: testpio/testpio_run.pl
Index: testpio/build_defaults.xml
Index: testpio/Utils.pm
Index: pio/pionfwrite_mod.F90
Index: pio/pionfwrite_mod.F90.in
Index: pio/pionfput_mod.F90
Index: pio/pionfput_mod.F90.in
Index: pio/pio_types.F90
Index: pio/piolib_mod.F90
Index: pio/piovdc.F90
Index: pio/iompi_mod.F90.in
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: self
Summary of pre-tag testing:
Regression tests:
bluefire 114 tests PASS, 0 tests FAIL
yellowstone 80 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_5
Originator(s): Jim Edwards
Date: 10-15-2012
One-line Summary: bug fix for large >4GB data, cmake tools, updated timing lib
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
testpio/build_defaults.xml:
testpio/Utils.pm:
testpio/testpio_run.pl : port to erebus and yellowstone
pio/box_rearrange.F90.in : promote some variables i4 to i8, remove debug prints
pio/calcdecomp.F90 : correct product calculation to i8
pio/topology.c : remove extra print statements (bluegene only)
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: self
Summary of pre-tag testing:
Regression tests:
bluefire 114 tests PASS, 0 tests FAIL
yellowstone 80 tests PASS, 0 tests FAIL
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_4 (ChangeLog was not updated for pio1_5_3)
Originator(s): Jim Edwards
Date: 9-12-2012
One-line Summary: move testlib to test directory make sure f95 compatible when
_COMPRESSION is not defined. Clean up pionfput_mod.F90.in
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
testpio/testpio.F90
testpio/testpio_run.pl
testpio/build_defaults.xml
testpio/namelists/testpio_in.vdc01
testpio/test_lib.F90
testpio/gdecomp_mod.F90
testpio/Utils.pm
pio/pionfwrite_mod.F90.in
pio/C_interface_mod.F90
pio/calcdisplace_mod.F90
pio/pionfput_mod.F90.in
pio/pio_types.F90
pio/box_rearrange.F90.in
pio/pio_support.F90
pio/pionfatt_mod.F90
pio/pio_spmd_utils.F90
pio/piodarray.F90.in
pio/nf_mod.F90
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing: tested with several cesm1_1_alpha18a tests
Regression tests:
bluefire 114 tests PASS, 0 tests FAIL
carver 81 tests PASS, 0 tests FAIL (intel)
hopper 80 tests PASS, 0 tests FAIL (pgi)
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_2
Originator(s): Jim
Date: 7-21-2012
One-line Summary: bug fix in calcdecomp, port to carver
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
M pio/calcdecomp_mod.F90
M testpio/Utils.pm
M testpio/build_defaults.xml
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed: Wrong length of gaps array caused computation of block length to always return 1
which increased memory consumption 3x or more
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Substantial memory reduction in box_rearranger
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests:114 of 114 tests pass on Bluefire
81 of 81 pass on lynx_intel
81 of 81 pass on carver
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_1
Originator(s): Jedwards
Date: July 09, 2012
One-line Summary: Fix issues in async, make pnetcdf put calls root only
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
testpio/build_defaults.xml
pio/piodarray.F90
pio/pio_msg_callbacks.F90
pio/pionfput_mod.F90
pio/pionfput_mod.F90.in
pio/piolib_mod.F90
pio/pio_msg_mod.F90
pio/piodarray.F90.in
pio/test_lib.F90
List all component tags that were used to create pio tag:
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: self
Summary of pre-tag testing:
Regression tests: 81 of 81 tests pass on Janus
114 of 114 tests pass on Bluefire
80 of 80 pass on lynx
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_5_0
Originator(s): jedwards, ypolius
Date: 6-28-2012
One-line Summary: New VDC2 output feature added
List all subroutines eliminated:
testpio/utils_mod.F90
subroutine Readheader is not used and was removed
List all files added and what they do:
pio/piovdc.F90
Interface to the piovdc library
testpio/namelists/testpio_in.vdc01
A test of vdc2 functionality
pio/m4/expat.m4
Test of expat availability for autoconf
pio/C_interface_mod.F90
Some helper functions for c_interoperability
pio/test_lib.F90
Another vdc2 developement test - this should probably be removed.
List all existing files that have been modified, and describe the changes:
testpio/testpio.F90
testpio/namelist_mod.F90
testpio/testpio_run.pl
testpio/gdecomp_mod.F90
Updated dof arrays to be i8, added a vdc test
testpio/testpio_build.pl
testpio/build_defaults.xml
testpio/Makefile
Updated to link with CXX compiler if nessasary and libraries to support vdc2 (expat)
testpio/namelists/testpio_in.wr01
Fix a minor typo
pio/aclocal.m4
pio/configure.ac
pio/configure
pio/Makefile
pio/config.h.in
pio/Makefile.conf.in
Refactored to allow building with CXX and the (external) piovdc library
pio/pio_types.F90
Added new pio_iotype_vdc2
pio/pio.F90
pio/piolib_mod.F90
pio/piodarray.F90.in
pio/nf_mod.F90
Added support for vdc2 datatype (requires _COMPRESSION)
pio/pio_support.F90.in
pio/box_rearrange.F90.in
Changed several variables to be of type pio_offset and added a test to check the kind of this variable
pio/calcdecomp.F90
Removed dead code
List all component tags that were used to create pio tag:
https://parallelio.googlecode.com/svn/libpiovdc/trunk_tags/libpiovdc_1_0_1
Describe the changes for each component above that was changed relative
to the previous ccsm tag in this sequence (this includes description
of new functionality and how user can use it):
Bugs fixed:
Describe any changes made to scripts/build system:
Describe any substantial timing or memory changes:
Code reviewed by: Jim
Summary of pre-tag testing:
Regression tests: Janus: 81 tests pass, 0 fail
Bluefire: 115 tests pass, 0 fail
Lynx: 80 tests pass, 0 fail
Lynx_intel: 80 pass, 0 fail
Intrepid(Challenger) 74 pass, 0 fail (testpio_run.pl was modified to avoid tests that are expected to fail)
===============================================================
===============================================================
*** You must run 'make predist' in the pio subdirectory before committing. ***
Tag name: pio1_4_6
Originator(s): abaker, jedwards, goldhaber
Date: 6-26-2012
One-line Summary: Improve BGP performance, bug fix in GCD calculation
List all subroutines eliminated:
List all subroutines added and what they do:
List all existing files that have been modified, and describe the changes:
timing/GPTLget_memusage.c
Memory usage on intrepid was only being reported for IO nodes,
with this fix we now report all tasks
testpio/testpio.F90
Problem with mpi_finalize on bg machines - needs to be addressed
testpio/testpio_run.pl
Fix issue with path to NETCDF on bluefire
testpio/build_defaults.xml
Update testpio paths on lynx, lynx_intel