Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MatrixAlgebraKit"
uuid = "6c742aac-3347-4629-af66-fc926824e5e4"
version = "0.6.4"
version = "0.6.5"
authors = ["Jutho Haegeman <jutho.haegeman@ugent.be>, Lukas Devos, Katharine Hyatt and contributors"]

[deps]
Expand Down
25 changes: 21 additions & 4 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,38 @@ When making changes to this project, please update the "Unreleased" section with

When releasing a new version, move the "Unreleased" changes to a new version section with the release date.

## [Unreleased](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.4...HEAD)
## [Unreleased](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.5...HEAD)

### Added

### Changed

- The default behavior of SVD-based nullspaces now includes some small tolerance ([#172](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/170)).
- The Mooncake rules for truncated decompositions with `TruncatedAlgorithm` now use the pullbacks that make use of the full decomposition. ([#171](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/171))

### Deprecated

### Removed

### Fixed

### Performance
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems we have not yet grown into the habit to update this list within the actual PRs.


## [0.6.5](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.4...v0.6.5) - 2026-03-24

### Added

- Add AD (ChainRules/Mooncake/Enzyme) pullback rules for (anti-)hermitian projection ([#174](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/174)).
- Add `TruncationUnion` to support combining multiple truncation schemes by supplying minimal ranks ([#183](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/183)).
- Add `SafeDivideAndConquer` algorithm variant for more robust singular value decompositions ([#185](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/185)).
- Add `DefaultAlgorithm` type for explicit dispatch to the default algorithm ([#195](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/195)).

### Changed

- The default behavior of SVD-based nullspaces now includes some small tolerance ([#172](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/170)).
- The Mooncake rules for truncated decompositions with `TruncatedAlgorithm` now use the pullbacks that make use of the full decomposition. ([#171](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/171))
- Default algorithms now defined for `SubArray` and `ReshapedArray` ([#182](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/182)).
- Separated `Algorithm` and `Driver` concepts for QR/LQ, SVD, and Schur/Eig decompositions ([#178](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/178), [#189](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/189), [#194](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/194), [#196](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/196)).

### Fixed

- QR and LQ decompositions were supposed to default to `positive = true` ([#170](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/170)).

## [0.6.4](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.3...v0.6.4) - 2026-01-29
Expand Down
2 changes: 1 addition & 1 deletion src/implementations/eigh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ end
# ==========================

for f! in (:heevr!, :heevd!, :heev!, :heevx!, :heevj!)
@eval $f!(driver::Driver, args...) = throw(ArgumentError("$driver does not provide $f!"))
@eval $f!(driver::Driver, args...) = throw(ArgumentError("$driver does not provide $($(f!))"))
end

# LAPACK implementations
Expand Down
2 changes: 1 addition & 1 deletion src/implementations/svd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ end
# ==========================

for f! in (:gesdd!, :gesvd!, :gesvdj!, :gesvdp!, :gesvdx!, :gesvdr!, :gesdvd!)
@eval $f!(driver::Driver, args...) = throw(ArgumentError("$driver does not provide $f!"))
@eval $f!(driver::Driver, args...) = throw(ArgumentError("$driver does not provide $($(f!))"))
end

"""
Expand Down
Loading