chapter nine
This chapter covers:
- How GPU architectures can help with many data analysis algorithms
- Using Numba to convert Python code to efficient GPU low-level code
- Writing highly parallel GPU code to work on common data science structures like matrices
- Using GPU-native data analysis libraries from Python
Graphics Processing Units - GPUs - were originally designed to make graphics applications more efficient: drawing and animation software, Computer Aided Design and, of course, games!
At some point, it became clear that GPUs could not only do graphics processing, but could also be used to do all kinds of computing, hence the appearance of GPGPUs - General Purpose computing on Graphics Processing Units. GPUs are attractive because they have substantially more computing power than CPUs. They have been successfully used for many applications like scientific computing, crypto, and artificial intelligence. They have massive applications in data science and in making computing more efficient in general.