bug #1661: fix regression in GEBP and AVX512

This commit is contained in:
Gael Guennebaud 2019-01-16 21:22:20 +01:00
parent ce88e297dc
commit 70e133333d

View File

@ -1307,7 +1307,8 @@ void gebp_kernel<LhsScalar,RhsScalar,Index,DataMapper,mr,nr,ConjugateLhs,Conjuga
// process remaining peeled loop // process remaining peeled loop
for(Index k=peeled_kc; k<depth; k++) for(Index k=peeled_kc; k<depth; k++)
{ {
RhsPanel15 rhs_panel, T0; RhsPanel15 rhs_panel;
RhsPacket T0;
LhsPacket A2; LhsPacket A2;
EIGEN_GEBP_ONESTEP(0); EIGEN_GEBP_ONESTEP(0);
blB += 4*RhsProgress; blB += 4*RhsProgress;