aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 21:22:20 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 21:22:20 +0100
commit70e133333d733886923cd5a9082e92714b95d076 (patch)
treefe9bd23f1efbb973dd86432042e1ea96cda985eb /Eigen/src/Core/products
parentce88e297dcae94952f4dbe6386fa63b6962d3432 (diff)
bug #1661: fix regression in GEBP and AVX512
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index 04b7bfa7e..8b4b1dbd3 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -1307,7 +1307,8 @@ void gebp_kernel<LhsScalar,RhsScalar,Index,DataMapper,mr,nr,ConjugateLhs,Conjuga
// process remaining peeled loop
for(Index k=peeled_kc; k<depth; k++)
{
- RhsPanel15 rhs_panel, T0;
+ RhsPanel15 rhs_panel;
+ RhsPacket T0;
LhsPacket A2;
EIGEN_GEBP_ONESTEP(0);
blB += 4*RhsProgress;