Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Program#out(calibrations=False) will not expand calibrations #1758

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyquil/api/_wavefunction_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
)
from pyquil.gates import MOVE
from pyquil.paulis import PauliSum, PauliTerm
from pyquil.quil import Program, percolate_declares
from pyquil.quil import Program
from pyquil.quilatom import MemoryReference
from pyquil.wavefunction import Wavefunction

Expand Down Expand Up @@ -230,4 +230,4 @@ def augment_program_with_memory_values(

p += quil_program

return percolate_declares(p)
return p
MarquessV marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 3 additions & 1 deletion pyquil/quil.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,9 @@ def out(self, *, calibrations: Optional[bool] = True) -> str:
if calibrations:
return self._program.to_quil()
else:
return self._program.into_simplified().to_quil()
return self.filter_instructions(
lambda inst: not isinstance(inst, (DefCalibration, DefMeasureCalibration))
).out()

@deprecated(
version="4.0",
Expand Down
22 changes: 22 additions & 0 deletions test/unit/test_quil.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,3 +1163,25 @@ def test_cached_frames():
p.inst(frames[1])
program_frames = p.frames
assert program_frames == {frames[0].frame: frames[0], frames[1].frame: frames[1]}


def test_out_without_calibrations():
quilt_program = Program(
"""
DEFCAL J 0:
RX(1.5707963267948966) 0
DEFCAL MEASURE 0 addr:
FENCE 0
MarquessV marked this conversation as resolved.
Show resolved Hide resolved
"""
)
quil_program = Program(
"""
DECLARE ro BIT[1]
J 0
MEASURE 0 ro
"""
)

combined_program = quilt_program + quil_program

assert combined_program.out(calibrations=False) == quil_program.out()
Loading