Skip to content

Commit

Permalink
bump: 2.0 -> 2.1.0 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolarovszki authored Feb 13, 2023
1 parent e1cd2dc commit e596ea5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Changelog


## [2.1.0] - 2023-02-08

### Added

- Performance increase for the `PureFockSimulator` and `TensorflowPureFockSimulator`.

### Fixed

- `GaussianState.fidelity` gave incorrect results for multiple modes and it
needed to be corrected.
- During Williamson decomposition, sometimes `scipy.linalg.sqrtm` returned with
complex matrices instead of real ones which caused problems so it is manually
casted to real.
- In `TensorflowPureFockSimulator`, the gradient of the displacement gate
matrix was not applied properly to the upstream gradient, a conjugation is
added.
- Using `TensorflowPureFockSimulator`, the input of the `Interferometer` gate
was not converted to a `tensorflow.Tensor` automatically, which has been
included.


## [2.0.0] - 2022-10-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion piquasso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@
"LossyInterferometer",
]

__version__ = "2.0.0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name="piquasso",
version="2.0.0",
version="2.1.0",
packages=find_packages(exclude=["tests.*", "tests", "scripts", "scripts.*"]),
maintainer="Budapest Quantum Computing Group",
maintainer_email="[email protected]",
Expand Down

0 comments on commit e596ea5

Please sign in to comment.