Home
last modified time | relevance | path

Searched refs:precond (Results 1 – 7 of 7) sorted by relevance

/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DDGMRES.h215 void dgmres(const MatrixType& mat,const Rhs& rhs, Dest& x, const Preconditioner& precond) const;
218 …int dgmresCycle(const MatrixType& mat, const Preconditioner& precond, Dest& x, DenseVector& r0, Re…
220 …int dgmresComputeDeflationData(const MatrixType& mat, const Preconditioner& precond, const Index& …
257 const Preconditioner& precond) const
267 x = precond.solve(x);
280 dgmresCycle(mat, precond, x, r0, beta, normRhs, nbIts);
300 …reconditioner>::dgmresCycle(const MatrixType& mat, const Preconditioner& precond, Dest& x, DenseVe…
318 tv2 = precond.solve(tv1);
322 tv2 = precond.solve(m_V.col(it)); // User's selected preconditioner
378 x = x + precond.solve(tv2);
[all …]
DGMRES.h56 bool gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond, in gmres() argument
74 VectorType r0 = precond.solve(p0); in gmres()
107 v=precond.solve(t); in gmres()
179 VectorType p1=precond.solve(p0); in gmres()
DMINRES.h32 const Preconditioner& precond, int& iters, in minres() argument
52 VectorType w_new(precond.solve(v_new)); // initialize w_new in minres()
92 w_new = precond.solve(v_new); // overwrite w_new in minres()
/external/eigen/Eigen/src/IterativeLinearSolvers/
DConjugateGradient.h29 const Preconditioner& precond, int& iters, in conjugate_gradient() argument
63 p = precond.solve(residual); //initial search direction in conjugate_gradient()
80 z = precond.solve(residual); // approximately solve for "A z = residual" in conjugate_gradient()
DBiCGSTAB.h30 const Preconditioner& precond, int& iters, in bicgstab() argument
84 y = precond.solve(p); in bicgstab()
91 z = precond.solve(s); in bicgstab()
/external/llvm/test/Transforms/IndVarSimplify/
Dno-iv-rewrite.ll10 %precond = icmp slt i32 0, %n
11 br i1 %precond, label %ph, label %return
49 %precond = icmp slt i32 0, %n
50 br i1 %precond, label %ph, label %return
90 %precond = icmp ne i32* %first, %last
91 br i1 %precond, label %ph, label %return
Delim-extend.ll40 %precond = icmp sgt i32 %limit, %init
41 br i1 %precond, label %loop, label %return