10 #ifndef EIGEN_CONSERVATIVESPARSESPARSEPRODUCT_H
11 #define EIGEN_CONSERVATIVESPARSESPARSEPRODUCT_H
17 template<
typename Lhs,
typename Rhs,
typename ResultType>
18 static void conservative_sparse_sparse_product_impl(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
20 typedef typename remove_all<Lhs>::type::Scalar Scalar;
21 typedef typename remove_all<Lhs>::type::Index Index;
24 Index rows = lhs.innerSize();
25 Index cols = rhs.outerSize();
26 eigen_assert(lhs.outerSize() == rhs.innerSize());
28 std::vector<bool> mask(rows,
false);
29 Matrix<Scalar,Dynamic,1> values(rows);
30 Matrix<Index,Dynamic,1> indices(rows);
38 Index estimated_nnz_prod = lhs.nonZeros() + rhs.nonZeros();
41 res.reserve(Index(estimated_nnz_prod));
43 for (Index j=0; j<cols; ++j)
48 for (
typename Rhs::InnerIterator rhsIt(rhs, j); rhsIt; ++rhsIt)
50 Scalar y = rhsIt.value();
51 Index k = rhsIt.index();
52 for (
typename Lhs::InnerIterator lhsIt(lhs, k); lhsIt; ++lhsIt)
54 Index i = lhsIt.index();
55 Scalar x = lhsIt.value();
69 for(Index k=0; k<nnz; ++k)
72 res.insertBackByOuterInnerUnordered(j,i) = values[i];
79 Index t200 = rows/(log2(200)*1.39);
80 Index t = (rows*100)/139;
92 if(nnz>1) std::sort(indices.data(),indices.data()+nnz);
93 for(Index k=0; k<nnz; ++k)
96 res.insertBackByOuterInner(j,i) = values[i];
103 for(Index i=0; i<rows; ++i)
108 res.insertBackByOuterInner(j,i) = values[i];
123 template<
typename Lhs,
typename Rhs,
typename ResultType,
127 struct conservative_sparse_sparse_product_selector;
129 template<
typename Lhs,
typename Rhs,
typename ResultType>
130 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
132 typedef typename remove_all<Lhs>::type LhsCleaned;
133 typedef typename LhsCleaned::Scalar Scalar;
135 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
137 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
138 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> ColMajorMatrix;
139 ColMajorMatrix resCol(lhs.rows(),rhs.cols());
140 internal::conservative_sparse_sparse_product_impl<Lhs,Rhs,ColMajorMatrix>(lhs, rhs, resCol);
142 RowMajorMatrix resRow(resCol);
147 template<
typename Lhs,
typename Rhs,
typename ResultType>
148 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,RowMajor,ColMajor,ColMajor>
150 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
152 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
153 RowMajorMatrix rhsRow = rhs;
154 RowMajorMatrix resRow(lhs.rows(), rhs.cols());
155 internal::conservative_sparse_sparse_product_impl<RowMajorMatrix,Lhs,RowMajorMatrix>(rhsRow, lhs, resRow);
160 template<
typename Lhs,
typename Rhs,
typename ResultType>
161 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,RowMajor,ColMajor>
163 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
165 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
166 RowMajorMatrix lhsRow = lhs;
167 RowMajorMatrix resRow(lhs.rows(), rhs.cols());
168 internal::conservative_sparse_sparse_product_impl<Rhs,RowMajorMatrix,RowMajorMatrix>(rhs, lhsRow, resRow);
173 template<
typename Lhs,
typename Rhs,
typename ResultType>
174 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,RowMajor,RowMajor,ColMajor>
176 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
178 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
179 RowMajorMatrix resRow(lhs.rows(), rhs.cols());
180 internal::conservative_sparse_sparse_product_impl<Rhs,Lhs,RowMajorMatrix>(rhs, lhs, resRow);
186 template<
typename Lhs,
typename Rhs,
typename ResultType>
187 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,RowMajor>
189 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
191 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
193 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> ColMajorMatrix;
194 ColMajorMatrix resCol(lhs.rows(), rhs.cols());
195 internal::conservative_sparse_sparse_product_impl<Lhs,Rhs,ColMajorMatrix>(lhs, rhs, resCol);
200 template<
typename Lhs,
typename Rhs,
typename ResultType>
201 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,
RowMajor,ColMajor,
RowMajor>
203 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
205 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> ColMajorMatrix;
206 ColMajorMatrix lhsCol = lhs;
207 ColMajorMatrix resCol(lhs.rows(), rhs.cols());
208 internal::conservative_sparse_sparse_product_impl<ColMajorMatrix,Rhs,ColMajorMatrix>(lhsCol, rhs, resCol);
213 template<
typename Lhs,
typename Rhs,
typename ResultType>
214 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,
RowMajor,
RowMajor>
216 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
218 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> ColMajorMatrix;
219 ColMajorMatrix rhsCol = rhs;
220 ColMajorMatrix resCol(lhs.rows(), rhs.cols());
221 internal::conservative_sparse_sparse_product_impl<Lhs,ColMajorMatrix,ColMajorMatrix>(lhs, rhsCol, resCol);
226 template<
typename Lhs,
typename Rhs,
typename ResultType>
229 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res)
231 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatrix;
232 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> ColMajorMatrix;
233 RowMajorMatrix resRow(lhs.rows(),rhs.cols());
234 internal::conservative_sparse_sparse_product_impl<Rhs,Lhs,RowMajorMatrix>(rhs, lhs, resRow);
236 ColMajorMatrix resCol(resRow);
245 #endif // EIGEN_CONSERVATIVESPARSESPARSEPRODUCT_H
Definition: Constants.h:264
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53