Home
last modified time | relevance | path

Searched refs:rhsIt (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DConservativeSparseSparseProduct.h52 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt)
54 Scalar y = rhsIt.value();
55 Index k = rhsIt.index();
275 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt)
277 Scalar y = rhsIt.value();
278 Index k = rhsIt.index();
DSparseSparseProductWithPruning.h62 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt) in sparse_sparse_product_with_pruning_impl()
66 Scalar x = rhsIt.value(); in sparse_sparse_product_with_pruning_impl()
67 for (typename evaluator<Lhs>::InnerIterator lhsIt(lhsEval, rhsIt.index()); lhsIt; ++lhsIt) in sparse_sparse_product_with_pruning_impl()
DTriangularSolver.h231 for (typename Rhs::InnerIterator rhsIt(other, col); rhsIt; ++rhsIt)
233 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
/external/llvm-project/mlir/include/mlir/Dialect/
DCommonFolders.h62 auto rhsIt = rhs.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.cpp480 auto rhsIt = blockData.block->begin(), rhsE = blockData.block->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()
523 if (rhsIt->isUsedOutsideOfBlock(mergeBlock) || in addToCluster()
529 if (lhsIt != lhsE || rhsIt != rhsE) in addToCluster()
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h114 const Scalar* EIGEN_RESTRICT rhsIt = rhs + alignedStart; in run() local
120 … Packet Bi = ploadu<Packet>(rhsIt); rhsIt += PacketSize; // FIXME should be aligned in most cases in run()