From 6850eab33b71556f62c29ff29bbcdf0240cfd8e2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 26 Jan 2016 23:32:48 +0100 Subject: [PATCH] Re-enable blocking on rows in non-l3 blocking mode. --- Eigen/src/Core/products/GeneralMatrixMatrix.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h index d77fc2630..a39c7808c 100644 --- a/Eigen/src/Core/products/GeneralMatrixMatrix.h +++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h @@ -352,9 +352,8 @@ class gemm_blocking_spacem_mc; Index n = this->m_nc; - computeProductBlockingSizes(this->m_kc, m, n, num_threads); + computeProductBlockingSizes(this->m_kc, this->m_mc, n, num_threads); } m_sizeA = this->m_mc * this->m_kc;