Skip to content

Commit

Permalink
Fixing test issue for completely bounded spectral norm.
Browse files Browse the repository at this point in the history
  • Loading branch information
vprusso committed Jun 5, 2023
1 parent 12934c0 commit 0976835
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,4 +297,25 @@
- Adding `nonsignaling` function in `XORGame` that calculates the nonsignaling
value of an `XORGame` object (thanks to @juliusw352)

## 1.0.5
## 1.0.5

- Adding ability to perform parallel repetition for `XORGame` objects (thanks to
@juliusw352) https://github.com/vprusso/toqito/pull/143

- Thanks to @puva-thakre for updating the installation and contribution guidelines. https://github.com/vprusso/toqito/pull/153

- Thanks to @ryanprior for providing a CI/CD testing and linting pipeline https://github.com/vprusso/toqito/pull/154

- Thanks to @georgios-ts for fixing a bug in `apply_channel` https://github.com/vprusso/toqito/pull/155

- Thanks to @georgios-ts for fixing a bug in `sk_norm`. https://github.com/vprusso/toqito/pull/156

- Thanks to @georgios-ts for fixing a bug in `is_unitary` for channels. https://github.com/vprusso/toqito/pull/164

- Thanks to @georgios-ts for fixing an issue in `choi_to_kraus` for non-CP maps. https://github.com/vprusso/toqito/pull/162

- Thanks for @georgios-ts for adding the `channel_dim` feature to allow one to extract the dimensions of a quantum channel. https://github.com/vprusso/toqito/pull/161

- Thanks to @AmanieOxana for integrating the completely bounded trace and spectral norms. https://github.com/vprusso/toqito/pull/157

- Thanks to @ErikQQY for refactoring and simplifying the partial trace and partial transpose functions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ A BibTeX entry that you can use to cite `toqito` is provided here:
}
```

The `toqito` project has been used in the following works:

- Philip, Aby, Soorya Rethinasamy, Vincent Russo, and Mark M. Wilde. "Quantum Steering Algorithm for Estimating Fidelity of Separability." arXiv preprint [arXiv:2303.07911](https://arxiv.org/abs/2303.07911) (2023).

- Miszczak, Jarosław Adam. "Symbolic quantum programming for supporting applications of quantum computing technologies." arXiv preprint [arXiv:2302.09401](https://arxiv.org/abs/2302.09401) (2023).

## Contributing

All contributions, bug reports, bug fixes, documentation improvements,
Expand Down
4 changes: 2 additions & 2 deletions toqito/channel_metrics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Distance metrics for quantum channels."""
from toqito.channel_metrics.channel_fidelity import channel_fidelity
from toqito.channel_metrics.diamond_norm import diamond_norm
from toqito.channel_metrics.completely_bounded_spectral_norm import completely_bounded_spectral_norm
from toqito.channel_metrics.completely_bounded_trace_norm import completely_bounded_trace_norm
from toqito.channel_metrics.completely_bounded_trace_norm import completely_bounded_trace_norm
from toqito.channel_metrics.completely_bounded_spectral_norm import completely_bounded_spectral_norm

0 comments on commit 0976835

Please sign in to comment.