[MLIR] Add nested adjoint/ctrl support to quantum.ctrl and quantum.adjoint regions - #3090
Open
maliasadi wants to merge 5 commits into
Open
[MLIR] Add nested adjoint/ctrl support to quantum.ctrl and quantum.adjoint regions#3090maliasadi wants to merge 5 commits into
maliasadi wants to merge 5 commits into
Conversation
maliasadi
force-pushed
the
ctrl-lowering-nested
branch
from
August 4, 2026 18:51
caea19a to
ceba5fe
Compare
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.
Context:
This PR adds the nested
adjointandctrlcompositin.At the op level,
adjointandctrlare commuting fields (Adjoint(Ctrl(g)) == Ctrl(Adjoint(g))), so the only work is composing the two region lowerings! Both passes now defer silently when their region still contains the other kind of unlowered region:ctrl-loweringdefers on a nestedquantum.adjoint;adjoint-loweringdefers on a nestedquantum.ctrl.^ Nesting will be reduced innermost-out: each pass reduces the layers whose body is already op-level gates, and the modifiers land on the gate in any order. So a controlled gate under adjoint just gets its adjoint flag flipped while preserving control wires & values.
Benefits:
adjointandctrlcomposition.Related GitHub Issues:
[sc-125409]