From a0a87410d0cd76e930279f1a7c81c6da90148e59 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 24 Jul 2014 22:08:10 +0200 Subject: Fix bug #61: gemm was broken since we changed the blocking order --- blas/level3_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'blas') diff --git a/blas/level3_impl.h b/blas/level3_impl.h index 07dbc22ff..a05872666 100644 --- a/blas/level3_impl.h +++ b/blas/level3_impl.h @@ -56,7 +56,7 @@ int EIGEN_BLAS_FUNC(gemm)(char *opa, char *opb, int *m, int *n, int *k, RealScal else matrix(c, *m, *n, *ldc) *= beta; } - internal::gemm_blocking_space blocking(*m,*n,*k); + internal::gemm_blocking_space blocking(*m,*n,*k,true); int code = OP(*opa) | (OP(*opb) << 2); func[code](*m, *n, *k, a, *lda, b, *ldb, c, *ldc, alpha, blocking, 0); -- cgit v1.2.3