aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products/SelfadjointProduct.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-07-05 10:12:30 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-07-05 10:12:30 +0200
commitfffaa58ac2b0321577e748cf525ddaf80d508e9e (patch)
tree8d714f73762b47459336547e92d64a69f8c60a6c /Eigen/src/Core/products/SelfadjointProduct.h
parent8a38047ec5c16a35a6dc2370e74a5b2fa5f4f1a6 (diff)
fix unaligned workspace in sybb
Diffstat (limited to 'Eigen/src/Core/products/SelfadjointProduct.h')
-rw-r--r--Eigen/src/Core/products/SelfadjointProduct.h2
1 files changed, 1 insertions, 1 deletions
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
{