-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathparallel.bib
2399 lines (1955 loc) · 57.7 KB
/
parallel.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
% -*- Mode: BibTeX -*-
% parallel.bib
% Bibliography for papers related to parallel computing.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Parallel languages
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Data layout
%
@Article(KnobeLS90,
Author = "Kathleen Knobe and Joan D. Lukas and Guy L. {Steele Jr}",
Title = "Data Optimization: Allocation of Arrays to Reduce
Communication on {SIMD} Machines",
Journal = "Journal of Parallel and Distributed Computing",
Year = 1990,
Volume = 8,
Pages = "102--118"
)
@InProceedings{BagrodiaM91,
author = "Rajive Bagrodia and Sharad Mathur",
title = "Efficient Implementation of High-Level Parallel Programs",
booktitle = "Proceedings of the 4th International Conference on
Architectural Support for Programming Languages and
Operating Systems",
year = {1991},
pages = "142--151",
organization = "ACM",
month = apr # "~8--11,"
}
@TechReport{Wholey91,
author = "Skef Wholey",
title = "Automatic data mapping for distributed-memory
parallel computers",
institution = "Carnegie Mellon University",
year = {1991},
number = "CMU-CS-91-121",
address = "Pittsburgh, Pennsylvania",
month = may
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Multigauge/repartitionable
%
@Article{SiegelSKMSS81,
author = "Howard Jay Siegel and Leah J. Siegel and Frederick C.
Kemmerer and Mueller, Jr., Philip T. and Smalley, Jr.,
Harold E. and S. Diane Smith",
title = "{PASM}: a partitionable {SIMD}/{MIMD} system for image
processing and pattern recognition",
journal = "IEEE Transactions on Computers",
year = "1981",
volume = "C-30",
number = "12",
pages = "934--947",
month = dec
}
@TechReport{SnyderY86,
author = "Snyder, Lawrence and Yang, Chyan",
title = "An investigation into the design costs of a single chip
multigauge machine",
institution = "University of Washington Department of Computer Science",
year = {1986},
number = "TR-86-06-01",
address = "Seattle, WA",
month = jun # "~2,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Compiler optimizations
%
@TechReport{HiranandaniKT91,
author = "Seema Hiranandani and Ken Kennedy and Chau-Wen Tseng",
title = "Compiler optimizations for {Fortran~D} on {MIMD}
distributed-memory machines",
institution = "Rice University Center for Research on Parallel
Computation",
year = "1991",
number = "CRPC-TR91162",
address = "Houston, Texas",
month = apr,
note = "Revised August, 1991"
}
@TechReport{FoxHKKKTW90,
author = "Geoffrey Fox and Seema Hiranandani and Ken Kennedy and
Charles Koelbel and Uli Kremer and Chau-Wen Tseng and
Min-You Wu",
title = "Fortran {D} language specification",
institution = "Rice University Department of Computer Science",
year = "1991",
number = "COMP TR90-141",
address = "Houston, Texas",
month = dec,
note = "Revised February, 1991."
}
@Article{CallahanK88,
author = "David Callahan and Ken Kennedy",
title = "Compiling Programs for Distributed Memory Computers",
journal = "Journal of Supercomputing",
year = "1988",
volume = "2",
number = "2",
pages = "151--169",
month = oct
}
@InProceedings{TrioletIF86,
author = "Remi Triolet and Francois Irigoin and Paul Feautrier",
title = "Direct Parallelization of Call Statements",
booktitle = "Proceedings of the SIGPLAN '86 Symposium on Compiler
Construction",
year = "1986",
pages = "176--185",
month = jun
}
@InProceedings{AllenCK87,
author = "Randy Allen and David Callahan and Ken Kennedy",
title = "Automatic Decomposition of Scientific Programs for
Parallel Execution",
booktitle = "Conference Record of the Fourteenth ACM Symposium on
Principles of Programming Languages",
year = "1987",
pages = "63--76",
address = "Munich, West Germany",
month = jan # "~21--23,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Etc: other parallel languages
%
@TechReport{Chien90,
author = "Andrew Andai Chien",
title = "{Concurrent Aggregates} ({CA}): An Object-Oriented Language
for Fine-Grained Message-Passing Machines",
institution = MITLCS,
year = {1990},
number = "LCS-TR-1248",
address = "Cambridge, Massachusetts",
month = Jul
}
@TechReport{CMU-DARPA91,
author = "School of Computer Science",
title = "Semi-annual technical report on basic research in
{VLSI} logic validation and parallel computation",
institution = "Carnegie Mellon University",
year = {1991},
address = "Pittsburgh, Pennsylvania",
month = nov # "~15,"
}
@TechReport{Nikhil91,
author = "Rishiyur S. Nikhil",
title = "ID Language Reference Manual",
institution = MITLCS,
year = "1991",
type = "Computation Structures Group Memo",
number = "284-2",
month = jul # "~15,"
}
@InProceedings{Fox88,
author = "Geoffrey C. Fox",
title = "What Have We Learnt from Using Real Parallel Machines to
Solve Real Problems?",
booktitle = "Proceedings of the Third Conference on Hypercube
Concurrent Computers and Applications",
year = "1988",
editor = "Geoffrey C. Fox",
pages = "897--955",
organization = "ACM",
month = jan # "~19--20,"
}
@TechReport{WeihlBCDHJWW91,
author = "William Weihl and Eric Brewer and Adrian Colbrook and
Chrysanthos Dellarocas and Wilson Hsieh and Anthony Joseph
and Carl Waldspurger and Paul Wang",
title = "Prelude: A system for portable parallel software",
institution = MIT,
year = "1991",
number = "MIT-LCS-TR-519",
address = "Cambridge, Massachusetts",
month = oct
}
@Manual{BrewerD91,
title = "{\sc Proteus} User Documentation: Version 0.2",
author = "Eric A. Brewer and Chrysanthos N. Dellarocas",
year = 1991,
month = Oct # "~31,"
}
@Book{Leighton92,
author = "F. Thomson Leighton",
title = "Introduction to Parallel Algorithms and Architectures:
Arrays, Trees, Hypercubes",
publisher = "Morgan Kaufmann",
year = 1992,
address = "San Mateo, California"
}
@Article{IEEETSE::LeeRF1995,
title = "Region Analysis: {A} Parallel Elimination Method for
Data Flow Analysis",
author = "Yong-Fong Lee and Barbara G. Ryder and Marc E.
Fiuczynski",
journal = "IEEE Transactions on Software Engineering",
pages = "913--926",
month = nov,
year = "1995",
volume = "21",
number = "11",
}
@InProceedings{hicss94-2*43,
author = "E. Stoltz and M. P. Gerlek and M. Wolfe",
title = "Extended {SSA} With Factored Use-Def Chains to Support
Optimization and Parallelism",
pages = "43--53",
ISBN = "0-8186-5060-5",
editor = "Hesham El-Rewini and Bruce D. Shriver",
booktitle = "Proceedings of the 27th Annual Hawaii International
Conference on System Sciences. Volume 2 : Software
Technology",
month = jan,
publisher = "IEEE Computer Society Press",
address = "Los Alamitos, CA, USA",
year = "1994",
}
@InProceedings{ChowH94,
author = "Jyh-Herng Chow and Williams Ludwell {Harrison III}",
title = "State space reduction in abstract interpretation of
parallel programs",
booktitle = "Proceedings of the 1994 International Conference on
Computer Languages",
pages = "277--288",
year = 1994,
address = "Toulouse, France",
month = may # "~16--19,",
extra_publisher = "IEEE Comput. Soc. Press. Los Alamitos, CA, USA.",
abstract = "Traditional compiler techniques operating on control flow
graphs are not adequate for analyzing parallel programs where
data can flow from one node to another through the shared
memory, even though the nodes are not related by control flow
edges. Abstract interpretation provides a general and unified
framework for program analyses, and can be applied to parallel
programs without much difficulty. However, the state space
explosion problem in abstract interpretation of parallel
programs must be relieved in order to make compile-time
analyses practical. Although abstract interpretation itself
provides an excellent mechanism for state space reduction by
state abstraction, lower precision analysis often results from
taking a higher degree of abstraction. In this paper, we
present state space reduction that preserves analysis precision
by eliminating redundant interleavings, based on Valmari's
(1990) stubborn set method. We also propose an iterative
algorithm for analyzing programs with pointers and closures, in
which knowledge about shared locations required by existing
methods is not available. The proposed algorithm has been
implemented, and we discuss preliminary results of the
implementation."
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Parallel hardware
%%%
@InCollection{Batcher85,
author = "K. E. Batcher",
title = "The massively parallel processor system overview",
booktitle = "The Massively Parallel Processor",
publisher = "MIT Press",
year = 1989,
editor = "J. L. Potter",
pages = "142--149",
address = "Cambridge, Massachusetts"
}
@TechReport{CM-2,
author = "{Thinking Machines Corporation}",
title = "{Connection Machine Model CM-2} Technical Summary",
institution = "Thinking Machines Corporation",
year = 1987,
number = "HA87-4",
address = "Cambridge, Massachusetts",
month = Apr
}
% Somewhat randomly in this file.
@TechReport{Bailey91,
author = "David H. Bailey",
title = "Twelve ways to fool the masses when giving performance
results on parallel computers",
institution = "RNR",
year = 1991,
number = "RNR-91-020",
month = Jun # "~11,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DATA-PARALLEL LANGUAGES
%
@TechReport{Blelloch92,
author = "Guy E. Blelloch",
title = "{NESL}: A Nested Data-Parallel Language",
institution = "Carnegie Mellon University",
year = {1992},
number = "CMU-CS-92-103",
address = "Pittsburgh, Pennsylvania",
month = jan
}
@InProceedings{BlellochC90,
Author = "Blelloch, Guy E. and Chatterjee, Siddhartha",
Title = "{VCODE}: A Data-Parallel Intermediate Language",
BookTitle = "Proceedings of the Third Symposium on the Frontiers of
Massively Parallel Computation",
Year = 1990,
Address = "College Park, Maryland",
Month = oct,
Pages = "471--480"
}
@Article{SipelsteinB91,
author = "Jay M. Sipelstein and Guy E. Blelloch",
title = "Collection-oriented languages",
journal = "Proceedings of the IEEE",
year = {1991},
volume = {79},
number = {4},
pages = "504--523",
month = apr
}
@BOOK{Sabot88:model,
AUTHOR = {Sabot, Gary W.},
TITLE = {The Paralation Model: Architecture-Independent Parallel
Programming},
PUBLISHER = {MIT Press},
address = "Cambridge, Massachusetts",
YEAR = {1988}
}
@Manual{Sabot88:manual,
title = "Paralation Lisp Reference Manual",
author = "Gary Sabot",
year = 1988,
month = May
}
%%% For the Connection Machine
@TechReport{RoseS87,
author = "J. Rose and G. L. {Steele Jr.}",
title = "{C*}: An extended {C} language for data parallel programming",
institution = "Thinking Machines Corporation",
year = 1987,
number = "PL87-5",
address = "Cambridge, Massachusetts",
month = Apr
}
@Manual{cstar6.0,
title = "{C*} Programming Guide",
organization = "Thinking Machines Corporation",
address = "Cambridge, Massachusetts",
year = 1990,
note = "Version 6.0 Beta"
}
@Manual{Lasser86,
title = "The Essential {*Lisp} Manual",
author = "C. Lasser",
organization = "Thinking Machines Corporation",
address = "Cambridge, Massachusetts",
year = 1986,
month = Jul
}
@Manual{starlisp-getting-started,
title = "Getting Started in {*Lisp}",
organization = "Thinking Machines Corporation",
address = "Cambridge, Massachusetts",
year = 1991,
month = Jun,
note = "Version 6.1. First printing."
}
@Manual{starlisp-dictionary,
title = "{*Lisp} Dictionary",
organization = "Thinking Machines Corporation",
address = "Cambridge, Massachusetts",
year = 1991,
month = Oct,
note = "Version 6.1. Revised printing."
}
@TechReport{Steele86,
author = "Guy L. {Steele Jr.}",
title = "{CM-Lisp}",
institution = "Thinking Machines Corporation",
year = 1986,
address = "Cambridge, Massachusetts"
}
@Manual{CM-fortran,
title = "{CM} {Fortran} User's Guide",
organization = "Thinking Machines Corporation",
address = "Cambridge, Massachusetts",
year = 1991,
month = Oct,
edition = "Preliminary",
note = "Thinking Machines confidential."
}
%%% For the Warp
@PhdThesis{Teng89,
author = "P.-S. Teng",
title = "A parallelizing compiler for distributed memory parallel
computers",
school = "Carnegie Mellon University",
year = 1989,
address = "Pittsburgh, Pennsylvania",
month = May
}
@Article{HameyWW89,
author = "L. G. C. Hamey and J. A. Webb and I.-C. Wu",
title = "An architecture independent programming language for
low-level vision",
journal = "Computer Vision, Graphics, and Image Processing",
year = 1989,
volume = 48,
pages = "246--264"
}
%%% APL
@Book{Iverson62,
author = "K. E. Iverson",
title = "A Programming Language",
publisher = "Wiley",
year = 1962,
address = "New York"
}
@Manual{APL2,
title = "APL2 Programming: Language Reference",
organization = "IBM",
year = 1984,
month = Aug,
note = "Order number SH20-9227-0"
}
@Article{Willhoft91,
author = "Robert G. Willhoft",
title = "Parallel expression in the {APL2} language",
journal = "IBM Systems Journal",
year = {1991},
volume = {30},
number = {4},
pages = "498--512"
}
@Article{Iverson87,
author = "K. E. Iverson",
title = "A Dictionary of APL",
journal = "APL Quote Quad",
year = 1987,
volume = 18,
number = 1,
pages = "5--40",
month = Sep
}
@Article{JenkinsGM86,
author = "M. A. Jenkins and J. I. Glasgow and C. McCrosky",
title = "Programming styles in {Nial}",
journal = IEEESE,
year = 1986,
month = Jan
}
%%% Others
@InProceedings{Busse88,
author = "T. Busse",
title = "{MPP} {Pascal}",
booktitle = "Proceedings, 2nd Symposium on Frontiers of Massively
Parallel Computing",
pages = "595--599",
year = 1988
}
@Article{Backus78,
author = "J. Backus",
title = "Can programming be liberated from the {von Neumann}
style? A functional style and its algebra of programs",
journal = CACM,
year = 1978,
volume = 21,
number = 8,
pages = "613--641",
month = Aug
}
@Misc{Fortran90,
author = "ANSI",
title = "{ANSI Fortran Draft S8, Version 111}"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% COMPILERS FOR DATA-PARALLEL LANGUAGES
%
@TechReport{Blelloch89,
key = {Blelloch89},
author = {Blelloch, Guy E.},
title = "Scan Primitives and Parallel Vector Models",
number = "MIT-LCS-TR-463",
institution = MITLCS,
month = oct,
year = 1989}
@Article{BlellochS90,
author = "Guy E. Blelloch and Gary W. Sabot",
title = "Compiling Collection-Oriented Languages onto Massively
Parallel Computers",
journal = "Journal of Parallel and Distributed Computing",
year = {1990},
volume = {8},
pages = "119--134"
}
@Book{HatcherQ91,
author = "Philip J. Hatcher and Michael J. Quinn",
title = "Data-Parallel Programming on {MIMD} Computers",
publisher = "MIT Press",
year = 1991,
series = "Scientific and Engineering Computation",
address = "Cambridge, Massachusetts"
}
@InProceedings{QuinnHJ88,
author = "Quinn, Michael J. and Hatcher, Philip J. and Jourdenais, Karen C.",
title = "Compiling {C*} Programs for a Hypercube Multicomputer",
booktitle = "Proceedings of the ACM/SIGPLAN PPEALS; Parallel Programming:
Experience with Applications, Languages and Systems",
pages = "57--65",
year = 1988,
address = "New Haven, CT",
month = jul # "~19--21,",
note = "Published as SIGPLAN Notices volume 23, number 9, September 1988."
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DATA-PARALLEL ALGORITHMS AND PROGRAMMING
%
@InProceedings{AgrawalBKP89,
author = "Ajit Agrawal and Guy E. Blelloch and Robert L. Krawitz and
Cynthia A. Phillips",
title = "Four Vector-Matrix Primitives",
booktitle = "Symposium on Parallel Algorithms and Architectures",
year = {1989},
pages = "292--302",
}
@InProceedings{ChatterjeeBZ90,
author = "Siddhartha Chatterjee and Guy E. Blelloch and Marco Zagha",
title = "Scan Primitives for Vector Computers",
booktitle = "Proc. Supercomputing '90",
year = "1990",
pages = "666--675",
organization = "IEEE Computer Society",
month = nov
}
@Article(HatcherQLSAJ91,
Author = { Hatcher, Philip J. and Quinn, Michael J. and Lapadula,
Anthony J. and Seevers, Bradley K. and Anderson, Ray J. and
Jones, Robert R.},
Title = "Data-Parallel Programming on {MIMD} Computers",
Journal = "IEEE Transactions on Parallel and Distributed Systems",
Year = 1991,
Month = jul,
volume = 2,
number = 3,
Pages = "377--383"
)
@Article(QuinnH90,
Author = "Quinn, Michael J. and Hatcher, Philip J.",
Title = "Data-Parallel Programming on Multicomputers",
Journal = IEEESoftware,
Year = 1990,
Month = sep,
Pages = "69--76"
)
@Article{HillisS86,
author = "W. Daniel Hillis and Guy L. {Steele Jr.}",
title = "Data Parallel Algorithms",
journal = CACM,
year = {1986},
volume = {29},
number = {12},
pages = "1170--1183",
month = Dec
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@article{alg:paralation-sv-lisp,
author = "Guy E. Blelloch and Gary W. Sabot",
title = "Compiling Collection-Oriented Languages Onto Massively Parallel
Computers",
journal = "Journal of Parallel and Distributed Computing",
year = 1990,
volume = "8",
number = "2",
pages = "119--134",
month = feb
}
%Also available from Thinking Machines as tech report TMC-144
%techniques for compiling paralation lisp into scan-vector lisp
@techreport{lang:paralation-views,
author = "Kenneth J. Goldman",
title = "Paralation Views: Abstractions for Efficient Scientific Computing
on the {Connection} {Machine}",
year = 1989,
month = jun,
Institution= MITLCS,
address = "Cambridge, Massachusetts 02139",
number = "TM-398"
}
% view the rows, cols of a matrix, more general stuff too.
@inproceedings{lang:cmf-compiler,
author = "Gary W. Sabot",
title = "Optimized {CM Fortran} Compiler for the {Connection Machine} Computer",
booktitle = "Proceedings of Hawaii International Conference on System Sciences 25",
year = 1992,
organization = "IEEE Computer Society",
pages = "161--172"
}
%compiler paper
%Also available from Thinking Machines as tech report TMC-219
@inproceedings{lang:bell-award,
author = "Gary Sabot and Lisa Tennies and Alex Vasilevsky and Richard
Shapiro",
title = "Compiler Parallelization of an Elliptic Grid Generator for 1990
{Gordon Bell Prize}",
booktitle = "Proceedings of Supercomputing '91",
year = 1991,
organization = "IEEE Computer Society",
pages = "338--346"
}
%speedup paper
%Also available from Thinking Machines as tech report TMC-218
@techreport{lang:sliceperf,
author = "Gary W. Sabot (with David Gingold and Janet Marantz)",
title = "{CM Fortran} Optimization Notes: Slicewise Model",
month = mar,
year = 1991,
number = "TMC-184",
Institution= "Thinking Machines Corporation",
address = "Cambridge, Massachusetts 02142"
}
%how to get performance out of the slicewise compiler
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DATA-PARALLEL ETC.
%
%% AM I MISSING AN AUTHOR HERE?
@TechReport{Darema-RogersGNP86,
author = "F. Darema-Rogers and V. A. Norton and G. F. Pfister",
title = "Using a single-program-multiple-data computational model
for parallel execution of scientific applications",
institution = "IBM",
year = "1986",
OPTcrossref = "",
OPTkey = "",
OPTtype = "",
number = "RC 11552",
address = "Yorktown Heights, New York",
month = Nov # "~12,",
note = "Revised version.",
OPTannote = ""
}
@TechReport{StoneDRNP,
author = "J. M. Stone and F. Darema-Rogers and A. Norton and G. F.
Pfister",
title = "The {VM/EPEX} {FORTRAN} Preprocessor Reference",
institution = "IBM",
year = "1985",
OPTcrossref = "",
OPTkey = "",
OPTtype = "",
number = "RC 11408",
address = "Yorktown Heights, New York",
OPTmonth = "",
OPTnote = "",
OPTannote = ""
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Parallel applications
%
@InProceedings{SabotTVS91,
author = "Gary Sabot and Lisa Tennies and Alex Vasilevsky and
Richard Shapiro",
title = "Compiler parallelization of an elliptic grid generator
for 1990 {Gordon Bell Prize}",
booktitle = "Proceedings, Supercomputing '91",
pages = "338--346",
year = 1991,
address = "Albuquerque, New Mexico",
month = Nov # "~18--22,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Gordon Bell Prize winners
%
@Article{DongarraKK88,
author = "Jack Dongarra and Alan Karp and Ken Kennedy",
title = "First {Gordon Bell Awards} winners achieve speedup of 400",
journal = IEEESoftware,
year = 1988,
volume = 5,
number = 3,
pages = "108--112",
month = May
}
@Article{BrowneDKKK89,
author = "Jim Browne and Jack Dongarra and Alan Karp and Ken
Kennedy and Dave Kuck",
title = "1988 {Gordon Bell Prize}",
journal = IEEESoftware,
year = 1989,
volume = 6,
number = 3,
pages = "78--85",
month = May
}
@Article{DongarraKK90,
author = "Jack Dongarra and Alan Karp and Ken Kennedy",
title = "1989 {Gordon Bell Prize}",
journal = IEEESoftware,
year = 1990,
volume = 7,
number = 3,
pages = "100--110",
month = May
}
@Article{DongarraKMS91a,
author = "Jack Dongarra and Alan H. Karp and Ken Miura and Horst Simon",
title = "1990 {Gordon Bell Prize} winners",
journal = IEEESoftware,
year = 1991,
volume = 8,
number = 3,
pages = "92--97",
month = May
}
@InProceedings{DongarraKMS91b,
author = "J. J. Dongarra and A. Karp and K. Miura and H. D. Simon",
title = "{Gordon Bell Prize} lectures",
booktitle = "Proceedings, Supercomputing '91",
pages = "328--337",
year = 1991,
address = "Albuquerque, New Mexico",
month = Nov # "~18--22,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Books on parallel programming
%
@Book{Quinn87,
author = "Quinn, Michael J.",
title = "Designing Efficient Algorithms for Parallel Computers",
publisher = "McGraw-Hill",
year = "1987",
address = "New York"
}
@Book{LakshimivarahanD90,
author = "S. Lakshimivarahan and Sudarshan K. Dhall",
title = "Analysis and Design of Parallel Algorithms: Arithmetic
and Matrix Problems",
publisher = "McGraw Hill",
year = 1990,
series = "Supercomputing and Parallel Processing",
address = "New York"
}
@Book{JaJa92,
author = "Joseph J\'aJ\'a",
title = "An Introduction to Parallel Algorithms",
publisher = "Addison-Wesley",
year = 1992,
address = "Reading, Massachusetts"
}
@Book{ChandyT92,
author = "K. Mani Chandy and Stephen Taylor",
title = "An Introduction to Parallel Programming",
publisher = "Jones and Bartlett",
year = 1992,
address = "Boston, Massachusetts"
}
@Book{KumarGK90,
editor = "Vipin Kumar and P. S. Gopalakrishnan and Laveen N. Kanal",
title = "Parallel Algorithms for Machine Intelligence and Vision",
publisher = "Springer-Verlag",
year = 1990,
series = "Symbolic Computation---Artificial Intelligence Series",
address = "New York"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Vision
%
@Book{Horn86,
author = "Berthold Klaus Paul Horn",
title = "Robot Vision",
publisher = "MIT Press",
year = 1986,
series = "MIT Electrical Engineering and Computer Science Series",
address = "Cambridge, Massachusetts"
}
@Book{HornB89,
editor = "Berthold K. P. Horn and Michael J. Brooks",
title = "Shape From Shading",
publisher = "MIT Press",
year = 1989,
series = "Artificial Intelligence",
address = "Cambridge, Massachusetts"
}
@Book{Pavlidis82,
author = "Theodosios Pavlidis",
title = "Algorithms for Graphics and Image Processing",
publisher = "Computer Science Press",
year = 1982,
address = "Rockville, Maryland"
}
@Article{HornS81,
author = "Berthold K. P. Horn and Brian G. Schunck",
title = "Determining Optical Flow",
journal = "Artificial Intelligence",
year = 1981,
volume = 17,
pages = "185--203"
}
@Article{Horn81,
author = "Berthold K. P. Horn",
title = "Hill shading and the reflectance map",
journal = "Proceedings of the IEEE",
year = 1981,