Unit 0.4.2 MyGemm
¶permalinkThe exercises revolve around the optimization of implementations of matrix-matrix multiplication. We will write and rewrite the routine
MyGemm( m, n, k, A, ldA, B, ldB, C, ldC )which computes C:=AB+C, where C is m×n, A is m×k, and B is k×n.
permalink "Gemm" is a commonly used acronym that stands for "Ge"neral "m"atrix "m"ultiplication. More on this in the enrichment in Unit 1.5.1.