Jump to content

IML++

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Numberp (talk | contribs) at 01:15, 7 January 2007 (started page). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

IML++, or the Iterative Methods Library, is a C++ library for solving linear systems of equations. It is said to be "templated" in the sense that the same source code works for dense, sparse, and distributed matrices.

Some of the supported solutions methods are:

  • Richardson Iteration
  • Chebyshev Iteration
  • Conjugate Gradient (CG)
  • Conjugate Gradient Squared (CGS)
  • BiConjugate Gradient (BiCG)
  • BiConjugate Gradient Stabilized (BiCGSTAB)
  • Generalized Minimum Residual (GMRES)
  • Quasi-Minimal Residual Without Lookahead (QMR)

The IML++ home page