#include #define MAT_SIZE 10 int A[MAT_SIZE][MAT_SIZE] = { [0 ... MAT_SIZE - 1] = {[0 ... MAT_SIZE - 1] = 2}}; int B[MAT_SIZE][MAT_SIZE] = { [0 ... MAT_SIZE - 1] = {[0 ... MAT_SIZE - 1] = 2}}; void vMatMul() { int IMC_REPEAT = 2000; int C[MAT_SIZE * MAT_SIZE] = { 0 }; for(int imc=0; imc