import inspect
import pickle
from typing import Optional
import pytest
from syrupy.assertion import SnapshotAssertion
from quil.instructions import Gate, Instruction, Jump, Qubit, QubitPlaceholder, Target, TargetPlaceholder
from quil.program import InstructionTarget, Program
from quil import QuilError
def test_pickle():
program = Program.parse(
"""
DECLARE ro BIT[2]
H 0
CNOT 0 1
MEASURE 0 ro[0]
MEASURE 1 ro[1]
"""
)
pickled = pickle.dumps(program)
unpickled = pickle.loads(pickled)
assert program == unpickled
def test_custom_resolver():
qubit_placeholder = QubitPlaceholder()
def qubit_resolver(qubit: QubitPlaceholder) -> Optional[int]:
return {qubit_placeholder: 9}.get(qubit)
target_placeholder = TargetPlaceholder("base-target")
def target_resolver(target: TargetPlaceholder) -> Optional[str]:
print("resolving target", target)
return {target_placeholder: "test"}.get(target)
program = Program()
program.add_instructions(
[
Instruction.Gate(Gate("H", [], [Qubit.Placeholder(qubit_placeholder)], [])),
Instruction.Jump(Jump(Target.Placeholder(target_placeholder))),
]
)
with pytest.raises(QuilError):
program.to_quil()
program.resolve_placeholders_with_custom_resolvers(target_resolver=target_resolver, qubit_resolver=qubit_resolver)
print(program.to_quil_or_debug())
assert program.to_quil() == "H 9\nJUMP @test\n"
def test_single_block_control_flow_analysis():
program = Program.parse(
"""
DECLARE ro BIT[2]
H 0
CNOT 0 1
MEASURE 0 ro[0]
MEASURE 1 ro[1]
"""
)
assert program.used_qubits == {Qubit.Fixed(0), Qubit.Fixed(1)}
cfg = program.control_flow_graph()
blocks = cfg.basic_blocks()
assert len(blocks) == 1
assert blocks[0].terminator is None
block_program = Program()
block_program.add_instructions(blocks[0].instructions)
assert (
block_program.to_quil()
== """H 0
CNOT 0 1
MEASURE 0 ro[0]
MEASURE 1 ro[1]
"""
)
def test_multi_block_control_flow_analysis():
program = Program.parse(
"""
DECLARE ro BIT[1]
LABEL @start
MEASURE 0 ro[0]
JUMP-UNLESS @end ro[0]
X 0
JUMP @start
LABEL @end
HALT
"""
)
assert program.used_qubits == {Qubit.Fixed(0)}
cfg = program.control_flow_graph()
assert cfg.has_dynamic_control_flow()
blocks = cfg.basic_blocks()
assert len(blocks) == 3
def test_basic_block_fixed_schedule():
program = Program.parse(
"""DEFFRAME 0 "flux_tx_cz":
TEST: 1
DEFFRAME 1 "flux_tx_iswap":
TEST: 1
DEFFRAME 1 "flux_tx_cz":
TEST: 1
DEFFRAME 1 "flux_tx_iswap":
TEST: 1
DEFFRAME 2 "flux_tx_cz":
TEST: 1
DEFFRAME 2 "flux_tx_iswap":
TEST: 1
DEFFRAME 3 "flux_tx_cz":
TEST: 1
DEFFRAME 3 "flux_tx_iswap":
TEST: 1
# Simplified version
DEFCAL CZ q0 q1:
FENCE q0 q1
SET-PHASE q0 "flux_tx_cz" 0.0
SET-PHASE q1 "flux_tx_iswap" 0.0
NONBLOCKING PULSE q0 "flux_tx_cz" erf_square(duration: 6.000000000000001e-08, pad_left: 0.1e-08, pad_right: 0.1e-08)
NONBLOCKING PULSE q1 "flux_tx_iswap" erf_square(duration: 6.000000000000001e-08, pad_left: 0.1e-08, pad_right: 0.1e-08)
SHIFT-PHASE q0 "flux_tx_cz" 1.0
SHIFT-PHASE q1 "flux_tx_iswap" 1.0
FENCE q0 q1
CZ 0 1
CZ 2 3
CZ 0 2
"""
)
cfg = program.control_flow_graph()
blocks = cfg.basic_blocks()
assert len(blocks) == 1
block = blocks[0]
schedule = block.as_schedule_seconds(program)
items = schedule.items
assert len(items) == 3
items = {item.instruction_index: item for item in items}
assert items[0].time_span.start == 0.0
assert items[0].time_span.start == items[1].time_span.start
assert items[0].time_span.duration == items[1].time_span.duration
assert items[0].time_span.start + items[0].time_span.duration == items[2].time_span.start
assert items[0].time_span.duration == items[2].time_span.duration
def test_filter_instructions(snapshot: SnapshotAssertion):
input = """DECLARE foo REAL[1]
DEFFRAME 1 "rx":
\tHARDWARE-OBJECT: "hardware"
DEFCAL I 1:
\tDELAY 0 1
DEFGATE BAR AS MATRIX:
\t0, 1
\t1, 0
H 1
CNOT 2 3
"""
program = Program.parse(input)
program_without_quil_t = program.filter_instructions(lambda instruction: not instruction.is_quil_t())
assert program_without_quil_t.to_quil() == snapshot
def test_calibration_expansion():
import inspect
program_text = inspect.cleandoc(
"""
DEFCAL X 0:
Y 0
DEFCAL Y 0:
Z 0
X 0
Y 0
"""
)
program = Program.parse(program_text)
expanded_program, source_map = program.expand_calibrations_with_source_map()
expected_program_text = inspect.cleandoc(
"""
DEFCAL X 0:
Y 0
DEFCAL Y 0:
Z 0
Z 0
Z 0
"""
)
assert expanded_program.to_quil() == Program.parse(expected_program_text).to_quil()
targets = source_map.list_targets_for_source_index(0)
match targets:
case [InstructionTarget.Calibration(expanded)]:
pass
case _:
assert False, f"unexpected targets: {targets}"
assert expanded.range == range(0, 1)
assert source_map.list_sources_for_target_index(0) == [0]
targets = source_map.list_targets_for_source_index(1)
match targets:
case [InstructionTarget.Calibration(expanded)]:
pass
case _:
assert False, f"unexpected targets: {targets}"
assert expanded.range == range(1, 2)
assert source_map.list_sources_for_target_index(1) == [1]
assert source_map.list_targets_for_source_index(2) == []
def test_defgate_sequence_expansion_triple_recursive():
import inspect
program_text = inspect.cleandoc(
"""
DEFGATE some_u2_cycle(%param1, %param2, %param3, %param4, %param5, %param6) a b AS SEQUENCE:
pmw3(%param1, %param2, %param3) a
pmw3(%param4, %param5, %param6) b
DEFGATE pmw3(%param1, %param2, %param3) a AS SEQUENCE:
pmw(%param1) a
pmw(%param2) a
pmw(%param3) a
DEFGATE pmw(%param1) a AS SEQUENCE:
RZ(%param1) a
RX(pi/2) a
RZ(-%param1) a
some_u2_cycle(-pi, -pi/2, -pi/4, pi/4, pi/2, pi) 0 1
"""
)
program = Program.parse(program_text)
expanded_program, source_map = program.expand_defgate_sequences_with_source_map()
expected_program_text = inspect.cleandoc(
"""
RZ(-pi) 0
RX(pi/2) 0
RZ(-(-pi)) 0
RZ(-pi/2) 0
RX(pi/2) 0
RZ(-(-pi/2)) 0
RZ(-pi/4) 0
RX(pi/2) 0
RZ(-(-pi/4)) 0
RZ(pi/4) 1
RX(pi/2) 1
RZ(-(pi/4)) 1
RZ(pi/2) 1
RX(pi/2) 1
RZ(-(pi/2)) 1
RZ(pi) 1
RX(pi/2) 1
RZ(-(pi)) 1
"""
)
assert expanded_program.to_quil() == Program.parse(expected_program_text).to_quil()
targets = source_map.list_targets_for_source_index(0)
match targets:
case [InstructionTarget.DefGateSequence(expanded)]:
pass
case _:
assert False, f"unexpected targets: {targets}"
assert expanded.range == range(0, 18)
assert source_map.list_sources_for_target_index(0) == [0]
assert source_map.list_sources_for_target_index(10) == [0]
assert source_map.list_sources_for_target_index(17) == [0]
targets = source_map.list_targets_for_source_index(1)
assert len(targets) == 0
def test_defgate_sequence_expansion_with_filtering():
import inspect
program_text = inspect.cleandoc(
"""
DECLARE ro BIT[2]
DEFGATE seq1(%param1) a AS SEQUENCE:
RZ(%param1) a
seq2() a
DEFGATE seq2() a AS SEQUENCE:
H a
DEFGATE seq3() a AS SEQUENCE:
X a
seq1(pi/2) 0
seq2() 1
seq3 2
MEASURE 0 ro[0]
MEASURE 1 ro[1]
"""
)
program = Program.parse(program_text)
expansion_filter = lambda key: key != "seq1"
expanded_program, source_map = program.expand_defgate_sequences_with_source_map(predicate=expansion_filter)
expected_program_text = inspect.cleandoc(
"""
DECLARE ro BIT[2]
DEFGATE seq1(%param1) a AS SEQUENCE:
RZ(%param1) a
seq2() a
DEFGATE seq2() a AS SEQUENCE:
H a
seq1(pi/2) 0
H 1
X 2
MEASURE 0 ro[0]
MEASURE 1 ro[1]
"""
)
assert expanded_program.to_quil() == Program.parse(expected_program_text).to_quil()
targets = source_map.list_targets_for_source_index(0)
match targets:
case [InstructionTarget.Unmodified(0)]:
pass
case _:
assert False, f"unexpected targets: {targets}"
assert source_map.list_sources_for_target_index(0) == [0]
assert source_map.list_sources_for_target_index(1) == [1]
assert source_map.list_sources_for_target_index(2) == [2]
targets = source_map.list_targets_for_source_index(1)
match targets:
case [InstructionTarget.DefGateSequence(expanded)]:
pass
case _:
assert False, f"unexpected targets: {targets}"
assert expanded.range == range(1, 2)
def test_defgate_sequence_expansion_with_error_handling():
def filter_fn(key: str) -> bool:
raise KeyError(f"Gate {key} not found")
program = Program.parse(
inspect.cleandoc(
"""
DEFGATE seq1() a AS SEQUENCE:
H a
seq1() 0
"""
)
)
with pytest.raises(BaseException):
_, _ = program.expand_defgate_sequences_with_source_map(predicate=filter_fn)