Remove cyclic-definition handling from Clifford.from_circuit#10441
Merged
jakelishman merged 3 commits intoJul 18, 2023
Conversation
This reliance on `RecursionError` could lead to CPython crashing, when the user had raised the recursion limit beyond what their operating system could actually support in terms of Python frames. This was particularly an issue with Windows when in a context that `jedi` is active (such as in an IPython session, or if `seaborn` was imported), since `jedi` unilaterally sets the recursion limit to 3000, while CPython tends to overflow the stack on Windows at around 2700 frames. Recursive `definition` fields are not valid data in the Qiskit model, as the definition is supposed to be hierarchical, and a decomposition in terms of gates that do not involve the current one in any form. For defining equivalences that may involve cycles, one should use the `EquivalenceLibrary` objects that Terra manages, and the transpiler takes advantage of via the `BasisTranslator`.
Collaborator
|
One or more of the the following people are requested to review this:
|
Pull Request Test Coverage Report for Build 5586605838
💛 - Coveralls |
itoko
approved these changes
Jul 18, 2023
Contributor
itoko
left a comment
There was a problem hiding this comment.
LGTM. The removal of test_from_gate_with_cyclic_definition makes sense to me now. (I didn't understand recursion definition fields are invalid in Qiskit model when I wrote it.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This reliance on
RecursionErrorcould lead to CPython crashing, when the user had raised the recursion limit beyond what their operating system could actually support in terms of Python frames. This was particularly an issue with Windows when in a context thatjediis active (such as in an IPython session, or ifseabornwas imported), sincejediunilaterally sets the recursion limit to 3000, while CPython tends to overflow the stack on Windows at around 2700 frames.Recursive
definitionfields are not valid data in the Qiskit model, as the definition is supposed to be hierarchical, and a decomposition in terms of gates that do not involve the current one in any form. For defining equivalences that may involve cycles, one should use theEquivalenceLibraryobjects that Terra manages, and the transpiler takes advantage of via theBasisTranslator.Details and comments
Close #10415. @itoko, you might want to look at this, since I don't know if you had a use-case in mind for the original recursion handling.
This should fix the CI problems that #8967 and #10208 have encountered.