OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:estimated_nnz_prod
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SparseCore/
SparseSparseProductWithPruning.h
42
Index
estimated_nnz_prod
= lhs.nonZeros() + rhs.nonZeros();
local
50
res.reserve(
estimated_nnz_prod
);
51
double ratioColRes = double(
estimated_nnz_prod
)/double(lhs.rows()*rhs.cols());
ConservativeSparseSparseProduct.h
38
Index
estimated_nnz_prod
= lhs.nonZeros() + rhs.nonZeros();
local
41
res.reserve(Index(
estimated_nnz_prod
));
Completed in 872 milliseconds