-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Add new API for inserting multiple operations into the DAGCircuit
in Rust.
#13335
Open
raynelfss
wants to merge
10
commits into
Qiskit:main
Choose a base branch
from
raynelfss:dag-concatenate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
- Add struct that allows continuous addition of instructions into the back of the `DAGCircuit` by performing edge modifications in the output nodes at the end of the additions. - The new struct includes the following new methods: - `push_operation_back` which pushes a valid `PackedInstruction` into the back of the `DAGCircuit`. It behaves very similarly to `push_back`. - `apply_operation_back` which inserts a new operation into the back of the `DAGCircuit`. It has two variants which depend on the ownership of the bit indices (`Qubit`, `Clbit`). - `pack_instruction`: private method that basically does just that, it creates a valid instance of `PackedInstruction` based on other provided atributes. - Modified `DAGCircuit::extend` to use this new API, without any considerable losses.
raynelfss
added
Changelog: None
Do not include in changelog
Rust
This PR or issue is related to Rust code in the repository
labels
Oct 16, 2024
One or more of the following people are relevant to this code:
|
raynelfss
changed the title
[DAGCircuit improvements] Add new API for inserting multiple operations in Rust.
Add new API for inserting multiple operations into the Oct 16, 2024
DAGCircuit
in Rust.
Pull Request Test Coverage Report for Build 11619497041Details
💛 - Coveralls |
4 tasks
- Add struct that allows usage of both slice or owned collections of bit indices. - Leverage use of `as_concat()` in `circuit_to_dag`.
- Leverage usage of new methods in `UnitarySynthesis` after Qiskit#13141 merged.
After rewriting the logic of the
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Changelog: None
Do not include in changelog
Rust
This PR or issue is related to Rust code in the repository
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
Adds a new struct
DAGCircuitConcat
(name can be changed 😄) that enables chained addition of instructions both valid and invalid into theDAGCircuit
. Also, adapts existing structures to those new changes.Details and comments
DAGCircuit
by performing edge modifications in the output nodes at the end of the additions.push_operation_back
which pushes a validPackedInstruction
into the back of theDAGCircuit
. It behaves very similarly topush_back
.apply_operation_back
which inserts a new operation into the back of theDAGCircuit
. It has two variants which depend on the ownership of the bit indices (Qubit
,Clbit
).pack_instruction
: private method that does just that, it creates a valid instance ofPackedInstruction
based on other provided attributes.DAGCircuit::extend
to use this new API, without any considerable losses.What about front additions?
This struct currently does not support adding instructions continuously to the front of the
DAGCircuit
because the methodology for that is a little different. It requires doing much more shifting than adding to the back, therefore I suggest this could be done in a follow-up.Questions and comments?
Feel free to add these below as a review or comment 😸