|
|
|
|
LEADER |
00000cam a2200000Ma 4500 |
001 |
EBOOKCENTRAL_ocn933442910 |
003 |
OCoLC |
005 |
20240329122006.0 |
006 |
m o d |
007 |
cr |n||||||||| |
008 |
151225s2015 xx ob 001 0 eng d |
040 |
|
|
|a IDEBK
|b eng
|e pn
|c IDEBK
|d EBLCP
|d CHVBK
|d OCLCO
|d RECBK
|d OCLCQ
|d DEBBG
|d AU@
|d LOA
|d OCLCQ
|d DXU
|d OCLCQ
|d MERUC
|d COCUF
|d K6U
|d CCO
|d PIFAG
|d FVL
|d ZCU
|d OCLCF
|d OCLCQ
|d ICG
|d OCLCQ
|d DKC
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d OCLCL
|
019 |
|
|
|a 966297040
|a 975828514
|
020 |
|
|
|a 1118761723
|q (ebk)
|
020 |
|
|
|a 9781118761724
|q (ebk)
|
020 |
|
|
|a 9781118761717
|q (e-book)
|
020 |
|
|
|a 1118761715
|q (e-book)
|
020 |
|
|
|z 1848215819
|
020 |
|
|
|z 1118761715
|
020 |
|
|
|z 9781118761687
|
029 |
1 |
|
|a AU@
|b 000059222044
|
029 |
1 |
|
|a CHNEW
|b 000894027
|
029 |
1 |
|
|a DEBBG
|b BV044059179
|
035 |
|
|
|a (OCoLC)933442910
|z (OCoLC)966297040
|z (OCoLC)975828514
|
037 |
|
|
|a 881795
|b MIL
|
050 |
|
4 |
|a QA76.58
|b .M346 2016
|
082 |
0 |
4 |
|a 004/.35
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Magoulès, F.
|q (Frédéric)
|1 https://id.oclc.org/worldcat/entity/E39PCjyr89c6Bk6tYHTcC8gvpd
|
245 |
1 |
0 |
|a Parallel Scientific Computing.
|
260 |
|
|
|b Wiley,
|c 2015.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
0 |
|
|a Iste
|
588 |
0 |
|
|a Print version record.
|
520 |
|
|
|a Scientific computing has become an indispensable tool in numerous fields, such as physics, mechanics, biology, finance and industry. For example, it enables us, thanks to efficient algorithms adapted to current computers, tosimulate, without the help of models or experimentations, the deflection of beams in bending, the sound level in a theater room or a fluid flowing around an aircraft wing. This book presents the scientific computing techniques applied to parallel computing for the numerical simulation of large-scale problems; these problems result from systems modeled by partial differential equations. Computing concepts will be tackled via examples. Implementation and programming techniques resulting from the finite element method will be presented for direct solvers, iterative solvers and domain decomposition methods, along with an introduction to MPI and OpenMP.
|
504 |
|
|
|a Includes bibliographical references and index.
|
505 |
0 |
|
|a Table of Contents -- Title -- Copyright -- Preface -- Introduction -- 1 Computer Architectures -- 1.1. Different types of parallelism -- 1.2. Memory architecture -- 1.3. Hybrid architecture -- 2 Parallelization and Programming Models -- 2.1. Parallelization -- 2.2. Performance criteria -- 2.3. Data parallelism -- 2.4. Vectorization: a case study -- 2.5. Message-passing -- 2.6. Performance analysis -- 3 Parallel Algorithm Concepts -- 3.1. Parallel algorithms for recurrences -- 3.2. Data locality and distribution: product of matrices -- 4 Basics of Numerical Matrix Analysis -- 4.1. Review of basic notions of linear algebra -- 4.2. Properties of matrices -- 5 Sparse Matrices -- 5.1. Origins of sparse matrices -- 5.2. Parallel formation of sparse matrices: shared memory -- 5.3. Parallel formation by block of sparse matrices: distributed memory -- 6 Solving Linear Systems -- 6.1. Direct methods -- 6.2. Iterative methods -- 7 LU Methods for Solving Linear Systems -- 7.1. Principle of LU decomposition -- 7.2. Gauss factorization -- 7.3. Gauss-Jordan factorization -- 7.4. Crout and Cholesky factorizations for symmetric matrices -- 8 Parallelization of LU Methods for Dense Matrices -- 8.1. Block factorization -- 8.2. Implementation of block factorization in a message-passing environment -- 8.3. Parallelization of forward and backward substitutions -- 9 LU Methods for Sparse Matrices -- 9.1. Structure of factorized matrices -- 9.2. Symbolic factorization and renumbering -- 9.3. Elimination trees -- 9.4. Elimination trees and dependencies -- 9.5. Nested dissections -- 9.6. Forward and backward substitutions -- 10 Basics of Krylov Subspaces -- 10.1. Krylov subspaces -- 10.2. Construction of the Arnoldi basis -- 11 Methods with Complete Orthogonalization for Symmetric Positive Definite Matrices -- 11.1. Construction of the Lanczos basis for symmetric matrices.
|
505 |
8 |
|
|a 11.2. The Lanczos method -- 11.3. The conjugate gradient method -- 11.4. Comparison with the gradient method -- 11.5. Principle of preconditioning for symmetric positive definite matrices -- 12 Exact Orthogonalization Methods for Arbitrary Matrices -- 12.1. The GMRES method -- 12.2. The case of symmetric matrices: the MINRES method -- 12.3. The ORTHODIR method -- 12.4. Principle of preconditioning for non-symmetric matrices -- 13 Biorthogonalization Methods for Non-symmetric Matrices -- 13.1. Lanczos biorthogonal basis for non-symmetric matrices -- 13.2. The non-symmetric Lanczos method -- 13.3. The biconjugate gradient method: BiCG -- 13.4. The quasi-minimal residual method: QMR -- 13.5. The BiCGSTAB -- 14 Parallelization of Krylov Methods -- 14.1. Parallelization of dense matrix-vector product -- 14.2. Parallelization of sparse matrix-vector product based on node sets -- 14.3. Parallelization of sparse matrix-vector product based on element sets -- 14.4. Parallelization of the scalar product -- 14.5. Summary of the parallelization of Krylov methods -- 15 Parallel Preconditioning Methods -- 15.1. Diagonal -- 15.2. Incomplete factorization methods -- 15.3. Schur complement method -- 15.4. Algebraic multigrid -- 15.5. The Schwarz additive method of preconditioning -- 15.6. Preconditioners based on the physics -- Appendices -- Appendix 1: Exercises -- A1.1. Parallelization techniques -- A1.2. Matrix analysis -- A1.3. Direct methods -- A1.4. Iterative methods -- A1.5. Domain decomposition methods -- Appendix 2: Solutions -- A2.1. Parallelization techniques -- A2.2. Matrix analysis -- A2.3. Direct methods -- A2.4. Iterative methods -- A2.5. Domain decomposition methods -- Appendix 3: Bibliography and Comments -- A3.1. Parallel algorithms -- A3.2. OpenMP -- A3.3. MPI -- A3.4. Performance tools -- A3.5. Numerical analysis and methods.
|
505 |
8 |
|
|a A3.6. Finite volume method -- A3.7. Finite element method -- A3.8. Matrix analysis -- A3.9. Direct methods -- A3.10. Iterative methods -- A3.11. Mesh and graph partitioning -- A3.12. Domain decomposition methods -- Bibliography -- Index -- End User License Agreement.
|
590 |
|
|
|a ProQuest Ebook Central
|b Ebook Central Academic Complete
|
650 |
|
0 |
|a Parallel processing
|x Industrial applications.
|
650 |
|
0 |
|a Parallel algorithms
|x Industrial applications.
|
650 |
|
0 |
|a Industrial engineering
|x Mathematics.
|
650 |
|
6 |
|a Algorithmes parallèles
|x Applications industrielles.
|
650 |
|
7 |
|a COMPUTERS
|x Computer Engineering.
|2 bisacsh
|
650 |
|
7 |
|a Industrial engineering
|x Mathematics
|2 fast
|
758 |
|
|
|i has work:
|a Parallel scientific computing (Text)
|1 https://id.oclc.org/worldcat/entity/E39PCFRvCwGkMrBppXfqwPd7tq
|4 https://id.oclc.org/worldcat/ontology/hasWork
|
776 |
0 |
8 |
|i Erscheint auch als:
|n Druck-Ausgabe
|t Magoulès, Frédéric. Parallel scientific computing
|
856 |
4 |
0 |
|u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4205695
|z Texto completo
|
938 |
|
|
|a EBL - Ebook Library
|b EBLB
|n EBL4205695
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis28257311
|
938 |
|
|
|a Recorded Books, LLC
|b RECE
|n rbeEB00665383
|
994 |
|
|
|a 92
|b IZTAP
|