-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
887 lines (531 loc) · 22 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
2007-10-15 19:23 ma53
* configure.ac, wht/direct.c, wht/null.c, wht/split.c,
wht/transpose.c, wht/vector.c, wht/wht.h, whtgen/whtgen: Added
base stride factor now interleaving is working properly.
2007-10-10 20:58 ma53
* TODO, wht/Makefile.am, wht/registry.h, wht/transpose.c: First try
and implementing split transpose.
2007-10-05 15:00 ma53
* configure.ac: Added compiler flags for sse instructions in case
the compiler was installed improperly.
2007-10-04 21:35 ma53
* utils/combin.cxx: Fixed another random composition tree semantic
error.
2007-10-04 21:09 ma53
* utils/combin.cxx: Fixed max_n semantics.
2007-10-04 20:45 ma53
* utils/combin.cxx: Fixed compilation issue.
2007-10-04 20:45 ma53
* utils/randtree.cxx: Fixed options issue.
2007-10-04 20:43 ma53
* tests/Makefile.am, tests/correctness.rb: Test now accepts
environment variable for builddir.
2007-10-04 19:57 ma53
* Makefile.am, tests, tests/Makefile.am: Properly integrated tests
with build environment.
2007-10-04 19:57 ma53
* doc: Set ignore on generated documentation.
2007-10-04 19:31 ma53
* Makefile.am, configure.ac, test, tests, tests/Makefile.am,
tests/correctness.rb: Integrated tests into build system.
2007-10-04 19:23 ma53
* TODO, test, test/correctness.rb: Added simple proof of concept
correctness testing script.
2007-10-04 18:50 ma53
* measure/papi/measure.c, measure/usec/measure.c: Measure now test
for acceptance.
2007-10-04 18:49 ma53
* wht/interleave.c, wht/split.c, wht/vector.c: Fixed acceptance
problem with right most vector codelet.
2007-10-04 18:28 ma53
* wht/null.c, wht/vector.c: Fixed acceptance problem with single
smallv codelets.
2007-10-04 18:09 ma53
* wht/interleave.c, wht/null.c, wht/vector.c, wht/wht.c, wht/wht.h:
Top down accept now functioning as expected.
2007-10-04 17:01 ma53
* wht/null.c, wht/small.c, wht/split.c, wht/vector.c, wht/wht.h: In
order to handle vectorized interleaving validation, needed to
store a pointer to parent inside wht.
2007-10-04 16:45 ma53
* wht/null.c, wht/small.c, wht/split.c, wht/vector.c, wht/verify.c,
wht/wht.c, wht/wht.h: First pass at top down validation, working
for vectorized codelets.
2007-10-03 15:54 ma53
* wht/interleave.c, wht/vector.c: Fixed initialization check
condition
2007-10-03 15:30 ma53
* measure/papi/measure.c: Can specify papi metrics from the command
line now.
2007-10-02 22:56 ma53
* ChangeLog, NEWS, configure.ac: Update release documentation.
2007-10-02 22:48 ma53
* utils/Makefile.am, utils/randtree.cxx: Fixed a dependancy issue
and cleaned up usage.
2007-10-02 22:14 ma53
* README, TODO: Updated internal documentation.
2007-10-02 22:03 ma53
* measure/papi/measure.c, measure/papi/papi_utils.c,
measure/papi/papi_utils.h: Allowed alpha and rho to be set from
command line.
2007-10-02 21:27 ma53
* measure/papi/Makefile.am, measure/papi/invnorm.c,
measure/papi/papi_utils.c: Added invnorm implementation
Statistical significance procedure now uses invnorm instead of
hard coded
value.
2007-10-02 20:01 ma53
* autogen.sh, configure.ac: Fixed some issues with rebuilding the
build system from scratch.
2007-10-02 19:50 ma53
* autogen.sh: Added utility script for rebuilding the build system.
2007-10-02 19:14 ma53
* search/wht_dp: Replace zs1 integer partition enumeration
algorithm with
restricted integer *composition* enumeration algorithm.
2007-10-02 18:21 ma53
* utils/combin.cxx, utils/combin.h: Fixed some boundary condition
problems with generating random compositions.
2007-10-02 15:59 ma53
* utils/Makefile.am, utils/combin.cxx, utils/combin.h,
utils/genrandtree.c, utils/randtree.cxx, utils/tree.c,
utils/tree.h: Reworked and generalized the random generation of
integer composition trees.
2007-10-02 13:52 ma53
* utils/rand.c, utils/rand.h, utils/randtree.c, utils/randtree.h:
Removed old random tree algorithms.
2007-09-27 21:26 ma53
* wht/wht.h:
2007-09-27 21:26 ma53
* wht/wht.h:
2007-09-27 21:20 ma53
* wht/wht.h: Experiment with svn license.
2007-09-27 21:05 ma53
* TODO, wht/interleave.c, wht/vector.c: Fixed ICC warnings and
revalutated TODO items.
2007-09-27 20:46 ma53
* INSTALL, README: Updated external documentation.
2007-09-27 20:36 ma53
* measure/papi/measure.c, measure/usec/measure.c, wht/verify.c:
Cleanuped usage and documented more features.
2007-09-27 20:36 ma53
* Makefile.am: Added doc to dist.
2007-09-27 20:35 ma53
* configure.ac: Added pre suffix.
2007-09-27 16:22 ma53
* README: Added detailed instructions on to perform experiments.
2007-09-27 15:49 ma53
* TODO, wht/interleave.c, wht/null.c, wht/split.c, wht/vector.c,
wht/wht.h: Fixed problem with wht_info macro and interleave
parameter.
2007-09-27 15:21 ma53
* measure/papi/measure.c, measure/usec/measure.c, wht/interleave.c,
wht/parser.y, wht/registry.h, wht/utils.c, wht/vector.c,
wht/verify.c, wht/wht.c, wht/wht.h: Renamed some functions.
2007-09-27 15:21 ma53
* utils/genrandtree.c, utils/tree.c: Fixed an input vetting
problem.
2007-09-26 21:22 ma53
* TODO, configure.ac: Added checks for math functions which were
messing up papi compile.
2007-09-26 21:22 ma53
* wht/parser.y: Fixed some undetected problems with this file using
only internal functions.
2007-09-26 20:50 ma53
* INSTALL, README: Updated the external documentation with
references for mainatainers and configure options.
2007-09-26 20:50 ma53
* configure.ac: Shortened the interleave option.
2007-09-26 20:42 ma53
* AUTHORS, INSTALL, README: Updated external documentation.
2007-09-26 19:39 ma53
* Doxyfile, TODO, configure.ac, wht/Makefile.am, wht/direct.c,
wht/interleave.c, wht/null.c, wht/parser.y, wht/registry.h,
wht/small.c, wht/split.c, wht/vector.c, wht/verify.c, wht/wht.c,
wht/wht.h: Rearranged small codes to enforce class diagram.
2007-09-26 17:10 tc365
* doc/dia, doc/dia/wht.dia: Adding DIA UML-ish diagram
2007-09-26 15:02 ma53
* measure/papi/measure.c, utils/tree.c, wht/direct.c,
wht/interleave.c, wht/small.c, wht/split.c, wht/utils.c,
wht/verify.c, wht/wht.c, wht/wht.h: Renamed wht_malloc and
wht_free
Documented these procedures
2007-09-26 14:49 ma53
* TODO: Added internal todo list to repos.
2007-09-26 14:48 ma53
* measure/papi/measure.c, measure/usec/measure.c, utils/tree.c,
wht/direct.c, wht/interleave.c, wht/parser.y, wht/registry.h,
wht/small.c, wht/split.c, wht/utils.c, wht/vector.c,
wht/verify.c, wht/wht.c, wht/wht.h: Renamed many data structures
to comply with new conventions, added more documentation.
2007-09-26 14:47 ma53
* configure.ac: Added back in check for perl in configure.ac
2007-09-24 22:22 ma53
* Doxyfile, doc, wht/wht.h: Began external documentation for key
features of the package.
2007-09-24 19:51 ma53
* search/wht_dp: DP now stores trees in YAML ordered map
2007-09-24 19:19 ma53
* search/wht_dp: Fixed a couple usability issues with wht_dp.
2007-09-24 19:13 ma53
* Makefile.am, configure.ac, whtgen-ml: Removed ML code from trunk.
2007-09-24 18:54 ma53
* configure.ac, wht/codelets/.codelets, wht/direct.c: Removed
unessary pow function calls, headed autoscan detection advice.
2007-09-24 18:16 ma53
* Makefile.am, configure.ac, utils, utils/Makefile.am,
utils/genrandtree.c, utils/rand.c, utils/rand.h,
utils/randtree.c, utils/randtree.h, utils/tree.c, utils/tree.h:
Added utils sub system and back ported wht_randtree
2007-09-21 20:47 ma53
* ChangeLog, wht/direct.c, wht/parser.y, wht/verify.c: Attempted to
fix some memory leaks.
2007-09-21 20:12 ma53
* configure.ac, wht/codelets/Makefile.am: Fixed some issues with
installation and configuartion and added default parameters.
2007-09-21 20:11 ma53
* measure/papi/measure.c: Changed hard coded script name.
2007-09-21 20:11 ma53
* measure/usec/measure.c: Added max time parameter and increased
default time.
2007-09-21 19:19 ma53
* measure/papi/papi_utils.c: Added citation for statistical
significance
2007-09-21 16:26 ma53
* Makefile.am, search/Makefile.am, search/dp,
search/wht_best_trees.txt, search/wht_dp: Renamed dp to wht_dp,
removed currently non functioning utils sub system.
2007-09-21 16:08 ma53
* configure.ac, search, search/Makefile.am: Added search dp install
target.
2007-09-21 16:06 ma53
* search/dp: Cleaned up the dynamic programming code, integrated in
with build system install targets.
2007-09-21 16:05 ma53
* INSTALL: New instructions for install.
2007-09-20 20:38 tc365
* wht/split.c, wht/wht.h: Separated split children from Wht node
struct; only allocate for split[]
2007-09-20 20:27 ma53
* search/dp: Bests are stored based on runtime environment.
2007-09-20 18:54 ma53
* measure/papi, measure/usec, wht: Set ignore on new execs
2007-09-20 18:38 ma53
* measure/papi/Makefile.am, measure/usec/Makefile.am,
wht/Makefile.am: Fixed the install process, wht_measure is
determined by PAPI_MEASURE.
2007-09-20 17:22 ma53
* AUTHORS, COPYING, COPYRIGHT, ChangeLog, INSTALL, README: Imported
previous package external documentation.
2007-09-20 17:21 ma53
* COPYING, INSTALL: Removed these linked files.
2007-09-19 18:06 ma53
* wht/split.c: Fixed problem with interleaving guard.
2007-09-18 21:39 ma53
* wht/codelets/codelets.c, wht/codelets/codelets.h,
wht/codelets/make_codelets.pl, wht/wht.h: Added null entry to
codelet registry instead of explicit size.
2007-09-18 21:16 ma53
* wht/codelets/codelets.c, wht/codelets/codelets.h,
wht/codelets/make_codelets.pl, wht/interleave.c, wht/small.c,
wht/vector.c, wht/wht.h: Codelet lookup is performed usined
parameters and name now.
2007-09-18 20:06 ma53
* wht/parser.y, wht/registry.h, wht/vector.c, wht/verify.c,
wht/wht.c: Added vector to registry and checking for number of
params.
2007-09-18 19:46 ma53
* wht/interleave.c, wht/parser.y, wht/small.c, wht/split.c,
wht/vector.c, wht/wht.c, wht/wht.h: Added name field to wht
struct.
2007-09-18 19:32 ma53
* wht/codelets/codelets.c, wht/parser.y, wht/registry.h, wht/wht.c,
wht/wht.h: Cleaned up registration of new codelet handlers.
2007-09-18 18:47 ma53
* wht/parser.y, wht/scanner.l, wht/wht.c, wht/wht.h: Rearranged
grammar to support table driven parsing.
2007-09-18 16:48 ma53
* wht/parser.y: New interface to initialization using parameter
array.
2007-09-18 15:48 ma53
* wht/interleave.c, wht/parser.y, wht/small.c, wht/split.c,
wht/vector.c, wht/wht.c: Commented this out due to reliance on
family functions.
2007-09-18 15:40 ma53
* wht/interleave.c, wht/small.c: Removed bad family idea.
2007-09-18 15:39 ma53
* wht/direct.c, wht/interleave.c, wht/parser.y, wht/split.c,
wht/vector.c, wht/wht.c, wht/wht.h: Added attribute system.
2007-09-18 14:52 ma53
* whtgen/whtgen: Cleaned up the script a bit in terms of
readability.
2007-09-18 14:52 ma53
* wht/codelets/.codelets, wht/codelets/make_codelets.pl, wht/wht.h:
Added size field to codelet entry_struct, presently unused.
2007-09-17 20:47 ma53
* wht/split.c: Fixed ordering of output in split_to_string
2007-09-17 20:35 ma53
* wht/interleave.c, wht/small.c, wht/split.c, wht/utils.c,
wht/verify.c, wht/wht.c, wht/wht.h: Implemented and tested split
to_string.
Partially implement codelet family idea.
2007-09-14 15:25 ma53
* wht/interleave.c, wht/split.c, wht/vector.c, wht/verify.c,
wht/wht.c, wht/wht.h: Added support for plan time guards.
2007-09-14 13:33 ma53
* configure.ac: Fixed syntax error.
2007-09-07 16:46 ma53
* README, configure.ac, search/dp: Fixed problems with scalar code
and configure.
2007-09-06 23:59 ma53
* measure/papi/measure.c, measure/usec/measure.c, search/dp,
wht/wht.c: Added info detection and hashing to dp
2007-09-06 22:53 ma53
* configure.ac, whtgen/whtgen: Fixed the macro guards generated by
whtgen.
2007-09-06 22:19 ma53
* configure.ac, wht/codelets/Makefile.am, wht/vector.c, wht/wht.c,
whtgen/whtgen: Added interleave configure options, and various
guards.
2007-09-06 21:11 ma53
* wht/interleave.c, wht/small.c, wht/vector.c: Added run time
intialization guards using new configure macros.
2007-09-06 20:56 ma53
* README, configure.ac, wht/codelets/.codelets,
wht/codelets/Makefile.am, wht/codelets/make_codelets.pl,
wht/verify.c, wht/wht.c, wht/wht.h, whtgen/whtgen: Implement
proof of concept maintainer / user build feature.
2007-09-06 20:55 ma53
* wht/wht_vector.h: Fixed typo.
2007-09-06 18:04 ma53
* wht/wht_vector.h: These macros should work with both gcc and icc
2007-09-06 17:12 ma53
* search/dp: Modified tree generation so that it is using the new
grammar.
2007-09-06 16:02 ma53
* README, wht/codelets/.codelets, wht/codelets/make_codelets.pl,
whtgen/whtgen: Fixed problem with rightmost v4.
2007-09-05 21:21 ma53
* measure/papi/measure.c, measure/usec/measure.c, wht/direct.c,
wht/split.c, wht/verify.c, wht/wht.c, wht/wht.h, whtgen/whtgen:
Removed legacy and uncessary D parameter to codelets.
2007-09-05 21:05 ma53
* wht/Makefile.am, wht/right_vector.c, wht/vector.c: ReRenamed
vector.c
2007-09-05 21:01 ma53
* wht/parser.y, wht/right_vector.c: Added interleaved vectorization
stuff in parser.
2007-09-05 20:51 ma53
* wht/interleave.c, wht/parser.y, wht/right_vector.c,
wht/scanner.l, wht/split.c: Added support for vectorized codelets
in new parser.
2007-09-05 20:42 ma53
* wht/Makefile.am, wht/right_vector.c, wht/vector.c: renamed vector
to right vector
2007-09-05 20:38 ma53
* README, configure.ac, wht, wht/Makefile.am, wht/interleave.c,
wht/parser.y, wht/scanner.l, wht/small.c, wht/split.c,
wht/vector.c, wht/wht.c, wht/wht.h: Using bison now as a parser.
2007-09-05 16:16 ma53
* configure.ac: Made the papi support more canonical.
2007-09-05 13:33 ma53
* README, configure.ac, measure/Makefile.am,
measure/papi/Makefile.am: Can conditionally choose to compile
papi with --enable-papi
2007-09-04 16:01 ma53
* whtgen/whtgen: Changed guard conditions for generating vectorized
/ interleaved code.
2007-09-04 16:00 ma53
* measure/papi/Makefile.am: Added this header file to dist.
2007-09-04 16:00 ma53
* configure.ac: Fixed autoheader detection problem.
2007-09-04 15:45 ma53
* wht/codelets/.codelets, wht/codelets/make_codelets.pl: Now should
generate entire space of possible codelets within given bounds
2007-08-31 22:06 ma53
* README, configure.ac, wht/codelets/.codelets,
wht/codelets/make_codelets.pl, wht/direct.c, wht/interleave.c,
wht/utils.c, wht/verify.c, wht/wht.h, wht/wht_vector.h,
whtgen/whtgen: Added partial support for changing the precision.
2007-08-31 18:10 ma53
* wht/wht_vector.h, whtgen/whtgen: Added commented out code for sse
optimizations, dont work on P4
2007-08-31 15:51 ma53
* search/dp: <>
2007-08-31 15:50 ma53
* Makefile.am: Added search to dp.
2007-08-31 15:50 ma53
* measure/papi/measure.c, measure/papi/papi_utils.c: Changed
confidence to 99.98 and added statistics option
2007-08-30 18:25 ma53
* data/update_best_trees: Fixed a couple issues.
2007-08-30 17:36 ma53
* data/update_best_trees: Script to transform old best trees to new
format.
2007-08-30 16:57 ma53
* data, data/bench: Added internal bench mark script.
2007-08-28 22:29 ma53
* search/dp: DP can choose best codelet all the time now.
2007-08-28 21:30 ma53
* search/dp: Similar to old version of dp.
2007-08-28 21:13 ma53
* configure.ac, search/dp: Tried to fix build process and dp.
2007-08-28 18:19 ma53
* wht/codelets/.codelets, wht/codelets/make_codelets.pl: Changed
some of the hard coded parameters.
2007-08-28 18:14 ma53
* search/dp: Tweaked dp process so that it doesnt crash badly.
2007-08-28 18:13 ma53
* measure/papi/measure.c, measure/papi/papi_utils.c,
measure/papi/papi_utils.h: Statistical significance now working
properly.
2007-08-28 18:13 ma53
* wht/interleave.c: Fixed buffer length problem.
2007-08-27 22:06 ma53
* configure.ac, measure/papi/Makefile.am: Added cache size flag to
build process.
2007-08-27 21:57 ma53
* search, search/dp: Added first iteration of dynamic programing
searcher.
2007-08-27 21:56 ma53
* measure/papi/Makefile.am: Fixed papi measure compilation process.
2007-08-27 17:01 ma53
* configure.ac, measure/Makefile.am, measure/papi,
measure/papi/Makefile.am, measure/papi/measure.c,
measure/papi/papi_utils.c, measure/papi/papi_utils.h: Added PAPI
measurement tool to the package.
2007-08-27 16:24 ma53
* measure/papi: Added papi measurement tool.
2007-08-27 16:21 ma53
* measure, measure/usec: Set ignore bit on autotools generated
crud.
2007-08-27 16:20 ma53
* Makefile.am, configure.ac, measure, measure/Makefile.am,
measure/usec, measure/usec/Makefile.am, measure/usec/measure.c:
Added microsecond measurement tool.
2007-08-27 16:19 ma53
* wht/Makefile.am: Bundling all wht code into a library and linking
verify against this.
2007-08-27 15:55 ma53
* README, wht/interleave.c, whtgen/whtgen: Fixed problem with
vectorizing interleaved code.
2007-08-24 22:48 ma53
* README, wht/codelets/.codelets, wht/codelets/make_codelets.pl,
wht/interleave.c, wht/wht.h, whtgen/whtgen: Added non vectorized
interleaving, and tried to generalize vectorized interleaving.
2007-08-23 23:14 ma53
* wht/Makefile.am, wht/codelets/.codelets,
wht/codelets/make_codelets.pl, wht/interleave.c, wht/wht.h,
whtgen/whtgen: Preliminary support for interleaving.
2007-08-23 23:13 ma53
* configure.ac: Placed these headers in for detection.
2007-08-23 21:53 ma53
* wht/codelets/.codelets, wht/small.c, wht/split.c: Added alignment
parsing in small.
2007-08-23 21:53 ma53
* wht/wht.h: Removed aligned field and made libraries standard.
2007-08-23 21:52 ma53
* wht/vector.c: Fixed buffer size problem.
2007-08-23 21:50 ma53
* wht/codelets/make_codelets.pl: Fixed stupid function pointer
warnings.
2007-08-23 21:06 ma53
* Makefile.am, configure.ac, wht/Makefile.am: Fixed the build
process for dist target.
2007-08-23 20:58 ma53
* wht/wht.c: Fixed nIL problem again.
2007-08-23 20:51 ma53
* wht/codelets/.codelets, wht/codelets/make_codelets.pl,
wht/scanner.l, wht/small.c, wht/split.c, wht/vector.c, wht/wht.c,
wht/wht.h: Moved code around for organizational and stylistic
purposes.
2007-08-23 19:50 ma53
* wht/codelets/make_codelets.pl, whtgen/whtgen: Added alignment to
whtgen.
Simplified make_codelets.pl.
2007-08-23 17:03 ma53
* whtgen/whtgen: Generalized 2v kernel generation.
2007-08-22 19:50 ma53
* README: Added bug list in README.
2007-08-22 19:49 ma53
* wht, wht/Makefile.am, wht/direct.c, wht/utils.c, wht/verify.c,
wht/wht.c, wht/wht.h: Retooled verify main entry point.
2007-08-22 18:50 ma53
* wht/Makefile.am, wht/vector.c, wht/wht.h: Added ability for
vector code to be called from parser.
2007-08-22 18:38 ma53
* wht, whtgen-ml: Set some more autotools ignore bits.
2007-08-22 18:37 ma53
* wht/Makefile.am, wht/wht.c: Fixed lex parsing stuff.
2007-08-22 18:13 ma53
* ., wht, wht/codelets, wht/codelets/.codelets: Set ignore flag are
many generated files.
2007-08-22 18:12 ma53
* Makefile.am: Removed ml code generation for now.
2007-08-22 18:08 ma53
* wht/wht_vector.h: Added the vector code header.
2007-08-22 17:55 ma53
* ., README, wht, wht/codelets, wht/codelets/.codelets, whtgen-ml,
whtgen-ml/.depend: Added notes for how to use autotools to build
build system.
2007-08-22 17:49 ma53
* configure.ac, wht/codelets/Makefile.am,
wht/codelets/codelet_registry.h, wht/codelets/make_codelets.pl,
wht/small.h, wht/wht.c, wht/wht.h, whtgen/whtgen: Tieded whtgen
in with wht/codelets
2007-08-22 14:58 ma53
* whtgen, whtgen/whtgen: Added ruby imperative codelet generator
version.
2007-08-22 14:32 ma53
* Makefile.am, configure.ac, wht/codelets/Makefile.am, whtgen,
whtgen-ml, whtgen-ml/Makefile, whtgen-ml/Makefile.am,
whtgen-ml/topdown.ml: Renamed whtgen ml to whtgen-ml
2007-08-21 20:56 ma53
* whtgen/topdown.ml: Before the removal of L.
2007-08-21 20:10 ma53
* wht/codelets/codelets.c: Fixed problem with string equality test.
2007-08-21 18:16 ma53
* whtgen/topdown.ml: Started reworking it for vectorized
transforms.
2007-08-20 19:30 ma53
* whtgen/topdown.ml: Made the permutation and partition functions a
bit clearer.
2007-08-20 19:27 ma53
* whtgen/topdown.ml: Generalized tensor notation.
2007-08-20 18:09 ma53
* whtgen/topdown.ml: Top down implementation of whtgen.
2007-08-17 18:39 ma53
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
config.h, configure.ac, wht/Makefile, wht/Makefile.am,
wht/codelets/Makefile, wht/codelets/Makefile.am, whtgen/Makefile,
whtgen/Makefile.am: Added autoconf toolchain stuff to project.
2007-08-17 18:29 ma53
* wht/Makefile, wht/codelets/Makefile,
wht/codelets/codelet_registry.h, wht/codelets/codelets.c,
wht/codelets/codelets.h, wht/small.c, wht/wht.c, wht/wht.h:
Removed dlopen stuff since it wasnt working with static linking.
2007-08-16 15:36 ma53
* wht/wht.c: Added call to apply.
2007-08-16 15:36 ma53
* wht/split.c: Now this function actually constructs a split node.
2007-08-16 15:35 ma53
* wht/small.c: Fixed problem with nILNumber.
2007-08-16 15:01 ma53
* wht/wht.c: Added getopt support to main.
2007-08-15 19:19 ma53
* wht/Makefile, wht/scanner.l, wht/split.c, wht/wht.c, wht/wht.h:
Added support for split.
2007-08-15 18:30 ma53
* config.h, wht, wht/Makefile, wht/codelets, wht/codelets/Makefile,
wht/codelets/codelets.c, wht/codelets/codelets.h, wht/scanner.l,
wht/small.c, wht/small.h, wht/utils.c, wht/wht.c, wht/wht.h:
First atttempt at modularizing code base.
2007-08-15 18:27 ma53
* whtgen, whtgen/Makefile, whtgen/interleave.ml,
whtgen/interleave.mli, whtgen/utils.ml, whtgen/utils.mli,
whtgen/vectorize.ml, whtgen/vectorize.mli, whtgen/wht.ml,
whtgen/wht.mli, whtgen/whtgen.ml: First check in of wht
generator.
2007-08-14 19:15 ma53
* .: New Wht Package