diff --git a/src/HowToOptimizeGemm/parameters.h b/src/HowToOptimizeGemm/parameters.h index f26f626..c139c6f 100644 --- a/src/HowToOptimizeGemm/parameters.h +++ b/src/HowToOptimizeGemm/parameters.h @@ -35,6 +35,6 @@ leading dimension of the array that stores matrix X. If LDX=-1 then the leading dimension is set to the row dimension of matrix X. */ -#define LDA 1000 -#define LDB 1000 -#define LDC 1000 +#define LDA -1 +#define LDB -1 +#define LDC -1 diff --git a/src/MMult_4x4_15.c b/src/MMult_4x4_15.c index 7336df8..b183e74 100644 --- a/src/MMult_4x4_15.c +++ b/src/MMult_4x4_15.c @@ -22,15 +22,17 @@ void MY_MMult( int m, int n, int k, double *a, int lda, double *b, int ldb, double *c, int ldc ) { - int i, p, pb, ib; - - /* This time, we compute a mc x n block of C by a call to the InnerKernel */ - - for ( p=0; p