Home
last modified time | relevance | path

Searched refs:gmres (Results 1 – 5 of 5) sorted by relevance

/external/eigen/doc/examples/
Dmatrixfree_cg.cpp110 Eigen::GMRES<MatrixReplacement, Eigen::IdentityPreconditioner> gmres; in main() local
111 gmres.compute(A); in main()
112 x = gmres.solve(b); in main()
113 …std::cout << "GMRES: #iterations: " << gmres.iterations() << ", estimated error: " << gmres.err… in main()
117 Eigen::DGMRES<MatrixReplacement, Eigen::IdentityPreconditioner> gmres; in main() local
118 gmres.compute(A); in main()
119 x = gmres.solve(b); in main()
120 …std::cout << "DGMRES: #iterations: " << gmres.iterations() << ", estimated error: " << gmres.err… in main()
/external/eigen/unsupported/test/
Dgmres.cpp27 EIGEN_DECLARE_TEST(gmres) in EIGEN_DECLARE_TEST() argument
DCMakeLists.txt102 ei_add_test(gmres)
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h56 bool gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond, in gmres() function
323 …bool ret = internal::gmres(matrix(), b, x, Base::m_preconditioner, m_iterations, m_restart, m_erro…
/external/tensorflow/third_party/eigen3/
DLICENSE228 ./unsupported/test/gmres.cpp