|
68 | 68 | SynchronizeTerminalMeasurements,
|
69 | 69 | )
|
70 | 70 |
|
| 71 | +from cirq.transformers.analytical_decompositions import ( |
| 72 | + compute_cphase_exponents_for_fsim_decomposition, |
| 73 | + decompose_cphase_into_two_fsim, |
| 74 | + decompose_clifford_tableau_to_operations, |
| 75 | + decompose_multi_controlled_x, |
| 76 | + decompose_multi_controlled_rotation, |
| 77 | + decompose_two_qubit_interaction_into_four_fsim_gates, |
| 78 | + is_negligible_turn, |
| 79 | + prepare_two_qubit_state_using_cz, |
| 80 | + prepare_two_qubit_state_using_sqrt_iswap, |
| 81 | + single_qubit_matrix_to_gates, |
| 82 | + single_qubit_matrix_to_pauli_rotations, |
| 83 | + single_qubit_matrix_to_phased_x_z, |
| 84 | + single_qubit_matrix_to_phxz, |
| 85 | + single_qubit_op_to_framed_phase_form, |
| 86 | + three_qubit_matrix_to_operations, |
| 87 | + two_qubit_matrix_to_diagonal_and_operations, |
| 88 | + two_qubit_matrix_to_operations, |
| 89 | + two_qubit_matrix_to_sqrt_iswap_operations, |
| 90 | +) |
| 91 | + |
71 | 92 | from cirq import _compat
|
72 | 93 |
|
73 | 94 | _compat.deprecated_submodule(
|
|
0 commit comments