-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
3312 lines (2000 loc) · 82.2 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
2011-07-29 00:47 osborn
* NEWS, configure.ac: updated version
2011-07-29 00:46 osborn
* lib/: dml/DML_utils.c, lrl/LRL_main.c: fixed partfile reads
broken by previous changes
2011-04-20 01:49 osborn
* include/dml.h, lib/dml/DML_utils.c: now buffers parallel reads
2011-04-19 00:54 osborn
* lib/qio/QIO_read_record_info.c: fixed reference to unset memory
2011-04-18 23:58 osborn
* lib/qio/QIO_utils.c: fixed hang in parallel write
2011-04-18 21:53 osborn
* lib/: dml/DML_parscalar.c, dml/DML_utils.c, lrl/LRL_main.c,
qio/QIO_open_write.c: enabled singlefile parallel writes with
fewer than all nodes
2011-04-17 18:35 osborn
* lib/qio/QIO_open_read.c: exit immediately if open read fails
2011-04-14 14:38 osborn
* include/dml.h, include/qio_config_internal.h.in,
lib/dml/DML_utils.c, lib/lrl/LRL_main.c, lib/qio/QIO_open_read.c,
lib/qio/QIO_read.c, lib/qio/QIO_read_record_info.c,
lib/qio/QIO_utils.c, other_libs/c-lime/aclocal.m4,
other_libs/c-lime/configure,
other_libs/c-lime/include/lime_config_internal.h.in: made
SINGLEFILE PARALLEL mode use only specified io nodes
2009-04-20 10:57 tag adat2-12-4
2009-04-20 10:57 tag adat2-13-0
2009-04-20 10:57 tag adat2-14-0
2009-04-20 10:57 tag adat2-15-0
2009-04-20 10:57 tag adat2-16-0
2009-04-20 10:57 tag adat2-17-0
2009-04-20 10:57 tag adat2-17-1
2009-04-20 10:57 tag adat2-17-2
2009-04-20 10:57 tag adat2-17-3
2009-04-20 10:57 tag adat2-17-4
2009-04-20 10:57 tag adat2-18-0
2009-04-20 10:57 tag adat2-18-1
2009-04-20 10:57 tag adat2-18-2
2009-04-20 10:57 tag adat2-18-3
2009-04-20 10:57 tag adat2-18-4
2009-04-20 10:57 tag adat2-18-5
2009-04-20 10:57 tag adat2-18-6
2009-04-20 10:57 tag adat2-18-7
2009-04-20 10:57 tag adat2-19-0
2009-04-20 10:57 tag adat2-19-1
2009-04-20 10:57 tag c-lime1-3-2
2009-04-20 10:57 tag pre-adat2-14
2009-04-20 10:57 tag qdp1-32-1
2009-04-20 10:57 tag qdp1-32-2
2009-04-20 10:57 tag qdp1-33-0
2009-04-20 10:57 tag qdp1-33-1
2009-04-20 10:57 tag qdp1-34-0
2009-04-20 10:57 detar
* other_libs/c-lime/: aclocal.m4, configure: tag c-lime1-3-2
2009-04-20 10:47 detar
* other_libs/c-lime/configure.ac: Tag c-lime 1.3.2
2009-03-04 01:11 tag qdp1-30-1
2009-03-04 01:11 tag qdp1-31-0
2009-03-04 01:11 tag qdp1-31-1
2009-03-04 01:11 tag qdp1-32-0
2009-03-04 01:11 tag qdp1_31_2
2009-03-04 01:11 tag qio2-3-8
2009-03-04 01:11 osborn
* configure.ac, aclocal.m4, configure: prepare for 2.3.8
2009-03-04 01:02 osborn
* NEWS: updated NEWS
2009-03-04 00:56 tag adat2-10-0
2009-03-04 00:56 tag adat2-10-1
2009-03-04 00:56 tag adat2-10-2
2009-03-04 00:56 tag adat2-11-0
2009-03-04 00:56 tag adat2-12-0
2009-03-04 00:56 tag adat2-12-1
2009-03-04 00:56 tag adat2-12-2
2009-03-04 00:56 tag adat2-12-3
2009-03-04 00:56 tag adat2-8-0
2009-03-04 00:56 tag adat2-9-0
2009-03-04 00:56 tag adat2-9-1
2009-03-04 00:56 tag adat2-9-2
2009-03-04 00:56 osborn
* lib/dml/DML_parscalar.c, other_libs/c-lime/aclocal.m4,
other_libs/c-lime/configure: Made it so that the "clear to send"
messages are still sent when HAVE_BGL is defined.
2008-11-07 15:25 tag qdp-pre-threads
2008-11-07 15:25 tag qdp1-30-0
2008-11-07 15:25 detar
* NEWS: Update for version 2.3.7
2008-11-06 13:18 tag adat1-44-0
2008-11-06 13:18 tag adat2-0-0
2008-11-06 13:18 tag adat2-1-0
2008-11-06 13:18 tag adat2-2-0
2008-11-06 13:18 tag adat2-3-0
2008-11-06 13:18 tag adat2-4-0
2008-11-06 13:18 tag adat2-5-0
2008-11-06 13:18 tag adat2-6-0
2008-11-06 13:18 tag adat2-7-0
2008-11-06 13:18 tag pre-adat2-0
2008-11-06 13:18 tag qio2-3-7
2008-11-06 13:18 detar
* NEWS, aclocal.m4, configure, configure.ac,
examples/qio-convert-mesh.c, examples/qio-test.c, include/dml.h,
include/qioxml_internal.h, include/qioxml_private.h,
lib/dml/DML_utils.c, lib/qio/QIO_info.c, lib/qio/QIO_utils.c,
lib/qio/QIO_write.c, other_libs/c-lime/aclocal.m4,
other_libs/c-lime/configure,
other_libs/c-lime/examples/lime_pack.c: Support </tag> in XML
strings. Bug fix for file splitting/joining with subset records
2008-06-19 17:18 tag bjoo_debug_tag
2008-06-19 17:18 tag qdp1-28-0
2008-06-19 17:18 tag qio2-3-6
2008-06-19 17:18 detar
* lib/qio/QIO_host_file_conversion.c: Correct filename malloc.
Fixes malloc segfault for certain filenames.
2008-06-13 17:20 bjoo
* aclocal.m4, configure: Makefileins
2008-05-26 00:26 tag qio2-3-5
2008-05-26 00:26 detar
* NEWS: Add 2.3.5 news.
2008-05-26 00:04 detar
* aclocal.m4, configure, configure.ac: Bump version numbers.
Correct AC_HELP_STRING error in configure.ac. Rerun automake
2008-05-26 00:02 detar
* doc/qio_2p3.tex: Add description of single-processor utilities
and QIO_string_append.
2008-05-26 00:01 detar
* examples/: Makefile.am, qio-convert-mesh-ppfs.c,
qio-convert-mesh.c, qio-convert-nersc.c, qio-copy-mesh-ppfs.c,
qio-mesh-utilities.c: Add NERSC conversion utility
qio-convert-nersc. Add copy-mesh-ppfs utility. Add long missing
qio-mesh-utilities. Remove extraneous defs.
2008-05-25 23:58 detar
* include/qio.h: Add QIO_insert_reader_hypercube_data
2008-05-25 23:26 detar
* include/qio_string.h, lib/qio/QIO_string.c: Add an append
function to the QIO_string "class".
2008-05-25 23:23 detar
* include/qioxml_internal.h: Increase size limit for record XML
string
2008-05-25 23:22 detar
* include/qioxml_usqcd_ksprop.h: Fix KS propagator record tag.
2008-05-25 23:21 detar
* lib/qio/QIO_host_file_conversion.c: Fix bug that caused stray
record size mismatch errors on hypercube records.
2008-05-25 23:19 detar
* lib/qio/QIO_info_usqcd_prop.c: Polish Balint's fix for propagator
record XML tag
2008-05-25 23:17 detar
* lib/lrl/LRL_main.c: Remove extraneous print statement
2008-05-02 14:52 tag qdp1-26-0
2008-05-02 14:52 tag qdp1-27-0
2008-05-02 14:52 bjoo
* configure, include/qioxml_usqcd_prop.h,
lib/qio/QIO_info_usqcd_prop.c: everything else
2008-03-04 16:53 tag qdp1-25-2
2008-03-04 16:53 bjoo
* configure, aclocal.m4: Induced changes
2008-02-27 00:20 tag qio2-3-4
2008-02-27 00:20 detar
* include/dml.h, lib/dml/DML_utils.c, lib/qio/QIO_open_read.c,
lib/qio/QIO_open_write.c, lib/qio/QIO_utils.c: Fix algorithm for
splitting hypercube records.
2008-02-24 15:09 tag adat1-37-0
2008-02-24 15:09 tag adat1-38-0
2008-02-24 15:09 tag adat1-39-0
2008-02-24 15:09 tag adat1-40-0
2008-02-24 15:09 tag adat1-41-0
2008-02-24 15:09 tag adat1-42-0
2008-02-24 15:09 tag adat1-43-0
2008-02-24 15:09 detar
* NEWS, configure, configure.ac, include/dml.h, include/qio.h,
lib/dml/DML_utils.c, lib/qio/QIO_host_file_conversion.c,
lib/qio/QIO_open_read.c, lib/qio/QIO_open_write.c,
lib/qio/QIO_read_record_data.c, lib/qio/QIO_read_record_info.c,
lib/qio/QIO_utils.c, lib/qio/QIO_write.c,
other_libs/c-lime/examples/lime_extract_record.c: Correct file
splitting/joining for hypercube records
2008-02-05 17:32 tag qio2-3-3
2008-02-05 17:32 detar
* doc/qio_2p3.tex: Fix typos
2008-02-05 17:28 detar
* NEWS: version 2.3.3
2008-02-05 17:27 detar
* doc/: Makefile.am, qio_2p2.tex, qio_2p3.tex: Add USQCD staggered
format to documentation and change to version 2p3
2008-02-05 17:00 detar
* aclocal.m4, configure, configure.ac: Add USQCD staggered
propagator support. Change to 2.3.3
2008-02-05 16:58 detar
* lib/qio/QIO_info.c, lib/qio/QIO_info_usqcd_ksprop.c,
lib/qio/QIO_info_usqcd_prop.c, lib/qio/QIO_utils.c,
lib/qio/QIO_write.c, lib/Makefile.am, include/Makefile.am,
include/qioxml.h, include/qioxml_usqcd_ksprop.h,
include/qioxml_usqcd_prop.h: Add USQCD staggered propagator
support
2008-02-05 16:57 detar
* lib/dml/DML_utils.c: Free outbuf on one of the error exits.
2008-02-05 16:55 detar
* other_libs/c-lime/examples/lime_extract_record.c: Bug fix.
2008-02-05 16:51 detar
* other_libs/c-lime/lib/lime_reader.c: Complain about premature EOF
2007-10-27 17:19 tag adat1-35-0
2007-10-27 17:19 tag adat1-36-0
2007-10-27 17:19 edwards
* include/qio_config_internal.h.in,
other_libs/c-lime/include/lime_config_internal.h.in: Induced
changes.
2007-10-27 17:17 edwards
* other_libs/c-lime/aclocal.m4, other_libs/c-lime/configure,
aclocal.m4, configure: Induced changes
2007-10-06 00:04 tag qdp1-25-1
2007-10-06 00:04 kostas
* other_libs/c-lime/aclocal.m4: added a jack_fit util to make
ensemble files of masses.
2007-08-30 00:20 tag qdp1-24-6
2007-08-30 00:20 tag qdp1-25-0
2007-08-30 00:20 edwards
* NEWS: Info on 2.3.2
2007-08-30 00:18 edwards
* aclocal.m4, configure: Induced changes
2007-08-30 00:18 edwards
* configure.ac: Changed to 2.3.2
2007-08-30 00:17 tag adat1-34-0
2007-08-30 00:17 tag c-lime1-3-1
2007-08-30 00:17 edwards
* other_libs/c-lime/NEWS: Info on 1.3.1
2007-08-30 00:14 edwards
* other_libs/c-lime/: aclocal.m4, configure: Induced changes
2007-08-30 00:13 edwards
* other_libs/c-lime/configure.ac: Changed to 1.3.1
2007-08-29 23:44 edwards
* lib/: dml/DML_route.c, lrl/LRL_main.c,
qio/QIO_host_file_conversion.c, qio/QIO_string.c: Added some
function names for the print statements.
2007-08-29 23:20 uid3790
* other_libs/c-lime/lib/: lime_reader.c, lime_utils.c,
lime_writer.c: Changed all printf's to also write the name of the
encompassing function.
2007-08-23 11:47 tag qdp1-24-5
2007-08-23 11:47 tag qio2-3-1
2007-08-23 11:47 edwards
* NEWS: Info on 2.3.1
2007-08-23 11:44 edwards
* aclocal.m4, configure: Induced changes
2007-08-23 11:43 edwards
* configure.ac: Changed to 2.3.1
2007-08-22 00:50 edwards
* lib/dml/DML_parscalar.c: A hack in DML_route_bytes allows a
Bluegene to run this part in switch mode even though QMP was
forced into "mesh" mode.
2007-08-21 23:15 tag qio2-3-0
2007-08-21 23:15 edwards
* NEWS: Info on 2.3.0
2007-08-21 22:14 edwards
* include/qio_config_internal.h.in, lib/dml/DML_route.c: Slow route
enable option changed to fast routine option.
2007-08-21 22:14 edwards
* aclocal.m4, configure: Induced changes
2007-08-21 22:13 edwards
* configure.ac: Changed to version 3.3.0. Added new option
--enable-dml-output-buffering and changed --enable-slow-route to
instead be --enable-fast-route. The DML_partition_out route that
allows multiple sites to be ganged together for performance
improvement is problematic on some platforms, no now it must be
enabled with the first option. The "fast-route" is problematic on
some platforms, so now it must be enabled. The "slow-route" as
fast, but apparently safe.
2007-08-21 19:03 edwards
* aclocal.m4, configure: Induced changes
2007-08-21 15:24 edwards
* include/qio_config_internal.h.in: Now has
QIO_DML_USE_OUT_BUFFERING.
2007-08-21 15:22 edwards
* lib/dml/DML_utils.c: Ooops, changed "if defined" to "#if defined"
2007-08-21 15:20 edwards
* lib/dml/DML_utils.c: Added ifdef's of QIO_DML_USE_OUT_BUFFERING
around DML_partition_out.
2007-08-21 15:19 edwards
* configure.ac: Added new --enable-dml-output-buffering to allow
the usage of buffering of output in DML_partition_out. Otherwise,
this code busts gigE and QMP/MPI in mesh mode. Changed to 2.3.0.
2007-08-21 14:17 edwards
* aclocal.m4: Induced changes
2007-08-21 14:16 edwards
* configure.ac: Changed to 2.2.2
2007-08-14 12:02 tag qdp1-24-4
2007-08-14 12:02 tag qio2-2-1
2007-08-14 12:02 edwards
* aclocal.m4, include/qio_config_internal.h.in, configure: Induced
changes
2007-08-14 12:01 edwards
* NEWS: Info on 2.2.1
2007-08-14 00:15 edwards
* lib/qio/QIO_write.c: Put in a patch to allow global data to only
live on the master_io_node.
2007-08-13 22:42 edwards
* lib/dml/DML_utils.c: Now allow word_size=1 for DML_byterevn. This
is actually a NOP.
2007-07-08 14:17 tag qdp1-24-2
2007-07-08 14:17 tag qdp1-24-3
2007-07-08 14:17 kostas
* other_libs/c-lime/: aclocal.m4, configure,
include/lime_config_internal.h.in: added staticlight stripper
2007-06-22 19:16 tag qio2-2-0
2007-06-22 19:16 detar
* doc/qio_2p2.tex: Corrected a couple of errors.
2007-06-18 11:32 detar
* configure: Continuing to fix configure, Makefile.in
2007-06-18 11:25 detar
* aclocal.m4, configure, include/qio_config_internal.h.in,
other_libs/c-lime/aclocal.m4, other_libs/c-lime/configure,
other_libs/c-lime/include/lime_config_internal.h.in: Redo aclocal
and automake to fix configure and Makefile.in
2007-06-18 11:09 bjoo
* aclocal.m4, configure, configure.ac: Patched for QIO version 2.2
2007-06-17 09:18 detar
* NEWS, configure, configure.ac, doc/Makefile.am, doc/qio_2p1.tex,
doc/qio_2p2.tex, examples/layout_test_ppfs,
examples/qio-test-util.c, examples/qio-test.c,
include/Makefile.am, include/dml.h, include/qio.h,
include/qioxml.h, include/qioxml_ildg_record.h,
include/qioxml_internal.h, include/qioxml_private.h,
include/qioxml_usqcd_gauge.h, include/qioxml_usqcd_prop.h,
lib/Makefile.am, lib/dml/DML_parscalar.c, lib/dml/DML_scalar.c,
lib/dml/DML_utils.c, lib/qio/QIO_close_read.c,
lib/qio/QIO_close_write.c, lib/qio/QIO_host_file_conversion.c,
lib/qio/QIO_info.c, lib/qio/QIO_info_ildg_record.c,
lib/qio/QIO_info_private.c, lib/qio/QIO_info_usqcd_gauge.c,
lib/qio/QIO_info_usqcd_prop.c, lib/qio/QIO_open_read.c,
lib/qio/QIO_open_write.c, lib/qio/QIO_read_record_data.c,
lib/qio/QIO_read_record_info.c, lib/qio/QIO_utils.c,
lib/qio/QIO_write.c: Support USQCD propagator formats, hypercube
record type, user-defined I/O nodes. Rearrange qioxml.h and
QIO_info.c for clarity. Update documentation. Breaks previous
API slightly.
2007-06-10 10:32 tag qdp1-24-0
2007-06-10 10:32 tag qdp1-24-1
2007-06-10 10:32 edwards
* include/qio_config_internal.h.in: Reorganized BinaryReader/Writer
and TextReader. Now, these classes are abstract classes (just
like XMLWriter) for BinaryBufferReader/Writer and
BinaryFileReader/Writer . Also, removed the old
QDP_BEGIN/END_NAMESPACE macro and now simply use "namespace QDP".
2007-06-09 18:15 edwards
* aclocal.m4, configure: Induced changes
2007-06-09 18:13 tag c-lime1-3-0
2007-06-09 18:13 edwards
* other_libs/c-lime/include/lime_config_internal.h.in: Induced
changes.
2007-06-09 18:12 edwards
* other_libs/c-lime/: aclocal.m4, configure: Induced changes
2007-06-09 18:11 edwards
* other_libs/c-lime/configure.ac: Changed to 1.3.0
2007-06-09 18:08 edwards
* other_libs/c-lime/: aclocal.m4, configure: Induced changes
2007-05-13 16:47 tag qio2-1-9
2007-05-13 16:47 detar
* NEWS, aclocal.m4, configure, configure.ac, examples/Makefile.am,
examples/layout_test, examples/qio-convert-mesh-pfs.c,
examples/qio-convert-mesh-ppfs.c,
examples/qio-convert-mesh-singlefs.c,
examples/qio-convert-mesh.c, examples/qio-convert-mesh.h,
examples/qio-host-test.sh, include/qio.h, lib/dml/DML_utils.c,
lib/lrl/LRL_main.c, lib/qio/QIO_host_file_conversion.c: Support
file splitting for I/O with fewer I/O nodes than compute nodes.
2007-05-13 16:46 detar
* include/qioxml.h, lib/qio/QIO_info.c: Convenience functions for
building and parsing USQCD lattice file XML (E. Scholz)
2007-05-13 16:45 detar
* include/qio_config_internal.h.in: Edit comment
2007-05-13 16:43 detar
* lib/qio/QIO_utils.c: Add timing function.
2007-05-13 16:42 detar
* lib/qio/QIO_read_record_data.c: Add some debug statements
2007-05-13 16:41 detar
* lib/qio/QIO_open_read.c: Avoid a null malloc. Add a debug
statement.
2007-05-13 16:36 tag adat1-32-0
2007-05-13 16:36 tag adat1-33-0
2007-05-13 16:36 detar
* other_libs/c-lime/: aclocal.m4, configure, configure.ac,
examples/lime_contents.c, examples/lime_extract_record.c,
examples/lime_extract_type.c, examples/lime_pack.c,
examples/lime_unpack.c, examples/lime_writer_test1.c,
include/Makefile.am, include/dcap-overload.h, include/lime.h,
include/lime_config_internal.h.in, lib/lime_fseeko.c,
lib/lime_reader.c, lib/lime_writer.c: Add support for dcache/DCAP
from Jim Simone
2007-03-18 18:08 tag adat1-31-0
2007-03-18 18:08 tag qdp1-23-1
2007-03-18 18:08 tag qdp1-23-2
2007-03-18 18:08 edwards
* other_libs/c-lime/examples/lime_unpack.c: Removed what I think is
a dcache closing of a file.
2007-03-17 08:55 detar
* other_libs/c-lime/examples/lime_unpack.c: Correct premature use
of DCAP macro
2007-03-16 20:14 detar
* other_libs/c-lime/examples/lime_unpack.c: Fix print statement
2007-03-05 14:40 tag qdp1-22-1
2007-03-05 14:40 tag qdp1-23-0
2007-03-05 14:40 bjoo
* aclocal.m4, configure: Configure.ac version bump
2007-02-12 20:32 tag qdp1-22-0
2007-02-12 20:32 tag qdp_pre_subset_cleanup
2007-02-12 20:32 tag qio2-1-8
2007-02-12 20:32 osborn
* configure, configure.ac, examples/layout_hyper.c,
other_libs/c-lime/examples/lime_writer_test1.c: fixed
--enable-dml-bufsize option and more warning eliminations
2007-02-12 19:49 osborn
* NEWS, configure, configure.ac, bin/qio-config.in,
lib/dml/DML_crc32.c, lib/dml/DML_utils.c, lib/lrl/LRL_main.c,
lib/qio/QIO_open_read.c, lib/qio/QIO_open_write.c,
lib/qio/QIO_utils.c, other_libs/c-lime/configure,
other_libs/c-lime/examples/lime_contents.c,
other_libs/c-lime/examples/lime_extract_type.c,
other_libs/c-lime/examples/lime_pack.c,
other_libs/c-lime/examples/lime_unpack.c,
other_libs/c-lime/include/lime_config_internal.h.in: Eliminated
compiler warnings and now save configure options in qio-config.
2007-02-06 10:01 tag qdp1-21-7
2007-02-06 10:01 tag qdp1-21-8
2007-02-06 10:01 bjoo
* include/qio_config_internal.h.in: Added more spin ops and hooks.
Next step to do the projections in SSE
2007-01-26 14:32 bjoo
* configure: Added spin projections over ordered subsets as C
generics
2006-11-24 17:22 tag qio2-1-7
2006-11-24 17:22 detar
* NEWS: New version comment
2006-11-24 16:44 detar
* aclocal.m4, configure: New version number
2006-11-24 15:54 detar
* configure.ac: Increment version number
2006-11-24 15:50 detar
* include/: dml.h, qio_config_internal.h.in: Buffer messages in
serial output.
2006-11-24 13:15 detar
* examples/: Makefile.am, binary_host_test, layout_hyper.c,
layout_test, qio-host-test.c, qio-host-test.sh, qio-host-test1.c,
qio-host-test2.c, qio-test.c, qio-test.h: Remove nonworking
qio-host-test? tests and replace with a script that exercises
file splitting through the actual utilities, qio-convert-mesh-*
2006-11-24 13:12 detar
* lib/dml/DML_utils.c: Buffer message passing during serial output.
2006-11-24 13:10 detar
* lib/qio/: QIO_open_read.c, QIO_read_record_info.c, QIO_utils.c,
QIO_host_file_conversion.c: Trivia
2006-06-13 13:52 tag qdp1-20-7
2006-06-13 13:52 tag qdp1-20-8
2006-06-13 13:52 tag qdp1-20-8-pre1
2006-06-13 13:52 tag qdp1-20-8-pre2
2006-06-13 13:52 tag qdp1-20-9
2006-06-13 13:52 tag qdp1-21-0
2006-06-13 13:52 tag qdp1-21-1
2006-06-13 13:52 tag qdp1-21-2
2006-06-13 13:52 tag qdp1-21-3
2006-06-13 13:52 tag qdp1-21-4
2006-06-13 13:52 tag qdp1-21-5
2006-06-13 13:52 tag qdp1-21-6
2006-06-13 13:52 bjoo
* lib/dml/DML_parscalar.c: Replaced Cplusplus style comment
2006-06-13 13:48 bjoo
* examples/layout_hyper_mesh.c: Changed some Cplusplus style
comments to C comments. Removed a gnuism
2006-05-23 00:18 tag qdp1-20-6
2006-05-23 00:18 tag qio2-1-6
2006-05-23 00:18 edwards
* NEWS: More new info on 2.1.6
2006-05-22 22:20 edwards
* examples/layout_hyper.c: Reinstated sites_on_node. Carleton's fix
broke my fix.
2006-05-22 13:24 detar
* examples/: qio-host-test.c, qio-test-util.c, qio-test.c,
qio-test.h: C++ compiler complained about clash between static
and global "sites_on_node". Fix.
2006-05-22 11:52 edwards
* NEWS: Info on 2.1.6
2006-05-22 11:50 edwards
* aclocal.m4, configure: Induced changes.
2006-05-22 11:49 edwards
* configure.ac: Changed to 2.1.6.
2006-05-22 11:49 edwards
* examples/layout_hyper.c: Fix - commented out redecl of
sites_on_node.
2006-05-17 15:04 tag qdp1-20-4
2006-05-17 15:04 tag qdp1-20-5
2006-05-17 15:04 bjoo
* bin/qio-config.in: added ranlib and ar flags to the config
scripts in qdp and qio
2006-03-24 13:59 tag qdp1-20-2
2006-03-24 13:59 tag qdp1-20-3
2006-03-24 13:59 tag qdp1-20-3-pre3
2006-03-24 13:59 tag qdp1-20-3pre1
2006-03-24 13:59 tag qdp1-20-3pre2
2006-03-24 13:59 tag qio2-1-5
2006-03-24 13:59 edwards
* aclocal.m4, include/qio_config_internal.h.in, configure: Induced
changes.
2006-03-24 13:59 edwards
* NEWS: Info on 2.1.5
2006-03-24 13:57 edwards
* configure.ac: Uodated to 2.1.5
2006-03-17 01:00 detar
* lib/qio/QIO_open_write.c: Fix bug. Initialize discover_dims_mode
correctly.
2006-02-18 16:05 tag qdp1-20-0
2006-02-18 16:05 tag qdp1-20-1
2006-02-18 16:05 tag qio2-1-4
2006-02-18 16:05 detar
* configure.ac: Bump version number
2006-02-18 16:02 detar
* include/dml.h, include/qio_config_internal.h.in,
lib/dml/DML_utils.c, lib/qio/QIO_open_read.c,
lib/qio/QIO_utils.c: Add a discover_dims_mode flag to the
DML_Layout structure. Make it possible to read a partfile volume
in discovery mode withou tripping over the sitelist verification.
Plus some inevitable configure tweaks.
2006-01-13 11:41 tag qdp1-18-3
2006-01-13 11:41 tag qdp1-19-0
2006-01-13 11:41 bjoo
* include/qioxml.h, lib/qio/QIO_open_read.c,
lib/qio/QIO_read_record_info.c: Can now read Dirks ILDG Lattices
2006-01-06 14:15 tag qio2-1-3
2006-01-06 14:15 edwards
* aclocal.m4, configure: Induced changes.
2006-01-06 11:34 detar
* configure.ac: Increment version number
2006-01-06 11:00 detar
* lib/qio/QIO_info.c: Add message explaining handling of missing
tag.
2006-01-06 10:36 detar
* lib/qio/QIO_open_write.c: Do global sync only for parallel I/O
2006-01-06 10:35 detar
* lib/qio/QIO_info.c: If globaldata tag is missing from record
info, default to QIO_FIELD
2005-11-30 13:52 tag qdp1-18-1
2005-11-30 13:52 tag qdp1-18-2
2005-11-30 13:52 osborn
* doc/qio_2p0.tex, include/qio.h: Changed QIO_next_field to
QIO_next_record in qio.h.
2005-11-29 16:07 bjoo
* lib/: dml/DML_parscalar.c, dml/DML_utils.c,
qio/QIO_read_record_data.c: Single and Multifile reads now work
2005-11-29 14:34 bjoo
* lib/: lrl/LRL_main.c, qio/QIO_read_record_info.c,
qio/QIO_write.c: Fixed Oops-es in qdp++ and some memory leaks in
QIO
2005-11-11 16:51 tag qdp1-17-2
2005-11-11 16:51 tag qdp1-18-0
2005-11-11 16:51 bjoo
* include/qioxml.h: Fixed dodgy schemaLocation
2005-11-11 16:16 bjoo
* include/qioxml.h, lib/qio/QIO_close_write.c, lib/qio/QIO_info.c,
lib/qio/QIO_open_write.c: Fixed some minor ILDG Problems -- added
in field and a missing quotation mark
2005-08-23 08:43 tag LIVTAG_1
2005-08-23 08:43 tag LIVTAG_2
2005-08-23 08:43 tag qdp1-15-2
2005-08-23 08:43 tag qdp1-15-3
2005-08-23 08:43 tag qdp1-15-4
2005-08-23 08:43 tag qdp1-16-0
2005-08-23 08:43 tag qdp1-16-1
2005-08-23 08:43 tag qdp1-16-2
2005-08-23 08:43 tag qdp1-16-3
2005-08-23 08:43 tag qdp1-17-0
2005-08-23 08:43 tag qdp1-17-1
2005-08-23 08:43 bjoo
* aclocal.m4, configure, include/qio_config_internal.h.in: Added a
guard against gethostname in qdp_iogauge.cc for targets that dont
have gethostname like the QCDOC
2005-08-22 11:49 zbigniew
* doc/qiodoc: Updated config tags with doxygen -u for doxygen
verions 1.4.1 Gave the tagfile a unique name; doxygen cannot
handle two tag files with the same name.
2005-08-17 19:42 tag qdp1-15-1
2005-08-17 19:42 tag qio2-1-2
2005-08-17 19:42 detar
* examples/Makefile.am, examples/qio-convert-mesh-pfs.c,
examples/qio-convert-mesh.c, include/qio_config_internal.h.in:
Add pfs file splitter and flattener examples/qio-convert-mesh-pfs
and modify examples/qio-convert-mesh.c to support it.