Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Hands-On GPU Computing with Python
Hands-On GPU Computing with Python

Hands-On GPU Computing with Python: Explore the capabilities of GPUs for solving high performance computational problems

Arrow left icon
Profile Icon Avimanyu Bandyopadhyay
Arrow right icon
Free Trial
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2 (1 Ratings)
Paperback May 2019 452 pages 1st Edition
eBook
₱1256.99 ₱1796.99
Paperback
₱2245.99
Subscription
Free Trial
Arrow left icon
Profile Icon Avimanyu Bandyopadhyay
Arrow right icon
Free Trial
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2 (1 Ratings)
Paperback May 2019 452 pages 1st Edition
eBook
₱1256.99 ₱1796.99
Paperback
₱2245.99
Subscription
Free Trial
eBook
₱1256.99 ₱1796.99
Paperback
₱2245.99
Subscription
Free Trial

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Hands-On GPU Computing with Python

Introducing GPU Computing

Many years ago, I used to think that a graphics processing unit (GPU), more commonly known as a graphics card, was just a device dedicated to playing video games on a computer at their maximum potential. But, one day, while going through a textbook (Advanced Computer Architecture by Kai Hwang), I realized that I was unaware of a world that goes way beyond PC gaming.

Without a doubt, most consumer GPUs are manufactured to achieve those amazing graphics and visuals to enable some spell-binding gameplay. But there's a world that explores its application a whole lot further, and that is the world of GPU computing.

In this chapter, we are going to learn the basic ideas behind GPU computing, a historical recap on computing, and the rise of GPU computing. We will also read about the simplicity of Python and the power of GPUs, and learn about the scope of...

The world of GPU computing beyond PC gaming

If you are a PC gamer, you must be very familiar with the world of graphics cards. Depending on their specifications, you might also be familiar with how each of them would affect your gaming experience. Let's explore extensively what lies beyond that domain through the subsequent sections in this chapter.

What is a GPU?

A GPU, as the initialism suggests, is an electronic circuit that serves as a processor for handling graphical information to output on a display. The scope of this book is to go beyond just handling graphical information and stepping into the general purpose computing with GPUs (GPGPU) arena. GPGPU is all about the use of what is typically performed with central...

Conventional CPU computing – before the advent of GPUs

Before GPUs arrived, general-purpose computing, as we know it, was only possible with CPUs, which were the first mainstream processors manufactured for both consumers as well as advanced computing enthusiasts.

Both computational and graphical processing were handled only by them. This meant that both the tasks of processing and handling computation of input and showing its corresponding computed output on a display were all handled by a CPU.

The history of general-purpose computing goes way back to the 1950s, before GPUs arrived and revolutionized the concept. The 1970s witnessed the rise of a new era, when the first commercial CPU, the Intel 4004, was released by Intel in 1971. The first AMD CPU was also launched in the 70s with the launch of AM2900 in 1975. There was no looking back, and a new cycle of CPU manufacturing...

How the gaming industry made GPU computing affordable for individuals

Gaming is over a $100 billion USD industry. But way back in the 1950s, video games were purely made for academic purposes. Video games were a medium to demonstrate the capabilities of a newly invented technology. They were also a good application to test AI applications through tic-tac-toe or chess. But access to such platforms was still limited to computer lab environments.

Spacewar became the first purpose-built computer game in 1962.

By the 1970s, the area of gaming started to change. Arcade gaming became very popular. The PC gaming landscape took proper shape in the 80s with programmable computers in almost every household equipped with popular games such as Super Mario Bros, Donkey Kong, Prince of Persia, and more.

The 90s saw the emergence of legendary games such as Doom and Quake, which radically changed...

The emergence of full-fledged GPU computing

From the first GPUs to the most powerful GPUs seen today, GPUs continue to make a noticeable mark upon society with limitless applications, as we are going to see in the The social impact of GPUs section of this chapter. For now, let's look into how GPU specifications evolved since they became available at much reduced costs, since the rise of the gaming industry.

GPU computing has massively grown in the last two decades with the creation of GPU application programmable interfaces (APIs) such as Compute Unified Device Architecture (CUDA) and OpenCL. These APIs allow the programmer to harness the parallel computational elements within the GPU.

Let's compare these two APIs:

CUDA OpenCL
CUDA has been specifically written for NVIDIA GPU architecture. OpenCL is not architecture-specific and is more commonly known as a computing...

The simplicity of Python code and the power of GPUs – a dual advantage

Python is a programming language with syntax that is very easy to grasp and understand, especially for computational analysts from backgrounds other than computer science. Due to this reason, it is adopted quite whole-heartedly throughout the entire research community in the world. When we also consider the powerful computational capabilities of GPUs, a dual advantage is clearly noticeable, when combined with the simplistic nature of Python syntax.

The C language – a short prologue

The C language was created as a procedural and structured programming language, developed between 1969 and 1973 at AT&T Bell Labs by Dennis M. Ritchie. As...

How GPUs empower science and AI in current times

NVIDIA RAPIDS is a very recent example of using an open source system to carry out research related to science, AI, and other fields. There are numerous examples of research work in science that has been empowered by GPU acceleration. Let's understand its significance through some of these amazing research examples.

Bioinformatics workflow management

The following research paper is discussed in this section: Managing Complex Workflows in Bioinformatics: An Interactive Toolkit With GPU Acceleration, A Welivita, I Perera, D Meedeniya, A Wickramarachchi, V Mallawaarachchi (2018), IEEE Transactions on NanoBioscience, 17(3), 199-208, doi:10.1109/tnb.2018.2837122.

BioWorkflow...

The social impact of GPUs

Big data is everywhere and so datasets are also everywhere, meaning that GPUs and AI can be applied to any other computational field. Since we have already discussed how GPUs can contribute in science and AI, let's read about some more examples in other fields that reveal more about how GPUs can contribute to our society.

We are going to discuss some diverse fields here, but, of course, there are no limits!

Archaeological restoration/reconstruction

The following research paper is discussed in this section: Automated GPU-Based Surface Morphology Reconstruction of Volume Data for Archaeology, D Jungblut, S Karl, H Mara, S Krömker, G Wittum (2012), Contributions in Mathematical and Computational...

Summary

In this chapter, we learned about the basic concepts behind GPU computing, the history behind its evolution, and its scope of use in diverse fields. We also learned about the simplicity of Python syntax and why this simplicity can be of great significance when harnessing GPUs for computational work. In the final section, we looked at the uses of GPU applications beyond just science and AI, and we looked at various fields, such as archaeology, weather, music, sports, art, security, agriculture, and economics.

If you are a gamer and/or a computing enthusiast, from now on, you will be able to better understand the computational aspect of GPUs and Python code. The various fields of applications that were discussed in the later sections of this chapter will now allow you to have a general idea about the limitless areas in which you can create your own GPU applications. GPU...

Further reading

You can read the following research papers and articles to gain more knowledge about the topics that were discussed in this chapter:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Understand effective synchronization strategies for faster processing using GPUs
  • Write parallel processing scripts with PyCuda and PyOpenCL
  • Learn to use CUDA libraries such as CuDNN for deep learning on GPUs

Description

GPUs are proving to be excellent general purpose-parallel computing solutions for high-performance tasks such as deep learning and scientific computing. This book will be your guide to getting started with GPU computing. It begins by introducing GPU computing and explaining the GPU architecture and programming models. You will learn, by example, how to perform GPU programming with Python, and look at using integrations such as PyCUDA, PyOpenCL, CuPy, and Numba with Anaconda for various tasks such as machine learning and data mining. In addition to this, you will get to grips with GPU workflows, management, and deployment using modern containerization solutions. Toward the end of the book, you will get familiar with the principles of distributed computing for training machine learning models and enhancing efficiency and performance. By the end of this book, you will be able to set up a GPU ecosystem for running complex applications and data models that demand great processing capabilities, and be able to efficiently manage memory to compute your application effectively and quickly.

Who is this book for?

Data scientists, machine learning enthusiasts, or professionals who want to get started with GPU computation and perform the complex tasks with low-latency will find this book useful. Intermediate knowledge of Python programming is assumed.

What you will learn

  • Utilize Python libraries and frameworks for GPU acceleration
  • Set up a GPU-enabled programmable machine learning environment on your system with Anaconda
  • Deploy your machine learning system on cloud containers with illustrated examples
  • Explore PyCUDA and PyOpenCL and compare them with platforms such as CUDA, OpenCL, and ROCm.
  • Perform data mining tasks with machine learning models on GPUs
  • Extend your knowledge of GPU computing in scientific applications

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 14, 2019
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781789341072
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : May 14, 2019
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781789341072
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 7,553.97
Hands-On GPU Programming with Python and CUDA
₱2500.99
Hands-On GPU-Accelerated Computer Vision with OpenCV and CUDA
₱2806.99
Hands-On GPU Computing with Python
₱2245.99
Total 7,553.97 Stars icon
Banner background image

Table of Contents

15 Chapters
Section 1: Computing with GPUs Introduction, Fundamental Concepts, and Hardware Chevron down icon Chevron up icon
Introducing GPU Computing Chevron down icon Chevron up icon
Designing a GPU Computing Strategy Chevron down icon Chevron up icon
Setting Up a GPU Computing Platform with NVIDIA and AMD Chevron down icon Chevron up icon
Section 2: Hands-On Development with GPU Programming Chevron down icon Chevron up icon
Fundamentals of GPU Programming Chevron down icon Chevron up icon
Setting Up Your Environment for GPU Programming Chevron down icon Chevron up icon
Working with CUDA and PyCUDA Chevron down icon Chevron up icon
Working with ROCm and PyOpenCL Chevron down icon Chevron up icon
Working with Anaconda, CuPy, and Numba for GPUs Chevron down icon Chevron up icon
Section 3: Containerization and Machine Learning with GPU-Powered Python Chevron down icon Chevron up icon
Containerization on GPU-Enabled Platforms Chevron down icon Chevron up icon
Accelerated Machine Learning on GPUs Chevron down icon Chevron up icon
GPU Acceleration for Scientific Applications Using DeepChem Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
(1 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 100%
1 star 0%
Arthur Lau Jun 06, 2019
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
This is a book about GPU computing, NOT programming.No GPU/Python programming concepts and skills are shown.Most importantly, this book lacks in focus. Too much facts,but no much useful information, concepts or skills are introduced.The first 30% of the book is allocated to the history of CPU and GPU.Starting from 4004 CPU from early days... Although the history is clear and well written,it does not help in improving your GPU computing or programming work.Readers better skip the first 30%.Furthermore, there is no need to list different combinations of building a computer withIntel CPU, AMD CPU, Nvdia GPU, Radeon, at entry-level, at middle level and at high-end level.CUDA, PyCUDA and other modules are included but explained briefly with 2 to 4 paragraphs.Some paragraphs are dedicated to help the reader install the relevant libraries.Some reader may find it helpful. There are examples at the end of the book demonstrating Pytorchand another module. They are practical.If you are are looking for introduction to GPU computing,there are other short and good books which help you to buildup concepts about GPU computing and machine learning.If you are looking for concepts and skills in improving your programming.It is NOT the book for you.Better have a look at a sample of this book and realize what I am talking.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.