-
Notifications
You must be signed in to change notification settings - Fork 603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate various unused pauli utils #5057
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #5057 +/- ##
==========================================
- Coverage 99.67% 99.65% -0.02%
==========================================
Files 394 394
Lines 35670 35395 -275
==========================================
- Hits 35554 35274 -280
- Misses 116 121 +5 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @timmysilv!
This is great! |
# Conflicts: # doc/development/deprecations.rst # doc/releases/changelog-dev.md
**Context:** Much of the `pauli` module has been sitting stale, and is now being deprecated. **Description of the Change:** - Deprecated `pauli_mult_with_phase`, `pauli_mult`, `_pauli_mult`, `_binary_matrix` and `_get_pauli_map` from the `pauli` module - Fixed some places that are still using `ps1 * ps2` instead of `ps1 @ ps2`. They don't seem to be caught by tests because they are used at test collection time, and pytest only catches ones at test run-time **Benefits:** cleaning up pennylane! [sc-38632]
Context:
Much of the
pauli
module has been sitting stale, and is now being deprecated.Description of the Change:
pauli_mult_with_phase
,pauli_mult
,_pauli_mult
,_binary_matrix
and_get_pauli_map
from thepauli
moduleps1 * ps2
instead ofps1 @ ps2
. They don't seem to be caught by tests because they are used at test collection time, and pytest only catches ones at test run-timeBenefits:
cleaning up pennylane!
[sc-38632]