================= Possible Solution ================= Setup a Framework for Testing ============================= - Define Macros `DGEMM_KC` and `DGEMM_NC` for $K_c$ and $N_c$. - Define a Macro `DGEMM_NR` for $N_r$. - Allocate a small matrix $B$. - Allocate a buffer $p$ for $K_c \cdot N_c$ elements. - Initialize matrix $B$. - Print matrix $B$ and then buffer $p$. So again, we postpone the actual implementation of `gepack_B`! :import: session04/gepack_b_test.c Implement and test `dgepack_B` ============================== *After* compiling and running the above code we start to implement `dgepack_B`: :import: session04/gepack_b.c :navigate: up -> doc:index back -> doc:session04/page13 next -> doc:session04/page15