quil.program
The quil.program module contains classes for constructing and representing a Quil program.
Examples
Source Mapping for Calibration Expansion
import inspect
from quil.program import Program
program_text = inspect.cleandoc(
"""
DEFCAL X 0:
Y 0
DEFCAL Y 0:
Z 0
X 0 # This instruction is index 0
Y 0 # This instruction is index 1
"""
)
# First, we parse the program and expand its calibrations
program = Program.parse(program_text)
expansion = program.expand_calibrations_with_source_map()
source_map = expansion.source_map()
# This is what we expect the expanded program to be. X and Y have each been replaced by Z.
expected_program_text = inspect.cleandoc(
"""
DEFCAL X 0:
Y 0
DEFCAL Y 0:
Z 0
Z 0 # This instruction is index 0
Z 0 # This instruction is index 1
"""
)
assert expansion.program().to_quil() == Program.parse(expected_program_text).to_quil()
# In order to discover _which_ calibration led to the first Z in the resulting program, we
# can interrogate the expansion source mapping.
#
# For instance, the X at index 0 should have been replaced with a Z at index 0.
# Here's how we can confirm that:
# First, we list the calibration expansion targets for that first instruction...
targets = source_map.list_targets_for_source_index(0)
# ...then we extract the expanded instruction.
# If the instruction had _not_ been expanded (i.e. there was no matching calibration), then `as_expanded()` would return `None`.
expanded = targets[0].as_expanded()
# This line shows how that `X 0` was expanded into instruction index 0 (only) within the expanded program.
# The end of the range is exclusive.
assert expanded.range() == range(0, 1)
# We can also map instructions in reverse: given an instruction index in the expanded program, we can find the source index.
# This is useful for understanding the provenance of instructions in the expanded program.
sources = source_map.list_sources_for_target_index(1)
# In this case, the instruction was expanded from the source program at index 1.
assert sources == [1]
Errors encountered related to a Program.
Error raised if the computed schedule is invalid.
Return the length of the longest path from an initial instruction (one with no prerequisite instructions) to a final instruction (one with no dependent instructions), where the length of a path is the number of gate instructions in the path.
Parameters
- gate_minimum_qubit_count: The minimum number of qubits in a gate for it to be counted in the depth.
Details about the expansion of a calibration.
Return all source ranges in the source map which were used to generate the target index.
This is O(n) where n is the number of entries in the map.
A description of the expansion of one instruction into other instructions.
If present, the instruction located at source_location was expanded using calibrations
into the instructions located at target_location.
Note that both source_location and target_location are relative to the scope of expansion.
In the case of a nested expansion, both describe the location relative only to that level of expansion and not the original program.
Consider the following example:
DEFCAL A:
NOP
B
HALT
DEFCAL B:
NOP
WAIT
NOP
NOP
NOP
A
In this program, A will expand into NOP, B, and HALT.
Then, B will expand into NOP and WAIT.
Each level of this expansion
will have its own CalibrationExpansionSourceMap describing the expansion.
In the map of B to NOP and WAIT, the source_location will be 1
because B is the second instruction in DEFCAL A,
even though A is the 4th instruction (index = 3) in the original program.
A collection of Quil calibrations (DEFCAL instructions) with utility methods.
This exposes the semantics similar to [CalibrationSet] to Python users,
so see the documentation there for more information.
Insert a [CalibrationDefinition] into the set.
If a calibration with the same [signature][crate::instruction::CalibrationSignature] already exists in the set, it will be replaced and the old calibration will be returned.
Insert a [MeasureCalibrationDefinition] into the set.
If a calibration with the same [signature][crate::instruction::CalibrationSignature] already exists in the set, it will be replaced and the old calibration will be returned.
Append another [CalibrationSet] onto this one.
Calibrations with conflicting [CalibrationSignature]s are overwritten by the ones in the
given set.
Return the Quil instructions which describe the contained calibrations.
Given an instruction, return the instructions to which it is expanded if there is a match. Recursively calibrate instructions, returning an error if a calibration directly or indirectly expands into itself.
Return only the expanded instructions; for more information about the expansion process,
see [Self::expand_with_detail].
Returns the last-specified MeasureCalibrationDefinition that matches the target
qubit (if any), or otherwise the last-specified one that specified no qubit.
If multiple calibrations match the measurement, the precedence is as follows:
- Match fixed qubit.
- Match variable qubit.
- Match no qubit.
In the case of multiple calibrations with equal precedence, the last one wins.
Return the final calibration which matches the gate per the QuilT specification:
A calibration matches a gate if:
- It has the same name
- It has the same modifiers
- It has the same qubit count (any mix of fixed & variable)
- It has the same parameter count (both specified and unspecified)
- All fixed qubits in the calibration definition match those in the gate
- All specified parameters in the calibration definition match those in the gate
The source of a calibration, either a [CalibrationIdentifier] or a
[MeasureCalibrationIdentifier].
Inherited Members
Inherited Members
Return True if the program has dynamic control flow, i.e. contains a conditional branch instruction.
False does not imply that there is only one basic block in the program.
Multiple basic blocks may have non-conditional control flow among them,
in which the execution order is deterministic and does not depend on program state.
This may be a sequence of basic blocks with fixed JUMPs or without explicit terminators.
A collection of Quil frames (DEFFRAME instructions) with utility methods.
Insert a new frame by ID, overwriting any existing one.
Return a new FrameSet which describes only the given FrameIdentifiers.
The result of an attempt to expand an instruction within a [Program]
Inherited Members
Inherited Members
A Quil Program instance describes a quantum program with metadata used in execution.
This contains not only instructions which are executed in turn on the quantum processor, but also the "headers" used to describe and manipulate those instructions, such as calibrations and frame definitions.
Return a deep copy of the Program, but without the body instructions.
Add an instruction to the end of the program.
Note, parsing extern signatures is deferred here to maintain infallibility
of [Program::add_instruction]. This means that invalid PRAGMA EXTERN
instructions are still added to the [Program::extern_pragma_map];
duplicate PRAGMA EXTERN names are overwritten.
Creates a new conjugate transpose of the [Program] by reversing the order of gate
instructions and applying the DAGGER modifier to each.
Errors
Errors if any of the instructions in the program are not [Instruction::Gate]
Expand any instructions in the program which have a matching calibration, leaving the others unchanged. Return the expanded copy of the program.
Returns an error if any instruction expands into itself.
See [Program::expand_calibrations_with_source_map] for a version that returns a source mapping.
Simplify this program into a new [Program] which contains only instructions
and definitions which are executed; effectively, perform dead code removal.
Removes:
- All calibrations, following calibration expansion
- Frame definitions which are not used by any instruction such as
PULSEorCAPTURE - Waveform definitions which are not used by any instruction
PRAGMA EXTERNinstructions which are not used by anyCALLinstruction (see [Program::extern_pragma_map]).
When a valid program is simplified, it remains valid.
Note
If you need custom instruction handling during simplification,
use [InstructionHandler::simplify_program] instead.
Return a copy of the [Program] wrapped in a loop that repeats iterations times.
The loop is constructed by wrapping the body of the program in classical Quil instructions.
The given loop_count_reference must refer to an INTEGER memory region. The value at the
reference given will be set to iterations and decremented in the loop. The loop will
terminate when the reference reaches 0. For this reason your program should not itself
modify the value at the reference unless you intend to modify the remaining number of
iterations (i.e. to break the loop).
The given start_target and end_target will be used as the entry and exit points for the
loop, respectively. You should provide unique [Target]s that won't be used elsewhere in
the program.
If iterations is 0, then a copy of the program is returned without any changes.
Resolve [LabelPlaceholder]s and [QubitPlaceholder]s within the program using default resolvers.
See resolve_placeholders_with_custom_resolvers,
default_target_resolver,
and default_qubit_resolver for more information.
Return a copy of all of the instructions which constitute this [Program].
Parse a Program from a string.
Errors
Raises a ProgramError if the string isn't a valid Quil expression.
Expand any instructions in the program which have a matching calibration, leaving the others unchanged. Return the expanded copy of the program and a source mapping describing the expansions made.
Return a new Program containing only the instructions
for which predicate returns true.
Resolve TargetPlaceholders and QubitPlaceholders within the program.
The resolved values will remain unique to that placeholder
within the scope of the program.
If you provide target_resolver and/or qubit_resolver,
those will be used to resolve those values respectively.
If your resolver returns None for a particular placeholder,
it will not be replaced but will be left as a placeholder.
If you do not provide a resolver for a placeholder,
a default resolver will be used which will generate
a unique value for that placeholder within the scope of the program
using an auto-incrementing value (for qubit) or suffix (for target)
while ensuring that unique value is not already in use within the program.
Return all source ranges in the source map which were used to generate the target index.
This is O(n) where n is the number of entries in the map.
A Schedule is a DependencyGraph flattened into a linear sequence of instructions,
each of which is assigned a start time and duration.
A single item within a schedule, representing a single instruction within a basic block.
A time span, in seconds.