Computer Architecture

Optimizing CPU GEMM step by step.
Optimizing CPU GEMM step …

Introduction: What is GEMM?

Let’s first define what a GEMM is and why it is relevant in today’s world. GEMM refers to General Matrix Multiplication, a linear algebra operation that can be defined as:

$$ C = \alpha AB + \beta C $$

Where A, B and C are matrices and alpha and beta are …