-
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
Optimize PhaseShift, T, S gates #5876
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #5876 +/- ##
==========================================
- Coverage 99.67% 99.67% -0.01%
==========================================
Files 426 426
Lines 40875 40625 -250
==========================================
- Hits 40742 40491 -251
- Misses 133 134 +1 ☔ 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 @vincentmr! Please could you attach the corresponding Shortcut story?
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.
Looks good. Just one change requested to the phase shift implementation. If the suggestion doesn't work, this looks good. Happy to approve either way.
Tests are failing because of Catalyst, I'll just wait for the release and ping reviewers again. |
1 similar comment
Tests are failing because of Catalyst, I'll just wait for the release and ping reviewers again. |
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.
Looks great :) thanks for adding this 🚀
Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>
### Before submitting Please complete the following checklist when submitting a PR: - [x] All new features must include a unit test. If you've fixed a bug or added code that should be tested, add a test to the test directory! - [x] All new functions and code must be clearly commented and documented. If you do make documentation changes, make sure that the docs build and render correctly by running `make docs`. - [x] Ensure that the test suite passes, by running `make test`. - [x] Add a new entry to the `doc/releases/changelog-dev.md` file, summarizing the change, and including a link back to the PR. - [x] The PennyLane source code conforms to [PEP8 standards](https://www.python.org/dev/peps/pep-0008/). We check all of our code against [Pylint](https://www.pylint.org/). To lint modified files, simply `pip install pylint`, and then run `pylint pennylane/path/to/file.py`. When all the above are checked, delete everything above the dashed line and fill in the pull request template. ------------------------------------------------------------------------------------------------------------ **Context:** `PauliZ` has a fast implementation which relies on the sparsity of the operator in `DefaultQubit`. Several operations have the same non-zero matrix elements and could be similarly accelerated. One candidate is `PhaseShift` which is abundantly used in `iterative_qpe`. **Description of the Change:** Port the fast-`PauliZ` to `PhaseShift` and use the implementation for `PauliZ`, `S` and `T`. **Benefits:** Faster execution. For example the simple system ``` nwires = 24 dev = qml.device("default.qubit", shots=1) @qml.qnode(dev) def circuit(iters): for i in range(iters): qml.PhaseShift(0.1234, i % nwires) return qml.sample(wires=[0]) circuit(100) ``` takes 0m13.178s on `master` and 0m9.146s on `optim_apply_operations`. We observe the same speed-up for `S` and `T`. **Possible Drawbacks:** **Related GitHub Issues:** [sc-67827] --------- Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>
Before submitting
Please complete the following checklist when submitting a PR:
All new features must include a unit test.
If you've fixed a bug or added code that should be tested, add a test to the
test directory!
All new functions and code must be clearly commented and documented.
If you do make documentation changes, make sure that the docs build and
render correctly by running
make docs
.Ensure that the test suite passes, by running
make test
.Add a new entry to the
doc/releases/changelog-dev.md
file, summarizing thechange, and including a link back to the PR.
The PennyLane source code conforms to
PEP8 standards.
We check all of our code against Pylint.
To lint modified files, simply
pip install pylint
, and thenrun
pylint pennylane/path/to/file.py
.When all the above are checked, delete everything above the dashed
line and fill in the pull request template.
Context:
PauliZ
has a fast implementation which relies on the sparsity of the operator inDefaultQubit
. Several operations have the same non-zero matrix elements and could be similarly accelerated. One candidate isPhaseShift
which is abundantly used initerative_qpe
.Description of the Change:
Port the fast-
PauliZ
toPhaseShift
and use the implementation forPauliZ
,S
andT
.Benefits:
Faster execution. For example the simple system
takes 0m13.178s on
master
and 0m9.146s onoptim_apply_operations
. We observe the same speed-up forS
andT
.Possible Drawbacks:
Related GitHub Issues:
[sc-67827]