Skip to content

Latest commit

 

History

History
67 lines (54 loc) · 1.96 KB

CHANGELOG.md

File metadata and controls

67 lines (54 loc) · 1.96 KB

0.12.0 - 14 Oct 2019

Added

  • SVD by divide-and-conquer #164
  • Householder reflection #154, Arnoldi iteration #155

Changed

  • Replace operator::Operator* traits by new LinearOperator trait #159
  • ndarray 0.13.0 #172
  • blas-src 0.4.0, lapack-src 0.4.0, openblas-src 0.7.0 #174
  • restore static feature flag

0.11.1 - 12 June 2019

  • Hotfix for document generation #153

0.11.0 - 12 June 2019

Added

  • Dependency to cauchy 0.2 #139
  • generate::random_{unitary,regular} for debug use #140
  • krylov submodule
    • modified Gram-Schmit #149, #150
    • Krylov subspace methods are not implemented yet.

Removed

  • static feature #136
    • See README for detail
  • accelerate feature #141
  • Dependencies to derive-new, procedurals

Changed

  • Switch CI service: Circle CI -> Azure Pipeline #141
  • submodule lapack_traits is renamed to lapack #139
  • ndarray_linalg::Scalar trait is split into two parts #139
    • cauchy::Scalar is a refined real/complex common trait
    • lapack::Lapack is a trait for primitive types which LAPACK supports
  • Error type becomes simple #118 #127
  • Assertions becomes more verbose #147
  • blas-src 0.3, lapack-src 0.3
    • intel-mkl-src becomes 0.4, which supports Windows! #146

0.10.0 - 2 Sep 2018

Update Dependencies

  • ndarray 0.12
  • rand 0.5
  • num-complex 0.2
  • openblas-src 0.6
  • lapacke 0.2

See also #110

Added