Signal Processing with Classical Bits #17
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.
Before submitting, please check the following:
tox
)black -l 120 <filename>
Then, please fill in below:
Context (if applicable):
Previously, when a node has corrections from multiple nodes, gate operations according to the measurement results were applied for each correction node individually. In the new version of Qiskit (> 1.0), the capabilities of classical expressions have been enhanced, allowing for signal processing at the classical bit level. It is preferable to perform XOR processing on multiple signals using classical bits and then apply the gate operation only once based on the result.
Description of the change:
signal_process
function in the IBMQ backend so that it uses Qiskit’s classical expressions for signal processing.pattern
ingraphix
.Related issue:
also see that checks (github actions) pass.
If lint check keeps failing, try installing black==22.8.0 as behavior seems to vary across versions.