iqm.cirq_iqm.optimizers.simplify_circuit#
- iqm.cirq_iqm.optimizers.simplify_circuit(circuit: Circuit, *, max_iterations: int = 20, drop_final_rz: bool = False) Circuit #
Simplifies and optimizes the given circuit.
Currently it
merges any neighboring gates belonging to the same one-parameter family
merges all one-qubit rotations into phased X rotations followed by Z rotations
pushes the Z rotations towards the end of the circuit as far as possible
drops any empty Moments
This sequence of optimization passes is repeated until the circuit hits a fixed point, or
max_iterations
is exceeded.Finally, it removes Z rotations that are immediately followed by a Z-basis measurement.