You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RelaxationNoisePass produces noisy circuits that cannot be run directly on Aer simulator when circuits with multi-qubit gates are supplied. Because the output circuit contains composite instructions labeled like "circuit-123". So before running the circuit on simulator, users must transpile the circuit to decompose the composite instructions.
Circuits created byRelaxationNoisePass should be able to be run directly on Aer simulator.
Suggested solutions
RelaxationNoisePass produces circuits that do not contains composite instructions.
(or AerSimulator becomes to be able to run circuits with composite instructions.)
The text was updated successfully, but these errors were encountered:
We should fix the relaxation noise pass so that it doesn't append composite gates for multi-qubit relaxation errors, but the actual single qubit quantum errors. Though im not sure if there is any easy way to do this via the DAG as the pass is currently implemented...
Informations
What is the current behavior?
RelaxationNoisePass
produces noisy circuits that cannot be run directly on Aer simulator when circuits with multi-qubit gates are supplied. Because the output circuit contains composite instructions labeled like "circuit-123". So before running the circuit on simulator, users must transpile the circuit to decompose the composite instructions.Steps to reproduce the problem
We can avoid the above error by transpiling the circuit (decomposing "circuit instructions") before running on the simulator.
However, it feels a little awkward.
What is the expected behavior?
Circuits created by
RelaxationNoisePass
should be able to be run directly on Aer simulator.Suggested solutions
(or AerSimulator becomes to be able to run circuits with composite instructions.)
The text was updated successfully, but these errors were encountered: