Gate Decomposition(#90) Added and Tested #106
Closed
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.
I implemented the asked changes in issue Gate Decomposition(#90). I added a step in the qiskit to braket converter which decomposes the qiskit circuit to a form which can be translated to braket using the built in dictionary.
The changes test and handle the prepare_state() method for preparing qubit states
circuit = QuantumCircuit(1)
circuit.u(np.pi/2, np.pi/3, np.pi/4, 0)
operator = (Z ^ Z) - 0.1 * (X ^ I)
evo = PauliEvolutionGate(operator, time=0.2)
circuit = SuzukiTrotter().synthesize(evo)
gates.Rz(lam),
gates.Ry(theta),
gates.Rz(phi),
gates.PhaseShift((lam + phi) * (0.5)),
gates.X(),
gates.PhaseShift((lam + phi) * (0.5)),
gates.X(),
gates.Rz(lam),
gates.Rx(pi / 2),
gates.Rz(theta),
gates.Rx(-pi / 2),
gates.Rz(phi)