From fffaa58ac2b0321577e748cf525ddaf80d508e9e Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 5 Jul 2010 10:12:30 +0200 Subject: [PATCH] fix unaligned workspace in sybb --- Eigen/src/Core/products/SelfadjointProduct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/SelfadjointProduct.h b/Eigen/src/Core/products/SelfadjointProduct.h index 84e5c684c..eaf634de3 100644 --- a/Eigen/src/Core/products/SelfadjointProduct.h +++ b/Eigen/src/Core/products/SelfadjointProduct.h @@ -183,7 +183,7 @@ struct ei_sybb_kernel const Scalar* actual_b = blockB+j*depth; if(UpLo==Upper) - gebp_kernel(res+j*resStride, resStride, blockA, actual_b, j, depth, actualBlockSize); + gebp_kernel(res+j*resStride, resStride, blockA, actual_b, j, depth, actualBlockSize, -1, -1, 0, 0, workspace); // selfadjoint micro block {