ASAPScheduleAnalysis#
- class ASAPScheduleAnalysis(durations)[source]#
Dynamic circuits as-soon-as-possible (ASAP) scheduling analysis pass.
This is a scheduler designed to work for the unique scheduling constraints of the dynamic circuits backends due to the limitations imposed by hardware. This is expected to evolve over time as the dynamic circuit backends also change.
In its current form this is similar to Qiskit’s ASAP scheduler in which instructions start as early as possible.
The primary differences are that:
- Resets and control-flow currently trigger the end of a “quantum block”. The period between the end
of the block and the next is nondeterministic ie., we do not know when the next block will begin (as we could be evaluating a classical function of nondeterministic length) and therefore the next block starts at a relative t=0.
During a measurement it is possible to apply gates in parallel on disjoint qubits.
Measurements and resets on disjoint qubits happen simultaneously and are part of the same block.
Scheduler for dynamic circuit backends.
- Parameters:
durations (
InstructionDurations
) – Durations of instructions to be used in scheduling.
Attributes
Check if the pass is an analysis pass.
Check if the pass is a transformation pass.
Methods
ASAPScheduleAnalysis.__call__
(circuit[, ...])Runs the pass on circuit.
Return the name of the pass.
Run the ALAPSchedule pass on dag.
ASAPScheduleAnalysis.__call__
(circuit[, ...])Runs the pass on circuit.