Fix regression introduced by the previous fix for AVX512.

It brokes the complex-complex case on SSE.
This commit is contained in:
Gael Guennebaud
2018-09-20 17:32:34 +02:00
parent e38d1ab4d1
commit 9419f506d0
8 changed files with 16 additions and 12 deletions

View File

@@ -244,7 +244,7 @@ struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgT
RhsMapper;
typedef internal::gemm_pack_lhs<LhsScalar, Index,
typename LhsMapper::SubMapper, Traits::mr,
Traits::LhsProgress, ColMajor>
Traits::LhsProgress, typename Traits::LhsPacket4Packing, ColMajor>
LhsPacker;
typedef internal::gemm_pack_rhs<
RhsScalar, Index, typename RhsMapper::SubMapper, Traits::nr, ColMajor>