Skip to content

Releases: andrenarchy/krypy

v2.2.0

23 Apr 14:26
Compare
Choose a tag to compare
  • Introduce convenience wrappers #70

v2.1.7

18 Jan 11:46
Compare
Choose a tag to compare
  • Fix #61.
  • Minor fixes and doc updates.

v2.1.5

22 Mar 09:37
Compare
Choose a tag to compare

Fix a Python 3 issue. Thanks to @zimoun for finding and fixing this!

krypy v2.1.4

18 Oct 16:21
Compare
Choose a tag to compare

Fix readthedocs build

krypy v2.1.3

18 Oct 15:26
Compare
Choose a tag to compare

Improved README for PyPi.

krypy v2.1.2

16 Aug 16:59
Compare
Choose a tag to compare

Drop support for scipy 0.12

krypy v2.1.1

17 Apr 08:05
Compare
Choose a tag to compare

Release with usability improvements. Several simplifications were made for an easier use of the functionality in krypy.recycling. No API changes have been made.

krypy v2.1.0

11 Apr 11:06
Compare
Choose a tag to compare

This is a feature- and bug fix update:

  • new linsys.TimedLinearSystem that times all operations.
  • more mature recycling strategies based on timings.
  • more efficient computation of residual norms in deflation.bound_pseudo via utils.get_residual_norms.
  • bug fixed in deflation.Arnoldifyer.

krypy v2.0.0

14 Mar 13:44
Compare
Choose a tag to compare

Now with deflation and recycling support.

krypy v2.0.0b1

11 Mar 15:45
Compare
Choose a tag to compare
krypy v2.0.0b1 Pre-release
Pre-release

Beta release!

  • new API
  • linear systems are now handled via the linsys.LinearSystem class
  • linsys.Minres and linsys.Gmres now use utils.Arnoldi
  • new utils.Arnoldi class features several orthogonalization algorithms:
    • modified Gram-Schmidt
    • iterated modified Gram-Schmit
    • Lanczos
    • Householder
  • all solvers in linsys can return the corresponding Arnoldi relation
  • new submodule deflation enables deflation with all solvers from linsys
  • new submodule recycling provides methods for recycling data while solving a sequence of linear systems.