Home
last modified time | relevance | path

Searched refs:estimated_nnz_prod (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseSparseProductWithPruning.h51 Index estimated_nnz_prod = lhsEval.nonZerosEstimate() + rhsEval.nonZerosEstimate(); in sparse_sparse_product_with_pruning_impl() local
53 res.reserve(estimated_nnz_prod); in sparse_sparse_product_with_pruning_impl()
54 double ratioColRes = double(estimated_nnz_prod)/(double(lhs.rows())*double(rhs.cols())); in sparse_sparse_product_with_pruning_impl()
DConservativeSparseSparseProduct.h42 Index estimated_nnz_prod = lhsEval.nonZerosEstimate() + rhsEval.nonZerosEstimate(); variable
45 res.reserve(Index(estimated_nnz_prod));