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
{{ message }}
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
process_tomography_circuits(circuit, measured_qubits) will return a list of QuantumCircuit objects containing the original circuit with state preparation circuits prepended, and measurement circuits appended.
currently the list measured_qubits can be smaller than the quantum register in circuit, i.e. one can do partial process tomography on a subsystem, or if measured_qubits = quantum register, it will be a p-tomo of the entire system.
what is not possible to have multiple partial process tomograpies.
Let's say quantum register qr = [0,1,2,3,4].
If I want to do process tomography only on q[0] and q[4], the only way I can do the is to generate two individual p-tomography circuits, one that measures q[0] and one that measured q[4].
It would be good if one could generate p-tomo circuits that run multiple subsystem p-tomos at the same time
The text was updated successfully, but these errors were encountered:
Running multiple subsystems in parallel is also impelmented in Randomized Benchmarking (RB), using the rb_pattern parameter.
Should we consider a unified general framework?
process_tomography_circuits(circuit, measured_qubits) will return a list of QuantumCircuit objects containing the original circuit with state preparation circuits prepended, and measurement circuits appended.
currently the list measured_qubits can be smaller than the quantum register in circuit, i.e. one can do partial process tomography on a subsystem, or if measured_qubits = quantum register, it will be a p-tomo of the entire system.
what is not possible to have multiple partial process tomograpies.
Let's say quantum register qr = [0,1,2,3,4].
If I want to do process tomography only on q[0] and q[4], the only way I can do the is to generate two individual p-tomography circuits, one that measures q[0] and one that measured q[4].
It would be good if one could generate p-tomo circuits that run multiple subsystem p-tomos at the same time
The text was updated successfully, but these errors were encountered: