Processing math: 100%
Skip to main content
permalink

Unit 0.4.2 MyGemm

permalinkThe exercises revolve around the optimization of implementations of matrix-matrix multiplication. We will write and rewrite the routine

permalink

MyGemm( m, n, k, A, ldA, B, ldB, C, ldC )

permalink

which computes C:=AB+C, where C is m×n, A is m×k, and B is k×n.

permalink

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.