Lecture 7: Optimizing for CPUs and Hierarchial Memory

../_images/L7-title.png Lecture 7 slides Lecture 7 panopto Podcast

(Originally recorded 2019-04-23)

In this lecture we build on our simple CPU model to develop a sequence of optimizations for matrix-matrix product. We look at hoisting, unroll-and-jam (aka tiling), cache blocking, and transpose block copy. (Different loop orderings will be left for a problem set.)

We continue investigating performance optimizations by investigating SIMD extensions (in our examples, on Intel where they are now known as AVX).

The combination of all of these optimizations results in performance of over 13 Gflops on a low-end laptop. Without the optimizations, performance was one or two orders of magnitude slower.