10 #ifndef EIGEN_SPARSEDENSEPRODUCT_H
11 #define EIGEN_SPARSEDENSEPRODUCT_H
15 template<
typename Lhs,
typename Rhs,
int InnerSize>
struct SparseDenseProductReturnType
17 typedef SparseTimeDenseProduct<Lhs,Rhs> Type;
20 template<
typename Lhs,
typename Rhs>
struct SparseDenseProductReturnType<Lhs,Rhs,1>
22 typedef typename internal::conditional<
24 SparseDenseOuterProduct<Rhs,Lhs,true>,
25 SparseDenseOuterProduct<Lhs,Rhs,false> >::type Type;
28 template<
typename Lhs,
typename Rhs,
int InnerSize>
struct DenseSparseProductReturnType
30 typedef DenseTimeSparseProduct<Lhs,Rhs> Type;
33 template<
typename Lhs,
typename Rhs>
struct DenseSparseProductReturnType<Lhs,Rhs,1>
35 typedef typename internal::conditional<
37 SparseDenseOuterProduct<Rhs,Lhs,true>,
38 SparseDenseOuterProduct<Lhs,Rhs,false> >::type Type;
43 template<
typename Lhs,
typename Rhs,
bool Tr>
44 struct traits<SparseDenseOuterProduct<Lhs,Rhs,Tr> >
46 typedef Sparse StorageKind;
47 typedef typename scalar_product_traits<typename traits<Lhs>::Scalar,
48 typename traits<Rhs>::Scalar>::ReturnType Scalar;
49 typedef typename Lhs::Index Index;
50 typedef typename Lhs::Nested LhsNested;
51 typedef typename Rhs::Nested RhsNested;
52 typedef typename remove_all<LhsNested>::type _LhsNested;
53 typedef typename remove_all<RhsNested>::type _RhsNested;
56 LhsCoeffReadCost = traits<_LhsNested>::CoeffReadCost,
57 RhsCoeffReadCost = traits<_RhsNested>::CoeffReadCost,
59 RowsAtCompileTime = Tr ? int(traits<Rhs>::RowsAtCompileTime) : int(traits<Lhs>::RowsAtCompileTime),
60 ColsAtCompileTime = Tr ? int(traits<Lhs>::ColsAtCompileTime) : int(traits<Rhs>::ColsAtCompileTime),
61 MaxRowsAtCompileTime = Tr ? int(traits<Rhs>::MaxRowsAtCompileTime) : int(traits<Lhs>::MaxRowsAtCompileTime),
62 MaxColsAtCompileTime = Tr ? int(traits<Lhs>::MaxColsAtCompileTime) : int(traits<Rhs>::MaxColsAtCompileTime),
66 CoeffReadCost = LhsCoeffReadCost + RhsCoeffReadCost + NumTraits<Scalar>::MulCost
72 template<
typename Lhs,
typename Rhs,
bool Tr>
73 class SparseDenseOuterProduct
74 :
public SparseMatrixBase<SparseDenseOuterProduct<Lhs,Rhs,Tr> >
78 typedef SparseMatrixBase<SparseDenseOuterProduct> Base;
79 EIGEN_DENSE_PUBLIC_INTERFACE(SparseDenseOuterProduct)
80 typedef internal::traits<SparseDenseOuterProduct> Traits;
84 typedef typename Traits::LhsNested LhsNested;
85 typedef typename Traits::RhsNested RhsNested;
86 typedef typename Traits::_LhsNested _LhsNested;
87 typedef typename Traits::_RhsNested _RhsNested;
93 EIGEN_STRONG_INLINE SparseDenseOuterProduct(const Lhs& lhs, const Rhs& rhs)
94 : m_lhs(lhs), m_rhs(rhs)
96 EIGEN_STATIC_ASSERT(!Tr,YOU_MADE_A_PROGRAMMING_MISTAKE);
99 EIGEN_STRONG_INLINE SparseDenseOuterProduct(
const Rhs& rhs,
const Lhs& lhs)
100 : m_lhs(lhs), m_rhs(rhs)
102 EIGEN_STATIC_ASSERT(Tr,YOU_MADE_A_PROGRAMMING_MISTAKE);
105 EIGEN_STRONG_INLINE Index rows()
const {
return Tr ? m_rhs.rows() : m_lhs.rows(); }
106 EIGEN_STRONG_INLINE Index cols()
const {
return Tr ? m_lhs.cols() : m_rhs.cols(); }
108 EIGEN_STRONG_INLINE
const _LhsNested& lhs()
const {
return m_lhs; }
109 EIGEN_STRONG_INLINE
const _RhsNested& rhs()
const {
return m_rhs; }
116 template<
typename Lhs,
typename Rhs,
bool Transpose>
117 class SparseDenseOuterProduct<Lhs,Rhs,Transpose>::InnerIterator :
public _LhsNested::InnerIterator
119 typedef typename _LhsNested::InnerIterator Base;
120 typedef typename SparseDenseOuterProduct::Index Index;
122 EIGEN_STRONG_INLINE InnerIterator(
const SparseDenseOuterProduct& prod, Index outer)
123 : Base(prod.lhs(), 0), m_outer(outer), m_factor(get(prod.rhs(), outer, typename internal::traits<Rhs>::StorageKind() ))
126 inline Index outer()
const {
return m_outer; }
127 inline Index row()
const {
return Transpose ? m_outer : Base::index(); }
128 inline Index col()
const {
return Transpose ? Base::index() : m_outer; }
130 inline Scalar value()
const {
return Base::value() * m_factor; }
133 static Scalar
get(
const _RhsNested &rhs, Index outer, Dense = Dense())
135 return rhs.coeff(outer);
138 static Scalar
get(
const _RhsNested &rhs, Index outer, Sparse = Sparse())
140 typename Traits::_RhsNested::InnerIterator it(rhs, outer);
141 if (it && it.index()==0)
152 template<
typename Lhs,
typename Rhs>
153 struct traits<SparseTimeDenseProduct<Lhs,Rhs> >
154 : traits<ProductBase<SparseTimeDenseProduct<Lhs,Rhs>, Lhs, Rhs> >
156 typedef Dense StorageKind;
157 typedef MatrixXpr XprKind;
160 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType,
162 bool ColPerCol = ((DenseRhsType::Flags&
RowMajorBit)==0) || DenseRhsType::ColsAtCompileTime==1>
163 struct sparse_time_dense_product_impl;
165 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType>
166 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType,
RowMajor, true>
168 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
169 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
170 typedef typename internal::remove_all<DenseResType>::type Res;
171 typedef typename Lhs::Index Index;
172 typedef typename Lhs::InnerIterator LhsInnerIterator;
173 static void run(
const SparseLhsType& lhs,
const DenseRhsType& rhs, DenseResType& res,
const typename Res::Scalar& alpha)
175 for(Index c=0; c<rhs.cols(); ++c)
177 Index n = lhs.outerSize();
178 for(Index j=0; j<n; ++j)
180 typename Res::Scalar tmp(0);
181 for(LhsInnerIterator it(lhs,j); it ;++it)
182 tmp += it.value() * rhs.coeff(it.index(),c);
183 res.coeffRef(j,c) += alpha * tmp;
189 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType>
190 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType,
ColMajor, true>
192 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
193 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
194 typedef typename internal::remove_all<DenseResType>::type Res;
195 typedef typename Lhs::InnerIterator LhsInnerIterator;
196 typedef typename Lhs::Index Index;
197 static void run(
const SparseLhsType& lhs,
const DenseRhsType& rhs, DenseResType& res,
const typename Res::Scalar& alpha)
199 for(Index c=0; c<rhs.cols(); ++c)
201 for(Index j=0; j<lhs.outerSize(); ++j)
203 typename Res::Scalar rhs_j = alpha * rhs.coeff(j,c);
204 for(LhsInnerIterator it(lhs,j); it ;++it)
205 res.coeffRef(it.index(),c) += it.value() * rhs_j;
211 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType>
212 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType,
RowMajor, false>
214 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
215 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
216 typedef typename internal::remove_all<DenseResType>::type Res;
217 typedef typename Lhs::InnerIterator LhsInnerIterator;
218 typedef typename Lhs::Index Index;
219 static void run(
const SparseLhsType& lhs,
const DenseRhsType& rhs, DenseResType& res,
const typename Res::Scalar& alpha)
221 for(Index j=0; j<lhs.outerSize(); ++j)
223 typename Res::RowXpr res_j(res.row(j));
224 for(LhsInnerIterator it(lhs,j); it ;++it)
225 res_j += (alpha*it.value()) * rhs.row(it.index());
230 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType>
231 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType,
ColMajor, false>
233 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
234 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
235 typedef typename internal::remove_all<DenseResType>::type Res;
236 typedef typename Lhs::InnerIterator LhsInnerIterator;
237 typedef typename Lhs::Index Index;
238 static void run(
const SparseLhsType& lhs,
const DenseRhsType& rhs, DenseResType& res,
const typename Res::Scalar& alpha)
240 for(Index j=0; j<lhs.outerSize(); ++j)
242 typename Rhs::ConstRowXpr rhs_j(rhs.row(j));
243 for(LhsInnerIterator it(lhs,j); it ;++it)
244 res.row(it.index()) += (alpha*it.value()) * rhs_j;
249 template<
typename SparseLhsType,
typename DenseRhsType,
typename DenseResType,
typename AlphaType>
250 inline void sparse_time_dense_product(
const SparseLhsType& lhs,
const DenseRhsType& rhs, DenseResType& res,
const AlphaType& alpha)
252 sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType>::run(lhs, rhs, res, alpha);
257 template<
typename Lhs,
typename Rhs>
258 class SparseTimeDenseProduct
259 :
public ProductBase<SparseTimeDenseProduct<Lhs,Rhs>, Lhs, Rhs>
262 EIGEN_PRODUCT_PUBLIC_INTERFACE(SparseTimeDenseProduct)
264 SparseTimeDenseProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs)
267 template<
typename Dest>
void scaleAndAddTo(Dest& dest,
const Scalar& alpha)
const
269 internal::sparse_time_dense_product(m_lhs, m_rhs, dest, alpha);
273 SparseTimeDenseProduct& operator=(
const SparseTimeDenseProduct&);
279 template<
typename Lhs,
typename Rhs>
280 struct traits<DenseTimeSparseProduct<Lhs,Rhs> >
281 : traits<ProductBase<DenseTimeSparseProduct<Lhs,Rhs>, Lhs, Rhs> >
283 typedef Dense StorageKind;
287 template<
typename Lhs,
typename Rhs>
288 class DenseTimeSparseProduct
289 :
public ProductBase<DenseTimeSparseProduct<Lhs,Rhs>, Lhs, Rhs>
292 EIGEN_PRODUCT_PUBLIC_INTERFACE(DenseTimeSparseProduct)
294 DenseTimeSparseProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs)
297 template<
typename Dest>
void scaleAndAddTo(Dest& dest,
const Scalar& alpha)
const
299 Transpose<const _LhsNested> lhs_t(m_lhs);
300 Transpose<const _RhsNested> rhs_t(m_rhs);
301 Transpose<Dest> dest_t(dest);
302 internal::sparse_time_dense_product(rhs_t, lhs_t, dest_t, alpha);
306 DenseTimeSparseProduct& operator=(
const DenseTimeSparseProduct&);
311 #endif // EIGEN_SPARSEDENSEPRODUCT_H
Definition: Constants.h:264
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53