10 #ifndef EIGEN_SPARSESPARSEPRODUCTWITHPRUNING_H
11 #define EIGEN_SPARSESPARSEPRODUCTWITHPRUNING_H
19 template<
typename Lhs,
typename Rhs,
typename ResultType>
20 static void sparse_sparse_product_with_pruning_impl(
const Lhs& lhs,
const Rhs& rhs, ResultType& res,
const typename ResultType::RealScalar& tolerance)
24 typedef typename remove_all<Lhs>::type::Scalar Scalar;
25 typedef typename remove_all<Lhs>::type::Index Index;
28 Index rows = lhs.innerSize();
29 Index cols = rhs.outerSize();
31 eigen_assert(lhs.outerSize() == rhs.innerSize());
34 AmbiVector<Scalar,Index> tempVector(rows);
42 Index estimated_nnz_prod = lhs.nonZeros() + rhs.nonZeros();
45 if(ResultType::IsRowMajor)
46 res.resize(cols, rows);
48 res.resize(rows, cols);
50 res.reserve(estimated_nnz_prod);
51 double ratioColRes = double(estimated_nnz_prod)/double(lhs.rows()*rhs.cols());
52 for (Index j=0; j<cols; ++j)
57 tempVector.init(ratioColRes);
59 for (
typename Rhs::InnerIterator rhsIt(rhs, j); rhsIt; ++rhsIt)
63 Scalar x = rhsIt.value();
64 for (
typename Lhs::InnerIterator lhsIt(lhs, rhsIt.index()); lhsIt; ++lhsIt)
66 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x;
70 for (
typename AmbiVector<Scalar,Index>::Iterator it(tempVector,tolerance); it; ++it)
71 res.insertBackByOuterInner(j,it.index()) = it.value();
76 template<
typename Lhs,
typename Rhs,
typename ResultType,
77 int LhsStorageOrder = traits<Lhs>::Flags&
RowMajorBit,
78 int RhsStorageOrder = traits<Rhs>::Flags&
RowMajorBit,
79 int ResStorageOrder = traits<ResultType>::Flags&
RowMajorBit>
80 struct sparse_sparse_product_with_pruning_selector;
82 template<
typename Lhs,
typename Rhs,
typename ResultType>
85 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
86 typedef typename ResultType::RealScalar RealScalar;
88 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res,
const RealScalar& tolerance)
90 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
91 internal::sparse_sparse_product_with_pruning_impl<Lhs,Rhs,ResultType>(lhs, rhs, _res, tolerance);
96 template<
typename Lhs,
typename Rhs,
typename ResultType>
99 typedef typename ResultType::RealScalar RealScalar;
100 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res,
const RealScalar& tolerance)
103 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::Index> SparseTemporaryType;
104 SparseTemporaryType _res(res.rows(), res.cols());
105 internal::sparse_sparse_product_with_pruning_impl<Lhs,Rhs,SparseTemporaryType>(lhs, rhs, _res, tolerance);
110 template<
typename Lhs,
typename Rhs,
typename ResultType>
113 typedef typename ResultType::RealScalar RealScalar;
114 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res,
const RealScalar& tolerance)
117 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
118 internal::sparse_sparse_product_with_pruning_impl<Rhs,Lhs,ResultType>(rhs, lhs, _res, tolerance);
123 template<
typename Lhs,
typename Rhs,
typename ResultType>
126 typedef typename ResultType::RealScalar RealScalar;
127 static void run(
const Lhs& lhs,
const Rhs& rhs, ResultType& res,
const RealScalar& tolerance)
129 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename Lhs::Index> ColMajorMatrixLhs;
130 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename Lhs::Index> ColMajorMatrixRhs;
131 ColMajorMatrixLhs colLhs(lhs);
132 ColMajorMatrixRhs colRhs(rhs);
133 internal::sparse_sparse_product_with_pruning_impl<ColMajorMatrixLhs,ColMajorMatrixRhs,ResultType>(colLhs, colRhs, res, tolerance);
150 #endif // EIGEN_SPARSESPARSEPRODUCTWITHPRUNING_H
Definition: Constants.h:264
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53