diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h index 5150daacd..6a9402cba 100644 --- a/Eigen/src/Core/products/GeneralMatrixMatrix.h +++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h @@ -73,6 +73,9 @@ static void run(Index rows, Index cols, Index depth, ei_const_blas_data_mapper lhs(_lhs,lhsStride); ei_const_blas_data_mapper rhs(_rhs,rhsStride); + if (ConjugateRhs) + alpha = ei_conj(alpha); + typedef typename ei_packet_traits::type PacketType; typedef ei_product_blocking_traits Blocking;