Scientific parallel computing:
Gespeichert in:
Beteiligte Personen: | , , |
---|---|
Format: | Buch |
Sprache: | Englisch |
Veröffentlicht: |
Princeton, NJ [u.a.]
Princeton Univ. Press
2005
|
Schlagwörter: | |
Links: | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=013129440&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
Umfang: | XIV, 374 S. graph. Darst. |
ISBN: | 069111935X |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV019803914 | ||
003 | DE-604 | ||
005 | 20060908 | ||
007 | t| | ||
008 | 050509s2005 xx d||| |||| 00||| eng d | ||
020 | |a 069111935X |9 0-691-11935-X | ||
035 | |a (OCoLC)254584615 | ||
035 | |a (DE-599)BVBBV019803914 | ||
040 | |a DE-604 |b ger |e rakwb | ||
041 | 0 | |a eng | |
049 | |a DE-703 |a DE-91G |a DE-20 |a DE-11 | ||
050 | 0 | |a QA76.58 | |
082 | 0 | |a 004.35 | |
084 | |a ST 151 |0 (DE-625)143595: |2 rvk | ||
084 | |a ST 200 |0 (DE-625)143611: |2 rvk | ||
084 | |a DAT 516f |2 stub | ||
084 | |a DAT 216f |2 stub | ||
100 | 1 | |a Scott, L. Ridgway |e Verfasser |0 (DE-588)124153356 |4 aut | |
245 | 1 | 0 | |a Scientific parallel computing |c L. Ridgway Scott ; Terry Clark ; Babak Bagheri |
264 | 1 | |a Princeton, NJ [u.a.] |b Princeton Univ. Press |c 2005 | |
300 | |a XIV, 374 S. |b graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 4 | |a Parallelverarbeitung - Wissenschaftliches Rechnen | |
650 | 4 | |a Parallel processing (Electronic computers) | |
650 | 0 | 7 | |a Parallelverarbeitung |0 (DE-588)4075860-6 |2 gnd |9 rswk-swf |
655 | 7 | |0 (DE-588)4151278-9 |a Einführung |2 gnd-content | |
689 | 0 | 0 | |a Parallelverarbeitung |0 (DE-588)4075860-6 |D s |
689 | 0 | |5 DE-604 | |
700 | 1 | |a Clark, Terry |e Verfasser |4 aut | |
700 | 1 | |a Bagheri, Babak |e Verfasser |4 aut | |
856 | 4 | 2 | |m GBV Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=013129440&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-013129440 |
Datensatz im Suchindex
DE-BY-TUM_call_number | 0102 DAT 216f 2006 B 2477 |
---|---|
DE-BY-TUM_katkey | 1538901 |
DE-BY-TUM_location | 01 |
DE-BY-TUM_media_number | 040010810792 |
_version_ | 1821932992091652097 |
adam_text | SCIENTIFIC PARALLEL COMPUTING L. RIDGWAY SCOTT TERRY CLARK BABAK BAGHERI
PRINCETON UNIVERSITY PRESS PRINCETON AND OXFORD CONTENTS PREFACE IX
NOTATION XIII CHAPTER 1. INTRODUCTION 1 1.1 OVERVIEW L 1.2 WHAT IS
PARALLEL COMPUTING? 3 1.3 PERFORMANCE 4 1.4 WHY PARALLEL? 11 1.5 TWO
SIMPLE EXAMPLES 15 1.6 MESH-BASED APPLICATIONS 24 1.7 PARALLEL
PERSPECTIVES 30 1.8 EXERCISES 33 CHAPTER 2. PARALLEL PERFORMANCE 37 2.1
SUMMATION EXAMPLE 37 2.2 PERFORMANCE MEASURES 38 2.3 LIMITS TO
PERFORMANCE 44 2.4 SCALABILITY 48 2.5 PARALLEL PERFORMANCE ANALYSIS 56
2.6 PARALLEL PAYOFF 59 2.7 REAL WORLD PARALLELISM 64 2.8 STARTING SPMD
PROGRAMMING 66 2.9 EXERCISES 66 CHAPTER 3. COMPUTER ARCHITECTURE 71 3.1
PMS NOTATION 71 3.2 SHARED MEMORY MULTIPROCESSOR 75 3.3 DISTRIBUTED
MEMORY MULTICOMPUTER 79 3.4 PIPELINE AND VECTOR PROCESSORS 87 3.5
COMPARISON OF PARALLEL ARCHITECTURES 89 3.6 TAXONOMIES 92 3.7 CURRENT
TRENDS 94 3.8 EXERCISES 95 VI CONTENTS CHAPTER 4. DEPENDENCES 99 4.1
DATA DEPENDENCES 100 4.2 LOOP-CARRIED DATA DEPENDENCES 103 4.3
DEPENDENCE EXAMPLES 110 4.4 TESTING FOR LOOP-CARRIED DEPENDENCES 112 4.5
LOOP TRANSFORMATIONS 114 4.6 DEPENDENCE EXAMPLES CONTINUED 120 4.7
EXERCISES 123 CHAPTER 5. PARALLEL LANGUAGES 127 5.1 CRITICAL FACTORS 129
5.2 COMMAND AND CONTROL 134 5.3 MEMORY MODELS 136 5.4 SHARED MEMORY
PROGRAMMING 139 5.5 MESSAGE PASSING 143 5.6 EXAMPLES AND COMMENTS 148
5.7 PARALLEL LANGUAGE DEVELOPMENTS 153 5.8 EXERCISES 154 CHAPTER 6.
COLLECTIVE OPERATIONS 157 6.1 THE @ NOTATION 157 6.2 TREE/RING
ALGORITHMS 158 6.3 REDUCTION OPERATIONS 162 6.4 REDUCTION OPERATION
APPLICATIONS 164 6.5 PARALLEL PREFIX ALGORITHMS 168 6.6 PERFORMANCE OF
REDUCTION OPERATIONS 169 6.7 DATA MOVEMENT OPERATIONS 173 6.8 EXERCISES
174 CHAPTER 7. CURRENT PROGRAMMING STANDARDS 177 7.1 INTRODUCTION TO MPI
177 7.2 COLLECTIVE OPERATIONS IN MPI 181 7.3 INTRODUCTION TO POSIX
THREADS 184 7.4 EXERCISES 187 CHAPTER 8. THE PLANGUAGE MODEL 191 8.1
PLANGUAGE DETAILS 192 8.2 RANGES AND ARRAYS 198 8.3 REDUCTION OPERATIONS
IN PFORTRAN 200 8.4 INTRODUCTION TO PC 204 8.5 REDUCTION OPERATIONS IN
PC 206 8.6 PLANGUAGES VERSUS MESSAGE PASSING 207 8.7 EXERCISES 208
CONTENTS VII CHAPTER 9. HIGH PERFORMANCE FORTRAN 213 9.1 HPF DATA
DISTRIBUTION DIRECTIVES 214 9.2 OTHER MECHANISMS FOR EXPRESSING
CONCURRENCY 219 9.3 COMPILING HPF 220 9.4 HPF COMPARISONS AND REVIEW 221
9.5 EXERCISES 222 CHAPTER 10. LOOP TILING 227 10.1 LOOP TILING 227 10.2
WORK VS. DATA DECOMPOSITION 228 10.3 TILING IN OPENMP 228 10.4 TEAMS 232
10.5 PARALLEL REGIONS 233 10.6 EXERCISES 234 CHAPTER 11. MATRIX EIGEN
ANALYSIS 237 11.1 THE LESLIE MATRIX MODEL 237 11.2 THE POWER METHOD 242
11.3 A PARALLEL LESLIE MATRIX PROGRAM 244 11.4 MATRIX-VECTOR PRODUCT 249
11.5 POWER METHOD APPLICATIONS 251 11.6 EXERCISES 253 CHAPTER 12. LINEAR
SYSTEMS 257 12.1 GAUSSIAN ELIMINATION 257 12.2 SOLVING TRIANGULAR
SYSTEMS IN PARALLEL 262 12.3 DIVIDE-AND-CONQUER ALGORITHMS 271 12.4
EXERCISES 277 12.5 PROJECTS 281 CHAPTER 13. PARTICLE DYNAMICS 283 13.1
MODEL ASSUMPTIONS 284 13.2 USING NEWTON S THIRD LAW 285 13.3 FURTHER
CODE COMPLICATIONS 288 13.4 PAIR LIST GENERATION 290 13.5 FORCE
CALCULATION WITH A PAIR LIST 296 13.6 PERFORMANCE OF REPLICATION
ALGORITHM 299 13.7 CASE STUDY: PARTICLE DYNAMICS IN HPF 302 13.8
EXERCISES 307 13.9 PROJECTS 310 CHAPTER 14. MESH METHODS ^ 315 14.1
BOUNDARY VALUE PROBLEMS 315 VLII CONTENTS 14.2 ITERATIVE METHODS 319
14.3 MULTIGRID METHODS 322 14.4 MULTIDIMENSIONAL PROBLEMS 327 14.5
INITIAL VALUE PROBLEMS 328 14.6 EXERCISES 333 14.7 PROJECTS 334 CHAPTER
15. SORTING 335 15.1 INTRODUCTION 335 15.2 PARALLEL SORTING 337 15.3
SPATIAL SORTING 342 15.4 EXERCISES 353 15.5 PROJECTS 355 BIBLIOGRAPHY
357 INDEX 369
|
any_adam_object | 1 |
author | Scott, L. Ridgway Clark, Terry Bagheri, Babak |
author_GND | (DE-588)124153356 |
author_facet | Scott, L. Ridgway Clark, Terry Bagheri, Babak |
author_role | aut aut aut |
author_sort | Scott, L. Ridgway |
author_variant | l r s lr lrs t c tc b b bb |
building | Verbundindex |
bvnumber | BV019803914 |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.58 |
callnumber-search | QA76.58 |
callnumber-sort | QA 276.58 |
callnumber-subject | QA - Mathematics |
classification_rvk | ST 151 ST 200 |
classification_tum | DAT 516f DAT 216f |
ctrlnum | (OCoLC)254584615 (DE-599)BVBBV019803914 |
dewey-full | 004.35 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 004 - Computer science |
dewey-raw | 004.35 |
dewey-search | 004.35 |
dewey-sort | 14.35 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01670nam a2200433 c 4500</leader><controlfield tag="001">BV019803914</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20060908 </controlfield><controlfield tag="007">t|</controlfield><controlfield tag="008">050509s2005 xx d||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">069111935X</subfield><subfield code="9">0-691-11935-X</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)254584615</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV019803914</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakwb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-703</subfield><subfield code="a">DE-91G</subfield><subfield code="a">DE-20</subfield><subfield code="a">DE-11</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA76.58</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">004.35</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 151</subfield><subfield code="0">(DE-625)143595:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 200</subfield><subfield code="0">(DE-625)143611:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 516f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 216f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Scott, L. Ridgway</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)124153356</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Scientific parallel computing</subfield><subfield code="c">L. Ridgway Scott ; Terry Clark ; Babak Bagheri</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Princeton, NJ [u.a.]</subfield><subfield code="b">Princeton Univ. Press</subfield><subfield code="c">2005</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XIV, 374 S.</subfield><subfield code="b">graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Parallelverarbeitung - Wissenschaftliches Rechnen</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Parallel processing (Electronic computers)</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Parallelverarbeitung</subfield><subfield code="0">(DE-588)4075860-6</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="655" ind1=" " ind2="7"><subfield code="0">(DE-588)4151278-9</subfield><subfield code="a">Einführung</subfield><subfield code="2">gnd-content</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Parallelverarbeitung</subfield><subfield code="0">(DE-588)4075860-6</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Clark, Terry</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Bagheri, Babak</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">GBV Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=013129440&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-013129440</subfield></datafield></record></collection> |
genre | (DE-588)4151278-9 Einführung gnd-content |
genre_facet | Einführung |
id | DE-604.BV019803914 |
illustrated | Illustrated |
indexdate | 2024-12-20T12:06:13Z |
institution | BVB |
isbn | 069111935X |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-013129440 |
oclc_num | 254584615 |
open_access_boolean | |
owner | DE-703 DE-91G DE-BY-TUM DE-20 DE-11 |
owner_facet | DE-703 DE-91G DE-BY-TUM DE-20 DE-11 |
physical | XIV, 374 S. graph. Darst. |
publishDate | 2005 |
publishDateSearch | 2005 |
publishDateSort | 2005 |
publisher | Princeton Univ. Press |
record_format | marc |
spellingShingle | Scott, L. Ridgway Clark, Terry Bagheri, Babak Scientific parallel computing Parallelverarbeitung - Wissenschaftliches Rechnen Parallel processing (Electronic computers) Parallelverarbeitung (DE-588)4075860-6 gnd |
subject_GND | (DE-588)4075860-6 (DE-588)4151278-9 |
title | Scientific parallel computing |
title_auth | Scientific parallel computing |
title_exact_search | Scientific parallel computing |
title_full | Scientific parallel computing L. Ridgway Scott ; Terry Clark ; Babak Bagheri |
title_fullStr | Scientific parallel computing L. Ridgway Scott ; Terry Clark ; Babak Bagheri |
title_full_unstemmed | Scientific parallel computing L. Ridgway Scott ; Terry Clark ; Babak Bagheri |
title_short | Scientific parallel computing |
title_sort | scientific parallel computing |
topic | Parallelverarbeitung - Wissenschaftliches Rechnen Parallel processing (Electronic computers) Parallelverarbeitung (DE-588)4075860-6 gnd |
topic_facet | Parallelverarbeitung - Wissenschaftliches Rechnen Parallel processing (Electronic computers) Parallelverarbeitung Einführung |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=013129440&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT scottlridgway scientificparallelcomputing AT clarkterry scientificparallelcomputing AT bagheribabak scientificparallelcomputing |
Inhaltsverzeichnis
Paper/Kapitel scannen lassen
Paper/Kapitel scannen lassen
Teilbibliothek Mathematik & Informatik
Signatur: |
0102 DAT 216f 2006 B 2477 Lageplan |
---|---|
Exemplar 1 | Ausleihbar Am Standort |