Home
last modified time | relevance | path

Searched refs:lhsIt (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DConservativeSparseSparseProduct.h56 for (typename evaluator<Lhs>::InnerIterator lhsIt(lhsEval, k); lhsIt; ++lhsIt)
58 Index i = lhsIt.index();
59 Scalar x = lhsIt.value();
279 for (typename evaluator<Lhs>::InnerIterator lhsIt(lhsEval, k); lhsIt; ++lhsIt)
281 Index i = lhsIt.index();
282 Scalar x = lhsIt.value();
DSparseSparseProductWithPruning.h67 for (typename evaluator<Lhs>::InnerIterator lhsIt(lhsEval, rhsIt.index()); lhsIt; ++lhsIt) in sparse_sparse_product_with_pruning_impl()
69 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x; in sparse_sparse_product_with_pruning_impl()
/external/llvm-project/mlir/include/mlir/Dialect/
DCommonFolders.h61 auto lhsIt = lhs.getValues<ElementValueT>().begin(); in constFoldBinaryOp() local
65 for (size_t i = 0, e = lhs.getNumElements(); i < e; ++i, ++lhsIt, ++rhsIt) in constFoldBinaryOp()
66 elementResults.push_back(calculate(*lhsIt, *rhsIt)); in constFoldBinaryOp()
/external/llvm-project/mlir/lib/Transforms/Utils/
DRegionUtils.cpp479 auto lhsIt = leaderBlock->begin(), lhsE = leaderBlock->end(); in addToCluster() local
481 for (int opI = 0; lhsIt != lhsE && rhsIt != rhsE; ++lhsIt, ++rhsIt, ++opI) { in addToCluster()
484 &*lhsIt, &*rhsIt, OperationEquivalence::Flags::IgnoreOperands)) in addToCluster()
489 auto lhsOperands = lhsIt->getOperands(), rhsOperands = rhsIt->getOperands(); in addToCluster()
490 for (int operand : llvm::seq<int>(0, lhsIt->getNumOperands())) { in addToCluster()
524 lhsIt->isUsedOutsideOfBlock(leaderBlock)) { in addToCluster()
529 if (lhsIt != lhsE || rhsIt != rhsE) in addToCluster()