Skip to content

Commit

Permalink
Cleaned up formatting for quil_input_test
Browse files Browse the repository at this point in the history
  • Loading branch information
bramathon authored and jselig-rigetti committed Oct 16, 2023
1 parent 286f7b5 commit 86fa3dc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions cirq-rigetti/cirq_rigetti/quil_input_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from inspect import signature

import numpy as np
import pytest
from inspect import signature

from pyquil.quil import Program
from pyquil.simulation import matrices
from pyquil.simulation.tools import program_unitary
Expand Down Expand Up @@ -47,9 +49,6 @@
def test_gate_conversion():
"""Check that the gates all convert with matching unitaries."""
for quil_gate, cirq_gate in SUPPORTED_GATES.items():
# pyquil has an error in the RYY defintion
if quil_gate == "RYY":
continue
if quil_gate in PARAMETRIC_TRANSFORMERS:
pyquil_def = getattr(matrices, quil_gate)
sig = signature(pyquil_def)
Expand Down Expand Up @@ -93,6 +92,7 @@ def test_gate_conversion():
XY(pi/2) 1 2
RZZ(pi/2) 0 1
RXX(pi/2) 1 2
RYY(pi/2) 0 2
FSIM(pi/4, pi/8) 1 2
PHASEDFSIM(pi/4, -pi/6, pi/2, pi/3, pi/8) 0 1
CCNOT 0 1 2
Expand Down Expand Up @@ -135,6 +135,7 @@ def test_circuit_from_quil():
ISwapPowGate(exponent=1 / 2, global_shift=0.0)(q1, q2),
ZZPowGate(exponent=1 / 2, global_shift=-0.5)(q0, q1),
XXPowGate(exponent=1 / 2, global_shift=-0.5)(q1, q2),
YYPowGate(exponent=1 / 2, global_shift=-0.5)(q0, q2),
FSimGate(theta=-np.pi / 8, phi=-np.pi / 8)(q1, q2),
PhasedFSimGate(
theta=-np.pi / 8, zeta=-np.pi / 6, chi=np.pi / 2, gamma=np.pi / 3, phi=-np.pi / 8
Expand All @@ -149,8 +150,6 @@ def test_circuit_from_quil():
# build the same Circuit, using Quil
quil_circuit = circuit_from_quil(Program(QUIL_PROGRAM))
# test Circuit equivalence
print(cirq_circuit)
print(quil_circuit)
assert cirq_circuit == quil_circuit

pyquil_circuit = Program(QUIL_PROGRAM)
Expand Down

0 comments on commit 86fa3dc

Please sign in to comment.