GEMM Micro Kernel

The GEMM Micro Kernel computes the GEMM operation \(C \leftarrow \beta C + \alpha A B\) where

Exercise: Test Framework

Note: Print the name of the matrix before you print its value.

Exercise: Implement and call the micro kernel

The signature of the micor kernel is defined by

void
dgemm_micro(size_t k, double alpha,
            const double *A, const double *B,
            double beta,
            double *C, ptrdiff_t incRowC, ptrdiff_t incColC);