Dieses Angebot wurde verkauft am Mi, 27. Aug um 04:08.
Parallel and High Performance Computing by
Verkauft
Parallel and High Performance Computing by
US $40,20US $40,20
Mi, 27. Aug, 16:08Mi, 27. Aug, 16:08

Parallel and High Performance Computing by

Idaho Youth Ranch Books
(25062)
Angemeldet als gewerblicher Verkäufer
US $40,20
Ca.CHF 31,89
Artikelzustand:
Gut
    Versand:
    Kostenlos USPS Media MailTM.
    Standort: Boise, Idaho, USA
    Lieferung:
    Lieferung zwischen Di, 21. Okt und Fr, 24. Okt nach 94104 bei heutigem Zahlungseingang
    Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
    Rücknahme:
    30 Tage Rückgabe. Käufer zahlt Rückversand. Wenn Sie ein eBay-Versandetikett verwenden, werden die Kosten dafür von Ihrer Rückerstattung abgezogen.
    Zahlungen:
         Diners Club

    Sicher einkaufen

    eBay-Käuferschutz
    Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
    Der Verkäufer ist für dieses Angebot verantwortlich.
    eBay-Artikelnr.:387887930006
    Zuletzt aktualisiert am 27. Aug. 2025 12:36:17 MESZAlle Änderungen ansehenAlle Änderungen ansehen

    Der gesamte Erlös nach Abzug der Kosten geht an Idaho Youth Ranch, Inc.

    We unite for Idaho's youth by providing accessible programs and services that nurture hope, healing, and resilience.
    • Offizielles eBay für Charity-Angebot. Mehr erfahren
    • Verkauf zugunsten einer geprüften gemeinnützigen Partnerorganisation.

    Artikelmerkmale

    Artikelzustand
    Gut: Buch, das gelesen wurde, sich aber in einem guten Zustand befindet. Der Einband weist nur sehr ...
    Book Title
    Parallel and High Performance Computing
    ISBN
    9781617296468
    Kategorie

    Über dieses Produkt

    Product Identifiers

    Publisher
    Manning Publications Co. LLC
    ISBN-10
    1617296465
    ISBN-13
    9781617296468
    eBay Product ID (ePID)
    10050401732

    Product Key Features

    Number of Pages
    704 Pages
    Language
    English
    Publication Name
    Parallel and High Performance Computing
    Subject
    Programming Languages / C++, General, Programming Languages / C
    Publication Year
    2021
    Type
    Textbook
    Author
    Yuliana Zamora, Robert Robey
    Subject Area
    Mathematics, Computers
    Format
    Trade Paperback

    Dimensions

    Item Height
    1.6 in
    Item Weight
    44.4 Oz
    Item Length
    9.3 in
    Item Width
    7.3 in

    Additional Product Features

    LCCN
    2021-287739
    Dewey Edition
    23
    Illustrated
    Yes
    Dewey Decimal
    005.275
    Synopsis
    Parallel and High Performance Computing offers techniques guaranteed to boost your code's effectiveness. Summary Complex calculations, like training deep learning models or running large-scale simulations, can take an extremely long time. Efficient parallel programming can save hours--or even days--of computing time. Parallel and High Performance Computing shows you how to deliver faster run-times, greater scalability, and increased energy efficiency to your programs by mastering parallel techniques for multicore processor and GPU hardware. About the technology Write fast, powerful, energy efficient programs that scale to tackle huge volumes of data. Using parallel programming, your code spreads data processing tasks across multiple CPUs for radically better performance. With a little help, you can create software that maximizes both speed and efficiency. About the book Parallel and High Performance Computing offers techniques guaranteed to boost your code's effectiveness. You'll learn to evaluate hardware architectures and work with industry standard tools such as OpenMP and MPI. You'll master the data structures and algorithms best suited for high performance computing and learn techniques that save energy on handheld devices. You'll even run a massive tsunami simulation across a bank of GPUs. What's inside Planning a new parallel project Understanding differences in CPU and GPU architecture Addressing underperforming kernels and loops Managing applications with batch scheduling About the reader For experienced programmers proficient with a high-performance computing language like C, C++, or Fortran. About the author Robert Robey works at Los Alamos National Laboratory and has been active in the field of parallel computing for over 30 years. Yuliana Zamora is currently a PhD student and Siebel Scholar at the University of Chicago, and has lectured on programming modern hardware at numerous national conferences. Table of Contents PART 1 INTRODUCTION TO PARALLEL COMPUTING 1 Why parallel computing? 2 Planning for parallelization 3 Performance limits and profiling 4 Data design and performance models 5 Parallel algorithms and patterns PART 2 CPU: THE PARALLEL WORKHORSE 6 Vectorization: FLOPs for free 7 OpenMP that performs 8 MPI: The parallel backbone PART 3 GPUS: BUILT TO ACCELERATE 9 GPU architectures and concepts 10 GPU programming model 11 Directive-based GPU programming 12 GPU languages: Getting down to basics 13 GPU profiling and tools PART 4 HIGH PERFORMANCE COMPUTING ECOSYSTEMS 14 Affinity: Truce with the kernel 15 Batch schedulers: Bringing order to chaos 16 File operations for a parallel world 17 Tools and resources for better code, Complex calculations, like training deep learning models or running large-scale simulations, can take an extremely long time. Efficient parallel programming can save hours--or even days--of computing time. Parallel and High Performance Computing shows you how to deliver faster run-times, greater scalability, and increased energy efficiency to your programs by mastering parallel techniques for multicore processor and GPU hardware. about the technology Modern computing hardware comes equipped with multicore CPUs and GPUs that can process numerous instruction sets simultaneously. Parallel computing takes advantage of this now-standard computer architecture to execute multiple operations at the same time, offering the potential for applications that run faster, are more energy efficient, and can be scaled to tackle problems that demand large computational capabilities. But to get these benefits, you must change the way you design and write software. Taking advantage of the tools, algorithms, and design patterns created specifically for parallel processing is essential to creating top performing applications. about the book Parallel and High Performance Computing is an irreplaceable guide for anyone who needs to maximize application performance and reduce execution time. Parallel computing experts Robert Robey and Yuliana Zamora take a fundamental approach to parallel programming, providing novice practitioners the skills needed to tackle any high-performance computing project with modern CPU and GPU hardware. Get under the hood of parallel computing architecture and learn to evaluate hardware performance, scale up your resources to tackle larger problem sizes, and deliver a level of energy efficiency that makes high performance possible on hand-held devices. When you''re done, you''ll be able to build parallel programs that are reliable, robust, and require minimal code maintenance. This book is unique in its breadth, with discussions of parallel algorithms, techniques to successfully develop parallel programs, and wide coverage of the most effective languages for the CPU and GPU. The programming paradigms include MPI, OpenMP threading, and vectorization for the CPU. For the GPU, the book covers OpenMP and OpenACC directive-based approaches and the native-based CUDA and OpenCL languages. what''s inside Steps for planning a new parallel project Choosing the right data structures and algorithms Addressing underperforming kernels and loops The differences in CPU and GPU architecture about the reader For experienced programmers with proficiency in a high performance computing language such as C, C++, or Fortran. about the authors Robert Robey has been active in the field of parallel computing for over 30 years. He works at Los Alamos National Laboratory, and has previously worked at the University of New Mexico, where he started up the Albuquerque High Performance Computing Center. Yuliana Zamora has lectured on efficient programming of modern hardware at national conferences, based on her work developing applications running on tens of thousands of processing cores and the latest GPU architectures.
    LC Classification Number
    QA76.88

    Artikelbeschreibung des Verkäufers

    Info zu diesem Verkäufer

    Idaho Youth Ranch Books

    99,8% positive Bewertungen90 Tsd. Artikel verkauft

    Mitglied seit Jul 2019
    Angemeldet als gewerblicher Verkäufer
    The Idaho Youth Ranch is a registered 501c3 nonprofit organization. Sales help support life changing programs to young people struggling with trauma, abuse, or homelessness. Providing Healing & Hope, ...
    Mehr anzeigen
    Shop besuchenKontakt

    Detaillierte Verkäuferbewertungen

    Durchschnitt in den letzten 12 Monaten
    Genaue Beschreibung
    5.0
    Angemessene Versandkosten
    5.0
    Lieferzeit
    5.0
    Kommunikation
    5.0

    Beliebte Kategorien in diesem Shop

    Verkäuferbewertungen (26'216)

    Alle Bewertungenselected
    Positiv
    Neutral
    Negativ
    • n***m (690)- Bewertung vom Käufer.
      Letzte 6 Monate
      Bestätigter Kauf
      Great price and fast ship. Undamaged and clean hardcover w/no remainder marks in better condition than very good described. Only complaint is for the thin poly bag it shipped in but at this price that’s expected. I’m a repeat customer and recommend this seller if you want accurate descriptions and great pricing.
    • z***r (1469)- Bewertung vom Käufer.
      Letzte 6 Monate
      Bestätigter Kauf
      Great seller, exactly as pictured/described. quick shipping, well packaged. Books arrived in very, very good shape. A very good value for the price. Tracking numbers don't match...not sure why that is but it has to be the correct sale I am looking at. Anyway, book did arrive pretty quick and in good shape.
    • 2***4 (168)- Bewertung vom Käufer.
      Letzte 6 Monate
      Bestätigter Kauf
      Got a last season to a great series, MAGNUM P. I. season 8 for a great price. The seller shipped it out fast and well wrapped up. It arrived earlier than listed and in perfect condition as it was listed. Great seller, series and price.
    Alle Bewertungen ansehen