10 #ifndef EIGEN_TRIANGULARMATRIXVECTOR_H
11 #define EIGEN_TRIANGULARMATRIXVECTOR_H
17 template<
typename Index,
int Mode,
typename LhsScalar,
bool ConjLhs,
typename RhsScalar,
bool ConjRhs,
int StorageOrder,
int Version=Specialized>
18 struct triangular_matrix_vector_product;
20 template<
typename Index,
int Mode,
typename LhsScalar,
bool ConjLhs,
typename RhsScalar,
bool ConjRhs,
int Version>
21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,
ColMajor,Version>
23 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
27 HasZeroDiag = (Mode &
ZeroDiag)==ZeroDiag
29 static EIGEN_DONT_INLINE
void run(Index _rows, Index _cols,
const LhsScalar* _lhs, Index lhsStride,
30 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr,
const ResScalar& alpha);
33 template<
typename Index,
int Mode,
typename LhsScalar,
bool ConjLhs,
typename RhsScalar,
bool ConjRhs,
int Version>
34 EIGEN_DONT_INLINE
void triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
35 ::run(Index _rows, Index _cols,
const LhsScalar* _lhs, Index lhsStride,
36 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr,
const ResScalar& alpha)
38 static const Index PanelWidth = EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH;
39 Index size = (std::min)(_rows,_cols);
40 Index rows = IsLower ? _rows : (std::min)(_rows,_cols);
41 Index cols = IsLower ? (std::min)(_rows,_cols) : _cols;
43 typedef Map<const Matrix<LhsScalar,Dynamic,Dynamic,ColMajor>, 0, OuterStride<> > LhsMap;
44 const LhsMap lhs(_lhs,rows,cols,OuterStride<>(lhsStride));
45 typename conj_expr_if<ConjLhs,LhsMap>::type cjLhs(lhs);
47 typedef Map<const Matrix<RhsScalar,Dynamic,1>, 0, InnerStride<> > RhsMap;
48 const RhsMap rhs(_rhs,cols,InnerStride<>(rhsIncr));
49 typename conj_expr_if<ConjRhs,RhsMap>::type cjRhs(rhs);
51 typedef Map<Matrix<ResScalar,Dynamic,1> > ResMap;
52 ResMap res(_res,rows);
54 for (Index pi=0; pi<size; pi+=PanelWidth)
56 Index actualPanelWidth = (std::min)(PanelWidth, size-pi);
57 for (Index k=0; k<actualPanelWidth; ++k)
60 Index s = IsLower ? ((HasUnitDiag||HasZeroDiag) ? i+1 : i ) : pi;
61 Index r = IsLower ? actualPanelWidth-k : k+1;
62 if ((!(HasUnitDiag||HasZeroDiag)) || (--r)>0)
63 res.segment(s,r) += (alpha * cjRhs.coeff(i)) * cjLhs.col(i).segment(s,r);
65 res.coeffRef(i) += alpha * cjRhs.coeff(i);
67 Index r = IsLower ? rows - pi - actualPanelWidth : pi;
70 Index s = IsLower ? pi+actualPanelWidth : 0;
71 general_matrix_vector_product<Index,LhsScalar,ColMajor,ConjLhs,RhsScalar,ConjRhs,BuiltIn>::run(
73 &lhs.coeffRef(s,pi), lhsStride,
74 &rhs.coeffRef(pi), rhsIncr,
75 &res.coeffRef(s), resIncr, alpha);
78 if((!IsLower) && cols>size)
80 general_matrix_vector_product<Index,LhsScalar,ColMajor,ConjLhs,RhsScalar,ConjRhs>::run(
82 &lhs.coeffRef(0,size), lhsStride,
83 &rhs.coeffRef(size), rhsIncr,
84 _res, resIncr, alpha);
88 template<
typename Index,
int Mode,
typename LhsScalar,
bool ConjLhs,
typename RhsScalar,
bool ConjRhs,
int Version>
89 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,
RowMajor,Version>
91 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
95 HasZeroDiag = (Mode &
ZeroDiag)==ZeroDiag
97 static EIGEN_DONT_INLINE
void run(Index _rows, Index _cols,
const LhsScalar* _lhs, Index lhsStride,
98 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr,
const ResScalar& alpha);
101 template<
typename Index,
int Mode,
typename LhsScalar,
bool ConjLhs,
typename RhsScalar,
bool ConjRhs,
int Version>
102 EIGEN_DONT_INLINE
void triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Version>
103 ::run(Index _rows, Index _cols,
const LhsScalar* _lhs, Index lhsStride,
104 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr,
const ResScalar& alpha)
106 static const Index PanelWidth = EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH;
107 Index diagSize = (std::min)(_rows,_cols);
108 Index rows = IsLower ? _rows : diagSize;
109 Index cols = IsLower ? diagSize : _cols;
111 typedef Map<const Matrix<LhsScalar,Dynamic,Dynamic,RowMajor>, 0, OuterStride<> > LhsMap;
112 const LhsMap lhs(_lhs,rows,cols,OuterStride<>(lhsStride));
113 typename conj_expr_if<ConjLhs,LhsMap>::type cjLhs(lhs);
115 typedef Map<const Matrix<RhsScalar,Dynamic,1> > RhsMap;
116 const RhsMap rhs(_rhs,cols);
117 typename conj_expr_if<ConjRhs,RhsMap>::type cjRhs(rhs);
119 typedef Map<Matrix<ResScalar,Dynamic,1>, 0, InnerStride<> > ResMap;
120 ResMap res(_res,rows,InnerStride<>(resIncr));
122 for (Index pi=0; pi<diagSize; pi+=PanelWidth)
124 Index actualPanelWidth = (std::min)(PanelWidth, diagSize-pi);
125 for (Index k=0; k<actualPanelWidth; ++k)
128 Index s = IsLower ? pi : ((HasUnitDiag||HasZeroDiag) ? i+1 : i);
129 Index r = IsLower ? k+1 : actualPanelWidth-k;
130 if ((!(HasUnitDiag||HasZeroDiag)) || (--r)>0)
131 res.coeffRef(i) += alpha * (cjLhs.row(i).segment(s,r).cwiseProduct(cjRhs.segment(s,r).transpose())).sum();
133 res.coeffRef(i) += alpha * cjRhs.coeff(i);
135 Index r = IsLower ? pi : cols - pi - actualPanelWidth;
138 Index s = IsLower ? 0 : pi + actualPanelWidth;
139 general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjLhs,RhsScalar,ConjRhs,BuiltIn>::run(
141 &lhs.coeffRef(pi,s), lhsStride,
142 &rhs.coeffRef(s), rhsIncr,
143 &res.coeffRef(pi), resIncr, alpha);
146 if(IsLower && rows>diagSize)
148 general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjLhs,RhsScalar,ConjRhs>::run(
150 &lhs.coeffRef(diagSize,0), lhsStride,
151 &rhs.coeffRef(0), rhsIncr,
152 &res.coeffRef(diagSize), resIncr, alpha);
160 template<
int Mode,
bool LhsIsTriangular,
typename Lhs,
typename Rhs>
161 struct traits<TriangularProduct<Mode,LhsIsTriangular,Lhs,false,Rhs,true> >
162 : traits<ProductBase<TriangularProduct<Mode,LhsIsTriangular,Lhs,false,Rhs,true>, Lhs, Rhs> >
165 template<
int Mode,
bool LhsIsTriangular,
typename Lhs,
typename Rhs>
166 struct traits<TriangularProduct<Mode,LhsIsTriangular,Lhs,true,Rhs,false> >
167 : traits<ProductBase<TriangularProduct<Mode,LhsIsTriangular,Lhs,true,Rhs,false>, Lhs, Rhs> >
171 template<
int StorageOrder>
172 struct trmv_selector;
176 template<
int Mode,
typename Lhs,
typename Rhs>
177 struct TriangularProduct<Mode,true,Lhs,false,Rhs,true>
178 :
public ProductBase<TriangularProduct<Mode,true,Lhs,false,Rhs,true>, Lhs, Rhs >
180 EIGEN_PRODUCT_PUBLIC_INTERFACE(TriangularProduct)
182 TriangularProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs) {}
184 template<
typename Dest>
void scaleAndAddTo(Dest& dst,
const Scalar& alpha)
const
186 eigen_assert(dst.rows()==m_lhs.rows() && dst.cols()==m_rhs.cols());
192 template<
int Mode,
typename Lhs,
typename Rhs>
193 struct TriangularProduct<Mode,false,Lhs,true,Rhs,false>
194 :
public ProductBase<TriangularProduct<Mode,false,Lhs,true,Rhs,false>, Lhs, Rhs >
196 EIGEN_PRODUCT_PUBLIC_INTERFACE(TriangularProduct)
198 TriangularProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs) {}
200 template<
typename Dest>
void scaleAndAddTo(Dest& dst,
const Scalar& alpha)
const
202 eigen_assert(dst.rows()==m_lhs.rows() && dst.cols()==m_rhs.cols());
204 typedef TriangularProduct<(Mode & (UnitDiag|ZeroDiag)) | ((Mode & Lower) ? Upper : Lower),true,Transpose<const Rhs>,
false,Transpose<const Lhs>,
true> TriangularProductTranspose;
205 Transpose<Dest> dstT(dst);
207 TriangularProductTranspose(m_rhs.transpose(),m_lhs.transpose()), dstT, alpha);
215 template<>
struct trmv_selector<
ColMajor>
217 template<
int Mode,
typename Lhs,
typename Rhs,
typename Dest>
218 static void run(
const TriangularProduct<Mode,true,Lhs,false,Rhs,true>& prod, Dest& dest,
const typename TriangularProduct<Mode,true,Lhs,false,Rhs,true>::Scalar& alpha)
220 typedef TriangularProduct<Mode,true,Lhs,false,Rhs,true> ProductType;
221 typedef typename ProductType::Index Index;
222 typedef typename ProductType::LhsScalar LhsScalar;
223 typedef typename ProductType::RhsScalar RhsScalar;
224 typedef typename ProductType::Scalar ResScalar;
225 typedef typename ProductType::RealScalar RealScalar;
226 typedef typename ProductType::ActualLhsType ActualLhsType;
227 typedef typename ProductType::ActualRhsType ActualRhsType;
228 typedef typename ProductType::LhsBlasTraits LhsBlasTraits;
229 typedef typename ProductType::RhsBlasTraits RhsBlasTraits;
230 typedef Map<Matrix<ResScalar,Dynamic,1>,
Aligned> MappedDest;
232 typename internal::add_const_on_value_type<ActualLhsType>::type actualLhs = LhsBlasTraits::extract(prod.lhs());
233 typename internal::add_const_on_value_type<ActualRhsType>::type actualRhs = RhsBlasTraits::extract(prod.rhs());
235 ResScalar actualAlpha = alpha * LhsBlasTraits::extractScalarFactor(prod.lhs())
236 * RhsBlasTraits::extractScalarFactor(prod.rhs());
241 EvalToDestAtCompileTime = Dest::InnerStrideAtCompileTime==1,
242 ComplexByReal = (NumTraits<LhsScalar>::IsComplex) && (!NumTraits<RhsScalar>::IsComplex),
243 MightCannotUseDest = (Dest::InnerStrideAtCompileTime!=1) || ComplexByReal
246 gemv_static_vector_if<ResScalar,Dest::SizeAtCompileTime,Dest::MaxSizeAtCompileTime,MightCannotUseDest> static_dest;
248 bool alphaIsCompatible = (!ComplexByReal) || (numext::imag(actualAlpha)==RealScalar(0));
249 bool evalToDest = EvalToDestAtCompileTime && alphaIsCompatible;
251 RhsScalar compatibleAlpha = get_factor<ResScalar,RhsScalar>::run(actualAlpha);
253 ei_declare_aligned_stack_constructed_variable(ResScalar,actualDestPtr,dest.size(),
254 evalToDest ? dest.data() : static_dest.data());
258 #ifdef EIGEN_DENSE_STORAGE_CTOR_PLUGIN
259 Index size = dest.size();
260 EIGEN_DENSE_STORAGE_CTOR_PLUGIN
262 if(!alphaIsCompatible)
264 MappedDest(actualDestPtr, dest.size()).setZero();
265 compatibleAlpha = RhsScalar(1);
268 MappedDest(actualDestPtr, dest.size()) = dest;
271 internal::triangular_matrix_vector_product
273 LhsScalar, LhsBlasTraits::NeedToConjugate,
274 RhsScalar, RhsBlasTraits::NeedToConjugate,
276 ::run(actualLhs.rows(),actualLhs.cols(),
277 actualLhs.data(),actualLhs.outerStride(),
278 actualRhs.data(),actualRhs.innerStride(),
279 actualDestPtr,1,compatibleAlpha);
283 if(!alphaIsCompatible)
284 dest += actualAlpha * MappedDest(actualDestPtr, dest.size());
286 dest = MappedDest(actualDestPtr, dest.size());
291 template<>
struct trmv_selector<
RowMajor>
293 template<
int Mode,
typename Lhs,
typename Rhs,
typename Dest>
294 static void run(
const TriangularProduct<Mode,true,Lhs,false,Rhs,true>& prod, Dest& dest,
const typename TriangularProduct<Mode,true,Lhs,false,Rhs,true>::Scalar& alpha)
296 typedef TriangularProduct<Mode,true,Lhs,false,Rhs,true> ProductType;
297 typedef typename ProductType::LhsScalar LhsScalar;
298 typedef typename ProductType::RhsScalar RhsScalar;
299 typedef typename ProductType::Scalar ResScalar;
300 typedef typename ProductType::Index Index;
301 typedef typename ProductType::ActualLhsType ActualLhsType;
302 typedef typename ProductType::ActualRhsType ActualRhsType;
303 typedef typename ProductType::_ActualRhsType _ActualRhsType;
304 typedef typename ProductType::LhsBlasTraits LhsBlasTraits;
305 typedef typename ProductType::RhsBlasTraits RhsBlasTraits;
307 typename add_const<ActualLhsType>::type actualLhs = LhsBlasTraits::extract(prod.lhs());
308 typename add_const<ActualRhsType>::type actualRhs = RhsBlasTraits::extract(prod.rhs());
310 ResScalar actualAlpha = alpha * LhsBlasTraits::extractScalarFactor(prod.lhs())
311 * RhsBlasTraits::extractScalarFactor(prod.rhs());
314 DirectlyUseRhs = _ActualRhsType::InnerStrideAtCompileTime==1
317 gemv_static_vector_if<RhsScalar,_ActualRhsType::SizeAtCompileTime,_ActualRhsType::MaxSizeAtCompileTime,!DirectlyUseRhs> static_rhs;
319 ei_declare_aligned_stack_constructed_variable(RhsScalar,actualRhsPtr,actualRhs.size(),
320 DirectlyUseRhs ?
const_cast<RhsScalar*
>(actualRhs.data()) : static_rhs.data());
324 #ifdef EIGEN_DENSE_STORAGE_CTOR_PLUGIN
325 int size = actualRhs.size();
326 EIGEN_DENSE_STORAGE_CTOR_PLUGIN
328 Map<typename _ActualRhsType::PlainObject>(actualRhsPtr, actualRhs.size()) = actualRhs;
331 internal::triangular_matrix_vector_product
333 LhsScalar, LhsBlasTraits::NeedToConjugate,
334 RhsScalar, RhsBlasTraits::NeedToConjugate,
336 ::run(actualLhs.rows(),actualLhs.cols(),
337 actualLhs.data(),actualLhs.outerStride(),
339 dest.data(),dest.innerStride(),
348 #endif // EIGEN_TRIANGULARMATRIXVECTOR_H
Definition: Constants.h:167
Definition: Constants.h:264
Definition: Constants.h:173
Definition: Constants.h:194
Definition: Constants.h:171
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53