-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhpf.bib
executable file
·1446 lines (1299 loc) · 47.1 KB
/
hpf.bib
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
@techreport{harry,
author = "H. B. {Hunt III} and L. Mullin and D. J. Rosenkrantz",
title = "Towards an Indexing Calculus for Efficient Distributed
Array Computation",
year = 1997,
institution = "University at Albany",
number = "97--4",
address = "Department of Computer Science"
}
@techreport{HuntMulRos98,
author = "H. B. {Hunt III} and L. Mullin and D. J. Rosenkrantz",
title = "Experimental Design and Development of a Polyalgorithm
for the {FFT}",
year = 1998,
institution = "University at Albany",
number = "98--5",
address = "Department of Computer Science"
}
@book{herman,
author = "G. T. Herman",
title = "Image Reconstruction from Projections: the Fundamentals of
Computerized Tomography",
year = 1980,
publisher = "Academic Press",
address = "New York"
}
@book{deans,
author = "Stanley R. Deans",
title = "The Radon Transform and Some of its Applications",
year = 1983,
publisher = "Wiley",
address = "New York"
}
@Article{Constantine,
author = "Gregory M. Constantine",
title = "On the invertibility of the discrete {Radon}
transform",
journal = "SIAM Journal on Discrete Mathematics",
volume = "2",
number = "3",
pages = "300--306",
year = "1989",
coden = "SJDMEC",
ISSN = "0895-4801",
mrclass = "62K10 (05B05)",
mrnumber = "91a:62199",
mrreviewer = "James Allen Fill",
bibdate = "Thu Apr 9 15:09:27 MDT 1998",
acknowledgement = ack-nhfb,
}
@Article{Beylkin,
journal = "{IEEE} Trans. Acoustics, Speech and Signal
Processing",
author = "G. Beylkin",
title = "Discrete Radon Transform",
year = "1987",
volume = "{ASSP-35}",
number = "2",
pages = "162",
}
@PhdThesis{Toft,
author = "Peter Toft",
school = "Technical University of Denmark",
title = "The Radon Transform -- Theory and Implementation",
year = "1996",
abstract-url = "http://www.ei.dtu.dk/staff/ptoft/PhD_abstract.html",
url = "http://eivind.imm.dtu.dk/eipubs/phdthesis.html",
keywords = "Radon transform, Hough Transform, Reconstruction PET",
scope = "low",
}
@book{tolimieri1,
author = "R. Tolimieri and M. An and C. Lu",
title = "Mathematics of Multidimensional Fourier Transform Algorithms",
year = 1993,
publisher = "Springer-Verlag"
}
@book{tolimieri2,
author = "R. Tolimieri and M. An and C. Lu",
title = "Algorithms for Discrete Fourier Tranform and Convolution",
year = 1989,
publisher = "Springer-Verlag"
}
@book{ElliotRao,
author = "Douglas F. Elliott and K. Ramamohan Rao",
title = "Fast Transforms: Algorithms, Analyses, Applications",
year = 1982,
publisher = "Academic Press, Inc.",
}
@book{Twomey,
author = "S. Twomey",
title = "Introduction to the Mathematics of Inversion in Remote Sensing
and Indirect Measurements",
year = 1996,
publisher = "Dover",
address = "Mineola, New York"
}
@book{frank92,
editor = "J. Frank",
title = "Electron Tomography",
year = 1992,
publisher = "Plenum Publishing Corp.",
address = "New York"
}
@book{frank96,
author = "J. Frank",
title = "Three--dimensional Electron Microscopy of Macromolecules",
year = 1996,
publisher = "Academic Press",
address = "San Diego"
}
@book{Stark,
editor = "H. Stark",
title = "Image Recovery: Theory and Application",
year = 1987,
publisher = "Academic Press",
address = "New York"
}
@book{poularikas,
editor = "A. Poularikas",
title = "The Transform and Applications Handbook",
year = 1996,
publisher = "CRC Press"
}
@book{lanczos,
author = "Cornelius Lanczos",
title = "Applied Analysis",
year = 1956,
publisher = "Prentice--Hall (republished by Dover Publications Inc.
in 1988)"
}
@book{vanloan,
author = "Charles {Van Loan}",
title = "Computational Frameworks for the Fast Fourier Transform",
series = "Frontiers in Applied Mathematics",
year = 1992,
publisher = "SIAM"
}
@book{cheney,
author = "W. Cheney and D. Kincaid",
title = "Mathematics and Computing 3rd Ed.",
year = 1994,
publisher = "Cole Publishing Co."
}
@book{friedman,
author = "B. Friedman",
title = "Principles and Techniques of Applied Mathematics",
year = 1956,
publisher = "John Wiley and Sons"
}
@article{StearnsH96,
author = "R. E. Stearns and H. B. Hunt III",
title = "An Algebraic Model for Combinatorial Problems",
journal = "SIAM Journal on Computing",
year = 1996,
month = apr,
volume = 25,
pages = "448--476"
}
@article{houstis,
author = "A. Houstis and R. Bramley and E. Gallopoulos
and J Rice",
title = "Problem Solving Environments for Computational Science",
journal = "IEEE Computational Science and Engineering",
year = 1997,
volume = 4,
number = 3
}
@book{golub,
author = "G. Golub and C. VanLoan",
title = "Matrix Computations",
year = 1983,
publisher = "Johns Hopkins University Press"
}
@phdthesis{abrams70,
author = "P.S. Abrams",
title = "An APL Machine",
school = "Stanford University",
year = 1970
}
@book{allen,
title = "Introduction to Computer Performance with Mathematica",
author = "A. Allen",
publisher = "Academic Press",
year = 1994
}
@article{bacon94,
author = "David F. Bacon and Susan L. Graham and Oliver J.
Sharp",
title = "Compiler Transformations for High--Performance Computing",
journal = "ACM Computing Surveys",
volume = 26,
number = 4,
year = 1994,
month = dec,
pages = "345--420"
}
@incollection{aachen96,
author = {L. Mullin et al},
title = {The {PGI--PSI} Project: Preprocessing Optimizations for
Existing and New {F}90 Intrinsics in {HPF} using
Compositional Symmetric Indexing of the {P}si
Calculus},
booktitle = {Proceedings of the 6th Workshop on Compilers for
Parallel Computers},
editor = {M. Gerndt},
publisher = {Forschungszentrum Julich GmbH},
year = 1996
}
@book{baird,
author = "D. Baird",
title = "Experimentation: An Introduction to Measurement Theory
and Experiment Design",
publisher = "Prentiss-Hall",
year = 1962
}
@article{celmaster96,
author = "W. Celmaster",
title = "Modern Fortran Revived as the Language of Scientific
Computing",
journal ="Digital Technical Journal",
year = 1996,
volume = 8,
number = 3
}
@book{chen91,
author = "L. Lu and M. Chen",
title = "Parallelizing Loops with Indirect Array References or Pointers",
publisher = "Springer-Verlag",
series = "Lecture Notes in Computer Science",
volume = 589,
year = 1991
}
@article{chen92,
author = "M. Chen",
title = "Prototyping Fortran-90 Compilers for Massively
Parallel Machines",
journal = "Sigplan Notices",
volume = 27,
number = 7,
month = "July",
year = 1992
}
@misc{coffin94,
author = "L. Coffin",
title = "Designing a New Programming Methodology for
Optimizing Array Accesses in Complex Scientific Problems",
year = 1994,
note = "UMR Undergraduate Research Program(OURE)"
}
@mastersthesis{dooling95,
author = "D. Dooling",
title = "Distributing the Extended {P}si Function for Sparse Arrays",
school = "University of Vermont",
year = 1994
}
@unpublished{evan97,
author = "E. Chen",
title = "Polyalgorithms for {QR} Decomposition",
note = "University at Albany, SUNY, Phd in progress"
}
@incollection{marina,
author = {M. Chen and Y. Choo and J. Li},
title = {Crystal: Theory and pragmatics of generating efficient
parallel code},
booktitle = {Parallel Functional Languages and Compilers},
editor = {K. Szymanski},
publisher = {ACM Press},
year = 1991
}
@article{li91a,
author = "J. Li and M. Chen",
title = "The Data Alignment Phase in Compiling Programs for
Distributed-Memory Machines",
journal = "Journal of Parallel and Distributed Computing",
volume = 13,
number = 2,
year = 1991,
pages = "213--221",
month = "October"
}
@book{hockney,
author = "R. Hockney",
title = "The Science of Computer Benchmarking",
publisher = "SIAM Press",
year = 1996
}
@manual{hpff93,
title = "High Performance Fortran Language Specification, Version 1",
organization = "High Performance Fortran Forum",
month = "May",
year = 1993
}
@techreport{fox96,
title = "Exploiting High Performance Fortran for Computational
Fluid Dynamics",
author = " K. Hawick and G. Fox and H. Yau",
institution = "Northeast Parallel Architectures Center(NPAC)",
year = 1996
}
@inproceedings{hpcn,
author = {Pietro Rossi},
title = {Science in Industry in HPCN},
booktitle = {HPCN Europe 93},
year = 1993
}
@book{iverson62,
author = "K.E.Iverson",
title = "A Programming Language",
publisher = "Wiley, New York",
year = 1962
}
@article{jacob96,
author = "B Jacob and P. Chen and S. Silverman and T. Mudge",
title = "An Analytical Model for Designing Memory Hierarchies",
journal = "IEEE Transactions on Computers",
volume = 45,
number = 10,
year = 1996
}
@techreport{kulkar0,
author = {D. Kulkarni and M. Stumm and R. Unrau and W. Li},
title = {A Generalized Theory of Linear Loop Transformations},
institution = {CSRI, University of Toronto},
number = {CSRI-317},
year = 1994
}
@article{lyon,
author = {A. Hassitt and L. Lyon},
title = {Efficient Evaluation of Array Subscripts of Arrays},
journal = {IBM Journal of Research and Development},
year = 1972,
month = {January}
}
@article{mlam91,
author = "Michael Wolf and Monica Lam",
title = "A Loop Transformation Theory and an Algorithm to Maximize
Parallelism",
journal = "IEEE Transactions in Parallel and Distributed Systems",
year = 1991,
month = {October},
volume = 2,
number = 4
}
@unpublished{Blas95,
title = "Parallel Implementation of BLAS: General Techniques
for Level 3 BLAS",
author = "A. Chtchelkanova and J. Gunnels and G. Morrow and J. Overfelt,
R. van de Geijn",
year = 1995,
note = "University of Texas Austin"
}
@article{monica91,
author= "M. Lam and E. Rothberg and M. Wolf",
title = "The Cache Performance and Optimizations of
Blocked Algorithms",
year = 1991,
journal = "Proceedings of Fourth International Conference
on Architectural Support for Programming Languages,
and Operating Systems",
}
@Article{monica1,
author = {Saman P. Amarasinghe and Monica S. Lam},
title = {Communication Optimization and Code Generation for
Distributed Memory Machines},
pages = {126--138},
journal = {sigplan},
year = 1993,
month = {june},
volume = 28,
number = 6
}
@inproceedings{monica2,
author = {Jennifer M. Anderson and Monica S. Lam},
title = {Global Optimizations for Parallelism and Locality
on Scalable Parallel Machines},
pages = {112--125},
booktitle =" Proceedings of the ACM SIGPLAN'93 Conference on
Programming Language Design and Implementation",
year = 1993,
month = {June},
documentURL ="http://suif.stanford.edu/papers/anderson93.ps",
}
@inproceedings{lam0,
author = {J. M. Anderson and S. P. Amarasinghe and M. S. Lam},
title = {Data and Computation Transformations for
Multiprocessors},
journal = {Proceedings of Fifth ACM SIGPLAN Symposium on Principles
and Practice of Parallel Programming (PPoPP '95)},
year = 1995,
month = jul,
address = {Santa Barbara, CA}
}
@book{madden92,
author = "P. Madden",
title = "Automatic Program Optimization through Proof Transformation",
publisher = "Springer-Verlag",
series = "Lecture Notes in Computer Science",
volume = 607,
year = 1992
}
@article{malcolm90,
author = "G. Malcolm",
title = "Data Structures and Program Transformations",
journal ="Science of Computer Programming",
year = 1990,
volume = 14
}
@phdthesis{mul88,
title = "A Mathematics of Arrays",
author = "L. M. R. Mullin",
school = "Syracuse University",
year = "1988",
month = "December"
}
@incollection{mul91,
author = "L.M. R. Mullin",
title = "Psi, the Indexing Function: A Basis for {FFP} with Arrays",
booktitle = "Arrays, Functional Languages, and Parallel Systems",
publisher = "Kluwer Academic Publishers",
year= 1991
}
@techreport{mul92,
author = "L. M. R. Mullin",
title = "The {P}si Correspondence Theorem: Array Mapping using
the {P}si Calculus",
institution = "University of Vermont",
year = 1992,
address = "Department of CS and EE",
number ="CSEE/92/06-2",
}
@inproceedings{mdst93,
author = "L. R. Mullin and D. Dooling and E. Sandberg and S. Thibault",
title = "Formal Methods for Scheduling, Routing and Communication Protocol",
booktitle = "Proceedings of the Second International Symposium on
High Performance Distributed Computing (HPDC-2)",
year = 1993,
month ="July",
organization = "IEEE Computer Society"
}
@techreport{mdst94,
author = "L.R. Mullin and D. Dooling and E. Sandberg and S. Thibault",
title = "Formal Methods for Portable, Scalable, Scheduling,
Routing, and Communication Protocol",
institution = "Dept. of CS, University of Missouri-Rolla",
number = "CSC 94-04",
year = 1994
}
@inproceedings{mul93,
author= "L. Mullin",
title = "The {P}si Compiler Project",
booktitle = "Workshop on Compilers for Parallel Computers",
year = 1993,
organization = "TU Delft, Holland"
}
@techreport{mul94,
author = "L. Mullin and S. Thibault",
title = "Reduction Semantics for Array Expressions: The {P}si Compiler",
institution = "Dept. of CS, University of Missouri-Rolla",
number = "CSC 94-05",
year = 1994
}
@techreport{lee95,
author = {L. Mullin and T. McMahon},
title = {Parallel Algorithm Derivation and Program Transformation
in a
Preprocessing Compiler for Scientific Languages},
institution ={University of Missouri-Rolla},
year = 1994,
address = {Dept of CS},
number = {CSC-94-29}
}
@inproceedings{mul96,
author = "L. Mullin and W. Kluge and S. Scholtz",
title = "On Programming Scientific Applications in {SAC} -- a Functional
Language Extended by a Subsystem for High Level Array Operations",
year = 1996,
booktitle = "Proceedings of the 8th International Workshop on Implementation
of Functional Languages, Bonn/Germany"
}
@mastersthesis{nemer94,
author = "N. Nemer",
title = "Load Balancing the Heat Equation in a Heterogeneous
Environment with {PVM}",
school = "University of Missouri-Rolla",
year = 1994
}
@inproceedings{haleh98,
author = "H. Najafzadeh and L. R. Mullin",
title = "A Dimension Independent General Partitioning
Algorithm to Support {HPF} Directives",
booktitle = "Proceedings of the Seventh Workshop on Compilers
for Parallel Computers, CPC98",
address = "Linkoping, Sweden",
year = 1998
}
@unpublished{scott97,
author = "S. Murawski",
title = "Gang Scheduling in {L}inux",
note = "University at Albany, SUNY, MS in progress"
}
@misc{mcmahon95,
author = "T. McMahon",
title = "Mathematical Formulation of General Partitioning of
Multi-dimensional Arrays to Multi-Dimensional
Architectures using the {P}si Calculus",
school = "University of Missouri-Rolla",
year = 1995,
note = "Undergraduate Honors Thesis"
}
@article{muldol94,
author = "D. Dooling and L. Mullin",
title = "Indexing and Distributing a General Partitioned Sparse Array",
year = 1995,
journal = "Proceedings of the Workshop on Solving Irregular Problems on
Distributed Memory Machines"
}
@article{muljen94,
author = {L. Mullin and M. Jenkins},
title = {Effective Data Parallel Computation using the {P}si Calculus},
journal = {Concurrency -- Practice and Experience},
year = 1996,
month = {September}
}
@book{recipes,
title = "Numerical Recipes in Fortan 90",
author = "W. Press and W. Vetterling and S. Teukolsky and B. Flannery",
publisher = "Cambridge University Press",
year = 1996
}
@book{hpc,
title = "Developing a Computer Science Agenda for HPC",
publisher = "ACM Press",
editor = "U. Vishkin",
year = 1994
}
@book{paige93,
editor = "R. Paige and J. Reif and R. Wachter",
title = "Parallel Algorithm Derivation and Program Transformation",
publisher = "Kluwer Academic Publishers",
year = 1993
}
@inproceedings{palvast89,
author = "E.M.Palvast and H.J.Sips",
title = "A High Level Language for the Description of Parallel
Algorithms",
booktitle = "Proceedings of Parallel Computing 89",
year = 1989,
publisher = "North Holland",
month = "August"
}
@inproceedings{palvast90,
author = "E.M.Palvast and A.J. van Gemund and H.J.Sips",
title = "A Method for Parallel Program Generation with an application
to the Booster Language",
booktitle = "Proceedings of 1990 ACM International Conference on
Supercomputing",
year = 1990,
publisher = "ACM",
month = "June"
}
@inproceedings{palvast91,
author = "E.M.Palvast and H.J.Sips and A.J. van Gemund",
title = "Automatic Parallel Program Generation with an Application
to the Booster Language",
booktitle = "Proceedings of the 1991 International Conference
on Parallel Processing",
year = 1991,
month = "August"
}
@phdthesis{palvast92,
author = "E.M. Palvast",
title = "Programming for Parallelism and Compiling for Efficiency",
school = "Delft University of Technology",
year = 1992,
month = "June"
}
@article{pvm90,
author = "V. Sunderam",
title = "A Framework fo Parallel Distributed Computing",
journal = "Concurrency: Practice and Experience",
year = 1990
}
@techreport{pvm91,
author = "A. Beguelin and J. Dongarra and A. Geist and R. Manchek and
V. Sunderam",
title = "A Users Guide to PVM, Parallel Virtual Machine",
institution = "Oak Ridge National Laboratory",
number = "ORNL/TM=11826",
year = 1991
}
@article{raman0,
author = {J. Ramanujam},
title = {A linear Algebra View of Loop Transformations and their
Interaction},
journal = {Proceedings of Fifth SIAM Conference on Parallel
Processing for Scientific Computing},
year = 1992
}
@book{djr,
author = "P. Lewis and D. Rosenkrantz and R. Stearns",
title = " Compiler Design Theory",
publisher = "Addison-Wesley",
year = 1976
}
@mastersthesis{thibault95,
author = "S. Thibault",
title = "An Address Generator for Array Operations and Compiler
Extensions for Sparse Arrays",
school = "University of Missouri-Rolla",
year = 1995
}
@techreport{thib9408,
author = "S. Thibault and L. Mullin",
title = "Generating Indexing Functions of Regularly
Sparse Arrays for Array Compilers",
institution = "University of Missouri-Rolla",
year = 1994,
note = "TR 94-08"
}
@techreport{thib9405,
author = "S. Thibault and L. Mullin",
title = "A Reduction Semantics for Array Expressions: The {P}si Compiler",
institution = "University of Missouri-Rolla",
year = 1994,
note = "TR 95-05"
}
@techreport{thib9403,
author = "S. Thibault and L. Mullin",
title = "A Pipeline Implementation of {LU}--Decomposition on a Hypercube",
institution = "University of Missouri-Rolla",
year = 1994,
note = "TR 95-03"
}
@book{tony94,
author = "W. Gropp and E. Lusk and A. Skjellum",
title = "Using MPI",
publisher = "MIT Press",
year = 1994
}
@inproceedings{tony96,
author = "A. Skjellum and N. Doss and P. Bangalore",
title = "Driving Issues in Scalable Libraries: Poly-Algorithms,
Data Distribution Independence, Redistribution, Local Storage
Schemes",
year = 1996,
booktitle = "Proceedings of the Seventh SIAM Conference on Parallel
Processing for Scientific Computing",
publisher = "SIAM Press"
}
@misc{tony95,
author = "J. Li and A. Skjellum",
title = "A Poly-Algorithm for Parallel Dense Matrix Multiplication on
Two-Dimensional Process Grid Topologies",
year = 1995,
note = "Mississippi State University"
}
@book{sieg93,
author = "P. Sieg",
title = "Program Transformation and Proof Transformation",
series = "Lecture Notes in Computer Science",
publisher = "Springer-Verlag",
volume = 832,
year = 1993
}
@misc{x3j394,
author = "Standing Document, X3J3-94",
howpublished = "anonymous ftp from the directory /x3j3 at
ftp.ncs.uiuc.edu"
}
@string{jpdc = "Journal of Parallel and Distributed Computing"}
@string{toplas = "ACM Transactions on Programming Languages and Systems"}
@Article{ChatterjeeGOSS96,
title={Algorithms for Automatic Alignment of Arrays},
author={Siddhartha Chatterjee and John R. Gilbert and Leonid Oliker
and Robert Schreiber and Thomas J. Sheffler},
pages={145--157},
journal=jpdc,
year=1996,
month={1~} # nov,
volume=38,
number=2,
source={http://theory.lcs.mit.edu/~dmjones/hbp/bibs/misc/jpdc.bib}
}
@Article{ChatterjeeGST95,
title={Optimal Evaluation of Array Expressions on Massively Parallel Machines},
author={Siddhartha Chatterjee and John R. Gilbert
and Robert Schreiber and Shang--Hua Teng},
pages={123--156},
journal=toplas,
year=1995,
month=jan,
volume=17,
number=1
}
@InProceedings{Mace85,
author = "Mary E. Mace and Robert A. Wagner",
title = "Globally Optimum Selection of Memory Storage
Patterns",
pages = "264--271",
booktitle = "International Conference on Parallel Processing",
month = aug,
publisher = "IEEE Computer Society Press",
address = "Los Alamitos, Ca., USA",
year = "1985",
ISBN = "0-8186-0637-1",
}
@book{Mace87,
author = "Mary E. Mace",
title = "Memory Storage Patterns in Parallel Processing",
publisher = "Kluwer Academic Publishing",
address = "Norwell, Mass.",
year = 1987
}
@article{gilbert91,
author = "John R. Gilbert and Robert Schreiber",
title = "Optimal expression evaluation for data parallel
architectures",
journal = "Journal of Parallel and Distributed Computing",
volume = "13",
number = "1",
pages = "58--64",
day = "1",
month = sep,
year = "1991",
coden = "JPDCER",
ISSN = "0743-7315",
bibdate = "Sat Apr 12 19:06:31 MDT 1997",
acknowledgement = ack-nhfb,
affiliation = "Xerox Palo Alto Research Cent",
affiliationaddress = "Palo Alto, CA, USA",
classification = "722; 723; 921; C4100 (Numerical analysis); C4240
(Programming and algorithm theory); C7310
(Mathematics)",
corpsource = "Xerox Palo Alto Res. Center, Palo Alto, CA, USA",
journalabr = "J Parallel Distrib Comput",
keywords = "architectures; array; communication architectures;
composite data structure; Computer Architecture;
Computer Programming--Algorithms; Computer Systems,
Digital; data; data parallel; Data parallel
architectures; Data Processing--Data Structures;
hypercubes; item; mathematics computing; optimal
expression evaluation; parallel; parallel algorithms;
Parallel architectures; parallel machine; Parallel
machines; Parallel Processing; pointwise operation;
processor allocation; robustness"
}
@article{Li91b,
author = "Jingke Li and Marina Chen",
title = "Compiling communication-efficient programs for
massively parallel machines",
journal = "IEEE Transactions on Parallel and Distributed
Systems",
volume = "2",
number = "3",
pages = "361--376",
month = jul,
year = "1991",
coden = "ITDSEO",
ISSN = "1045-9219",
bibdate = "Fri Apr 11 15:20:39 MDT 1997",
acknowledgement = ack-nhfb,
affiliation = "Dept of Comput Sci, Portland State Univ, OR, USA",
classification = "722; 723; 913; C5440 (Multiprocessor systems and
techniques); C6110B (Software engineering techniques);
C6120 (File organisation); C6150C (Compilers,
interpreters and other processors); C6150J (Operating
systems)",
corpsource = "Dept. of Comput. Sci., Portland State Univ., OR, USA",
journalabr = "IEEE Trans Parallel Distrib Syst",
keywords = "communication metric; communication routines;
communication-efficient programs; Computer Operating
Systems; Computer Systems, Digital--Parallel
Processing; data layout; Distributed Memory; explicit
communication; explicit control structures;
Interprocessor Communication; Massively Parallel
Architecture; massively parallel distributed-; memory
machines; parallel machines; parallel programming;
parallel target code; Parallelizing Compilers;
patterns; Program Compilers; program compilers;
programs; scheduling; Scheduling--Applications; shared
address space; shared-memory parallel; source programs;
storage management; strategies; syntactic reference;
target program text"
}
@article{gupta92a,
author = "Manish Gupta and Prithviraj Banerjee",
title = "Demonstration of automatic data partitioning
techniques for parallelizing compilers on
multicomputers",
journal = "IEEE Transactions on Parallel and Distributed
Systems",
volume = "3",
number = "2",
pages = "179--193",
month = mar,
year = "1992",
coden = "ITDSEO",
ISSN = "1045-9219",
bibdate = "Fri Apr 11 15:20:39 MDT 1997",
acknowledgement = ack-nhfb,
classification = "722; 723; C6110P (Parallel programming); C6120 (File
organisation); C6150C (Compilers, interpreters and
other processors)",
corpsource = "Coordinated Sci. Lab., Illinois Univ., Urbana, IL,
USA",
journalabr = "IEEE Trans Parallel Distrib Syst",
keywords = "automatic data partitioning; Automatic Data
Partitioning Problem; Computer Operating
Systems--Program Compilers; Computer Systems, Digital;
constraints; data; data distribution; data structures;
Eispack libraries; Fortran programs; Linpack;
multicomputers; Parallel Processing; parallel
programming; parallelizing compilers; Parallelizing
Compilers; Perfect Benchmarks; program compilers;
scientific application programs; structures"
}
@techreport{gupta92b,
author = "Manish Gupta",
title = "Automatic data partitioning on distributed memory
multicomputers",
institution = "Department of Computer Science, University of Illinois
at Urbana-Champaign",
address = "Urbana, Illinois",
year = "1992",
number = "1028"
}
@article{Knobe90,
author = "K. Knobe and J. D. Lukas and G. L. {Steele, Jr.}",
title = "Data Optimization: Allocation of Arrays to Reduce
Communication on {SIMD} Machines",
journal = "Journal of Parallel and Distributed Computing",
volume = "8",
number = "2",
pages = "102--118",
month = feb,
year = "1990",
coden = "JPDCER",
ISSN = "0743-7315",
bibdate = "Sat Apr 12 17:13:17 MDT 1997",
acknowledgement = ack-nhfb,
classification = "C1180 (Optimisation techniques); C5440
(Multiprocessor systems and techniques); C6110 (Systems
analysis and programming); C6150C (Compilers,
interpreters and other processors)",
corpsource = "Compass, Inc., Wakefield, MA, USA",
keywords = "allocation of arrays; automatic layout of arrays; code
fragments; Connection; data optimisation; data parallel
programming language; Machine computer system;
optimisation; optimizing compiler; parallel processing;
parallel programming; program compilers; program
performance; SIMD machines"
}
@article{Knobe93,
author = "Kathleen Knobe and Venkataraman Natarajan",
title = "Automatic Data Allocation to Minimize Communication on
{SIMD} Machines",
journal = "The Journal of Supercomputing",
volume = "7",
number = "4",
pages = "387--415",
month = dec,
year = "1993",
coden = "JOSUED",
ISSN = "0920-8542",
bibdate = "Mon Jun 2 19:03:29 MDT 1997",
acknowledgement = ack-nhfb,
affiliation = "Artificial Intelligence Lab., MIT, Cambridge, MA,
USA",
classification = "C5220P (Parallel architecture); C6150C (Compilers,
interpreters and other processors)",
corpsource = "Artificial Intelligence Lab., MIT, Cambridge, MA,
USA",
keywords = "compiler algorithm; data alignment; data allocation;
data distribution; distributed memory; interprocessor
data motion; parallel architectures; parallel
compilers; program compilers; SIMD machines"
}
@inproceedings{Wholey92,
author = "Skef Wholey",
title = "Automatic Data Mapping for Distributed--Memory Parallel
Computers",
booktitle = "{Conference Proceedings 1992 Sixth ACM International
Conference on Supercomputing,
Washington, DC}",
publisher = "ACM Press",