Book Image

Python High Performance Programming

By : Dr. Gabriele Lanaro
Book Image

Python High Performance Programming

By: Dr. Gabriele Lanaro

Overview of this book

<p>Python is a programming language with a vibrant community known for its simplicity, code readability, and expressiveness. The massive selection of third party libraries make it suitable for a wide range of applications. This also allows programmers to express concepts in fewer lines of code than would be possible in similar languages. The availability of high quality numerically-focused tools has made Python an excellent choice for high performance computing. The speed of applications comes down to how well the code is written. Poorly written code means poorly performing applications, which means unsatisfied customers.</p> <p>This book is an example-oriented guide to the techniques used to dramatically improve the performance of your Python programs. It will teach optimization techniques by using pure python tricks, high performance libraries, and the python-C integration. The book will also include a section on how to write and run parallel code.</p> <p>This book will teach you how to take any program and make it run much faster. You will learn state-of the art techniques by applying them to practical examples. This book will also guide you through different profiling tools which will help you identify performance issues in your program. You will learn how to speed up your numerical code using NumPy and Cython. The book will also introduce you to parallel programming so you can take advantage of modern multi-core processors.</p> <p>This is the perfect guide to help you achieve the best possible performance in your Python applications.</p>
Table of Contents (11 chapters)

IPython parallel


IPython's power is not limited to its advanced shell. Its parallel package includes a framework to setup and run calculations on single and multi-core machines, as well as on multiple nodes connected to a network. IPython is great because it gives an interactive twist to parallel computing and provides a common interface to different communication protocols.

To use IPython.parallel, you have to start a set of workers— Engines—that are managed by a Controller (an entity that mediates the communication between the client and the engines). The approach is totally different from multiprocessing; you start the worker processes separately, and they will wait indefinitely, listening for commands from the client.

To start the controller and a set of engines (by default, one engine per processing unit) you can use the ipcluster shell command, as follows:

$ ipcluster start

With ipcluster you can also set up multiple nodes to distribute your calculations over a network by writing a...