Book Image

High Performance Scientific Computing with C [Video]

By : Benjamin Walter Keller
Book Image

High Performance Scientific Computing with C [Video]

By: Benjamin Walter Keller

Overview of this book

<p>In this course, you’ll learn to develop scientific and numerical programs that solve problems. It’s ideal for scientists, engineers, and programmers who need to model mathematical or physical systems. You’ll get a core toolkit of algorithms that can be used in a wide variety of applications, using the low-level capabilities of the C programming language.</p> <p>The close-to-the-metal approach means you’ll learn to optimize our programs to get the absolute best performance that our hardware can provide. You’ll see how the design of algorithms affects their performance and accuracy, the tools that can be used to optimize your code and develop your intuition about numerical problems. Finally, you’ll examine the growing array of parallel solutions that enable you to take advantage of multi-core CPUs, distributed compute clusters and GPU accelerators.</p> <p>By the end of this course, you’ll know how to write fast, accurate code that can run on many different platforms and solve many different scientific problems.</p> <p>The code bundle for this video course is available at- https://github.com/PacktPublishing/High-Performance-Scientific-Computing-With-C</p> <h1>Style and Approach</h1> <p>A hands-on step-by-step approach that will take you through the important concepts of scientific and numerical computing with C.</p>
Table of Contents (4 chapters)
Chapter 4
Accelerating Code with Parallel and Distributed Computing
Content Locked
Section 3
Distributed Memory Parallelism with MPI
How can we extend our codes across multiple machines? What do we need to use MPI? - Learn how to add MPI communication to our code - Learn how to launch mpiprograms with mpirun - See how to use mpirun to distribute our code across multiple machines