Aussie AI
Why Hardware Accelerationand?
-
Book Excerpt from "Generative AI in C++"
-
by David Spuler, Ph.D.
Why Hardware Acceleration?
Hardware acceleration has come a long way since the Intel 8087 floating-point coprocessor in 1980. Every CPU now comes with builtin floating-point operations, and even opcode instructions that perform complex mathematics like exponentials and logarithms in hardware.
Parallelizing computations is now where the action's hot in AI, which needs lots of vectors and matrices running in parallel mode (i.e. tensor computations). The most powerful parallel computations are GPUs which can chomp through a continuous stream of data in parallel.
GPUs are not the only type of hardware acceleration. Even without GPUs, typical CPUs have multi-core and multi-thread parallelism. You can even do small-vector parallel instructions in the CPUs using special SIMD opcode instructions. For example, x86 CPUs have SIMD accessible via C++ AVX intrinsic functions, and Apple M1/M2/M3 chips support Arm Neon for parallelism.
• Next: • Up: Table of Contents |
The new AI programming book by Aussie AI co-founders:
Get your copy from Amazon: Generative AI in C++ |