ConstrainedReschedule¶
- class ConstrainedReschedule(acquire_alignment=1, pulse_alignment=1)[source]¶
Bases:
qiskit.transpiler.basepasses.AnalysisPass
Rescheduler pass that updates node start times to conform to the hardware alignments.
This pass shifts DAG node start times previously scheduled with one of the scheduling passes, e.g.
ASAPScheduleAnalysis
orALAPScheduleAnalysis
, so that every instruction start time satisfies alignment constraints.Examples
We assume executing the following circuit on a backend with 16 dt of acquire alignment.
┌───┐┌────────────────┐┌─┐ q_0: ┤ X ├┤ Delay(100[dt]) ├┤M├ └───┘└────────────────┘└╥┘ c: 1/════════════════════════╩═ 0
Note that delay of 100 dt induces a misalignment of 4 dt at the measurement. This pass appends an extra 12 dt time shift to the input circuit.
┌───┐┌────────────────┐┌─┐ q_0: ┤ X ├┤ Delay(112[dt]) ├┤M├ └───┘└────────────────┘└╥┘ c: 1/════════════════════════╩═ 0
Notes
Your backend may execute circuits violating these alignment constraints. However, you may obtain erroneous measurement result because of the untracked phase originating in the instruction misalignment.
Create new rescheduler pass.
The alignment values depend on the control electronics of your quantum processor.
- Parameters
acquire_alignment (
int
) – Integer number representing the minimum time resolution to trigger acquisition instruction in units ofdt
.pulse_alignment (
int
) – Integer number representing the minimum time resolution to trigger gate instruction in units ofdt
.
Methods
Return the name of the pass.
Run rescheduler.
Attributes
- is_analysis_pass¶
Check if the pass is an analysis pass.
If the pass is an AnalysisPass, that means that the pass can analyze the DAG and write the results of that analysis in the property set. Modifications on the DAG are not allowed by this kind of pass.
- is_transformation_pass¶
Check if the pass is a transformation pass.
If the pass is a TransformationPass, that means that the pass can manipulate the DAG, but cannot modify the property set (but it can be read).