mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-12 17:33:15 +08:00
oops, fix symv (innerStride instead of outerStride)
This commit is contained in:
parent
fbdf16d425
commit
8b093dd2df
@ -186,10 +186,11 @@ struct SelfadjointProductMatrix<Lhs,LhsMode,false,Rhs,0,true>
|
|||||||
* RhsBlasTraits::extractScalarFactor(m_rhs);
|
* RhsBlasTraits::extractScalarFactor(m_rhs);
|
||||||
|
|
||||||
ei_assert(dst.innerStride()==1 && "not implemented yet");
|
ei_assert(dst.innerStride()==1 && "not implemented yet");
|
||||||
|
|
||||||
ei_product_selfadjoint_vector<Scalar, (ei_traits<_ActualLhsType>::Flags&RowMajorBit) ? RowMajor : ColMajor, int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>
|
ei_product_selfadjoint_vector<Scalar, (ei_traits<_ActualLhsType>::Flags&RowMajorBit) ? RowMajor : ColMajor, int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>
|
||||||
(
|
(
|
||||||
lhs.rows(), // size
|
lhs.rows(), // size
|
||||||
&lhs.coeff(0,0), lhs.innerStride(), // lhs info
|
&lhs.coeff(0,0), lhs.outerStride(), // lhs info
|
||||||
&rhs.coeff(0), rhs.innerStride(), // rhs info
|
&rhs.coeff(0), rhs.innerStride(), // rhs info
|
||||||
&dst.coeffRef(0), // result info
|
&dst.coeffRef(0), // result info
|
||||||
actualAlpha // scale factor
|
actualAlpha // scale factor
|
||||||
|
Loading…
x
Reference in New Issue
Block a user