qiskit.pulse.ScheduleBlock¶
-
class
ScheduleBlock
(name=None, metadata=None, alignment_context=None)[source]¶ A
ScheduleBlock
is a time-ordered sequence of instructions and transform macro to manage their relative timing. The relative position of the instructions is managed by thecontext_alignment
. This allowsScheduleBlock
to support instructions with a parametric duration and allows the lazy scheduling of instructions, i.e. allocating the instruction time just before execution.ScheduleBlock
s should be initialized with one of the following alignment contexts:AlignLeft
: Align instructions in the as-soon-as-possible manner. Instructions are scheduled at the earliest possible time on the channel.AlignRight
: Align instructions in the as-late-as-possible manner. Instructions are scheduled at the latest possible time on the channel.AlignSequential
: Align instructions sequentially even though they are allocated in different channels.AlignEquispaced
: Align instructions with equal interval within a specified duration. Instructions on different channels are aligned sequentially.AlignFunc
: Align instructions with arbitrary position within the given duration. The position is specified by a callback function taking a pulse indexj
and returning a fractional coordinate in [0, 1].
The
ScheduleBlock
defaults to theAlignLeft
alignment. The timing overlap constraint of instructions is not immediately evaluated, and thus we can assign a parameter object to the instruction duration. Instructions are implicitly scheduled at optimum time when the program is executed.Note that
ScheduleBlock
can containInstruction
and otherScheduleBlock
to build an experimental program, butSchedule
is not supported. This should be added as aCall
instruction. This conversion is automatically performed with the pulse builder.By using
ScheduleBlock
representation we can fully parametrize pulse waveforms. For example, Rabi schedule generator can be defined asduration = Parameter('rabi_dur') amp = Parameter('rabi_amp') block = ScheduleBlock() rabi_pulse = pulse.Gaussian(duration=duration, amp=amp, sigma=duration/4) block += Play(rabi_pulse, pulse.DriveChannel(0)) block += Call(measure_schedule)
Note that such waveform cannot be appended to the
Schedule
representation.In the block representation, the interval between two instructions can be managed with the
Delay
instruction. Because the schedule block lacks an instruction start timet0
, we cannotinsert
orshift
the target instruction. In addition, stored instructions are not interchangable because the schedule block is sensitive to the relative position of instructions. Apart from these differences, the block representation can provide compatible functionality withSchedule
representation.Create an empty schedule block.
- Parameters
name (
Optional
[str
]) – Name of this schedule. Defaults to an autogenerated string if not provided.metadata (
Optional
[dict
]) – Arbitrary key value metadata to associate with the schedule. This gets stored as free-form data in a dict in themetadata
attribute. It will not be directly used in the schedule.alignment_context (AlignmentKind) –
AlignmentKind
instance that manages scheduling of instructions in this block.
- Raises
TypeError – if metadata is not a dict.
-
__init__
(name=None, metadata=None, alignment_context=None)[source]¶ Create an empty schedule block.
- Parameters
name (
Optional
[str
]) – Name of this schedule. Defaults to an autogenerated string if not provided.metadata (
Optional
[dict
]) – Arbitrary key value metadata to associate with the schedule. This gets stored as free-form data in a dict in themetadata
attribute. It will not be directly used in the schedule.alignment_context (AlignmentKind) –
AlignmentKind
instance that manages scheduling of instructions in this block.
- Raises
TypeError – if metadata is not a dict.
Methods
__init__
([name, metadata, alignment_context])Create an empty schedule block.
append
(block[, name, inplace])Return a new schedule block with
block
appended to the context block.assign_parameters
(value_dict[, inplace])Assign the parameters in this schedule according to the input.
ch_duration
(*channels)Return the time of the end of the last instruction over the supplied channels.
ch_start_time
(*channels)Return the time of the start of the first instruction over the supplied channels.
ch_stop_time
(*channels)Return maximum start time over supplied channels.
draw
([dt, style, filename, interp_method, …])Plot the schedule.
exclude
(*filter_funcs[, channels, …])Return a
Schedule
with only the instructions from this Schedule failing at least one of the provided filters. This method is the complement of py:meth:~self.filter, so that::.filter
(*filter_funcs[, channels, …])Return a new
Schedule
with only the instructions from thisScheduleBlock
which pass though the provided filters; i.e. an instruction will be retained iff every function infilter_funcs
returnsTrue
, the instruction occurs on a channel type contained inchannels
, the instruction type is contained ininstruction_types
, and the period over which the instruction operates is fully contained in one specified intime_ranges
orintervals
.get_parameters
(parameter_name)Get parameter object bound to this schedule by string name.
initialize_from
(other_program[, name])Create new schedule object with metadata of another schedule object.
insert
(start_time, block[, name, inplace])This method will be removed.
Return True iff the instruction is parameterized.
Return
True
if all durations are assigned.replace
(old, new[, inplace])Return a
ScheduleBlock
with theold
component replaced with anew
component.shift
(time[, name, inplace])This method will be removed.
Attributes
Return alignment instance that allocates block component to generate schedule.
Get the time-ordered instructions from self.
Returns channels that this schedule clock uses.
Duration of this schedule block.
instances_counter
Get the time-ordered instructions from self.
The user provided metadata associated with the schedule.
Name of this Schedule
Parameters which determine the schedule behavior.
prefix
Starting time of this schedule block.
Stopping time of this schedule block.
Time keeping attribute.
-
property
alignment_context
¶ Return alignment instance that allocates block component to generate schedule.
-
append
(block, name=None, inplace=True)[source]¶ Return a new schedule block with
block
appended to the context block. The execution time is automatically assigned when the block is converted into schedule.- Parameters
block (
Union
[ScheduleBlock
,Instruction
]) – ScheduleBlock to be appended.name (
Optional
[str
]) – Name of the newSchedule
. Defaults to name ofself
.inplace (
bool
) – Perform operation inplace on this schedule. Otherwise return a newSchedule
.
- Return type
ScheduleBlock
- Returns
Schedule block with appended schedule.
- Raises
PulseError – When invalid schedule type is specified.
-
assign_parameters
(value_dict, inplace=True)[source]¶ Assign the parameters in this schedule according to the input.
- Parameters
value_dict (
Dict
[ParameterExpression
,Union
[ParameterExpression
,float
]]) – A mapping from Parameters to either numeric values or another Parameter expression.inplace (
bool
) – SetTrue
to override this instance with new parameter.
- Return type
ScheduleBlock
- Returns
Schedule with updated parameters.
-
property
blocks
¶ Get the time-ordered instructions from self.
- Return type
Tuple
[Union
[ScheduleBlock
,Instruction
]]
-
ch_duration
(*channels)[source]¶ Return the time of the end of the last instruction over the supplied channels.
- Parameters
*channels – Channels within
self
to include.- Return type
int
-
ch_start_time
(*channels)[source]¶ Return the time of the start of the first instruction over the supplied channels.
- Parameters
*channels – Channels within
self
to include.- Return type
int
-
ch_stop_time
(*channels)[source]¶ Return maximum start time over supplied channels.
- Parameters
*channels – Channels within
self
to include.- Return type
int
-
draw
(dt=None, style=None, filename=None, interp_method=None, scale=None, channel_scales=None, plot_all=None, plot_range=None, interactive=None, table=None, label=None, framechange=None, channels=None, show_framechange_channels=None, draw_title=None, backend=None, time_range=None, time_unit='dt', disable_channels=None, show_snapshot=True, show_framechange=True, show_waveform_info=True, show_barrier=True, plotter='mpl2d', axis=None)¶ Plot the schedule.
- Parameters
style (
Optional
[Dict
[str
,Any
]]) – Stylesheet options. This can be dictionary or preset stylesheet classes. SeeIQXStandard
,IQXSimple
, andIQXDebugging
for details of preset stylesheets.backend (Optional[BaseBackend]) – Backend object to play the input pulse program. If provided, the plotter may use to make the visualization hardware aware.
time_range (
Optional
[Tuple
[int
,int
]]) – Set horizontal axis limit. Tuple (tmin, tmax).time_unit (
str
) – The unit of specified time range either dt or ns. The unit of ns is available only when backend object is provided.disable_channels (
Optional
[List
[Channel
]]) – A control property to show specific pulse channel. Pulse channel instances provided as a list are not shown in the output image.show_snapshot (
bool
) – Show snapshot instructions.show_framechange (
bool
) – Show frame change instructions. The frame change represents instructions that modulate phase or frequency of pulse channels.show_waveform_info (
bool
) – Show additional information about waveforms such as their name.show_barrier (
bool
) – Show barrier lines.plotter (
str
) –Name of plotter API to generate an output image. One of following APIs should be specified:
mpl2d: Matplotlib API for 2D image generation. Matplotlib API to generate 2D image. Charts are placed along y axis with vertical offset. This API takes matplotlib.axes.Axes as ``axis`` input.
axis
andstyle
kwargs may depend on the plotter.axis (
Optional
[Any
]) – Arbitrary object passed to the plotter. If this object is provided, the plotters use a givenaxis
instead of internally initializing a figure object. This object format depends on the plotter. See plotter argument for details.dt (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.filename (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer. To save output image, you can call.savefig
method with returned Matplotlib Figure object.interp_method (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.scale (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.channel_scales (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.plot_all (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.plot_range (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.interactive (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.table (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.label (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.framechange (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.channels (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.show_framechange_channels (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.draw_title (
Optional
[Any
]) – Deprecated. This argument is used by the legacy pulse drawer.
- Returns
Visualization output data. The returned data type depends on the
plotter
. If matplotlib family is specified, this will be amatplotlib.pyplot.Figure
data.
-
property
duration
¶ Duration of this schedule block.
- Return type
int
-
exclude
(*filter_funcs, channels=None, instruction_types=None, time_ranges=None, intervals=None, check_subroutine=True)[source]¶ Return a
Schedule
with only the instructions from this Schedule failing at least one of the provided filters. This method is the complement of py:meth:~self.filter, so that:self.filter(args) | self.exclude(args) == self
Note
This method is currently not supported. Support will be soon added please create an issue if you believe this must be prioritized.
- Parameters
filter_funcs (
List
[Callable
]) – A list of Callables which take a (int, Union[‘Schedule’, Instruction]) tuple and return a bool.channels (
Optional
[Iterable
[Channel
]]) – For example,[DriveChannel(0), AcquireChannel(0)]
.instruction_types (
Union
[Iterable
[ABCMeta
],ABCMeta
,None
]) – For example,[PulseInstruction, AcquireInstruction]
.time_ranges (
Optional
[Iterable
[Tuple
[int
,int
]]]) – For example,[(0, 5), (6, 10)]
.intervals (
Optional
[Iterable
[Tuple
[int
,int
]]]) – For example,[(0, 5), (6, 10)]
.check_subroutine (
bool
) – Set True to individually filter instructions inside of a subroutine defined by theCall
instruction.
- Returns
Schedule
consisting of instructions that are not match with filtering condition.- Raises
PulseError – When this method is called. This method will be supported soon.
-
filter
(*filter_funcs, channels=None, instruction_types=None, time_ranges=None, intervals=None, check_subroutine=True)[source]¶ Return a new
Schedule
with only the instructions from thisScheduleBlock
which pass though the provided filters; i.e. an instruction will be retained iff every function infilter_funcs
returnsTrue
, the instruction occurs on a channel type contained inchannels
, the instruction type is contained ininstruction_types
, and the period over which the instruction operates is fully contained in one specified intime_ranges
orintervals
.If no arguments are provided,
self
is returned.Note
This method is currently not supported. Support will be soon added please create an issue if you believe this must be prioritized.
- Parameters
filter_funcs (
List
[Callable
]) – A list of Callables which take a (int, Union[‘Schedule’, Instruction]) tuple and return a bool.channels (
Optional
[Iterable
[Channel
]]) – For example,[DriveChannel(0), AcquireChannel(0)]
.instruction_types (
Union
[Iterable
[ABCMeta
],ABCMeta
,None
]) – For example,[PulseInstruction, AcquireInstruction]
.time_ranges (
Optional
[Iterable
[Tuple
[int
,int
]]]) – For example,[(0, 5), (6, 10)]
.intervals (
Optional
[Iterable
[Tuple
[int
,int
]]]) – For example,[(0, 5), (6, 10)]
.check_subroutine (
bool
) – Set True to individually filter instructions inside of a subroutine defined by theCall
instruction.
- Returns
Schedule
consisting of instructions that matches with filtering condition.- Raises
PulseError – When this method is called. This method will be supported soon.
-
get_parameters
(parameter_name)[source]¶ Get parameter object bound to this schedule by string name.
Because different
Parameter
objects can have the same name, this method returns a list ofParameter
s for the provided name.- Parameters
parameter_name (
str
) – Name of parameter.- Return type
List
[Parameter
]- Returns
Parameter objects that have corresponding name.
-
classmethod
initialize_from
(other_program, name=None)[source]¶ Create new schedule object with metadata of another schedule object.
- Parameters
other_program (
Any
) – Qiskit program that provides metadata to new object.name (
Optional
[str
]) – Name of new schedule. Name ofblock
is used by default.
- Return type
ScheduleBlock
- Returns
New block object with name and metadata.
- Raises
PulseError – When other_program does not provide necessary information.
-
insert
(start_time, block, name=None, inplace=True)[source]¶ This method will be removed. Temporarily added for backward compatibility.
Note
This method is not supported and being deprecated.
- Parameters
start_time (
int
) – Time to insert the schedule.block (
Union
[Schedule
,Instruction
]) – Schedule to insert.name (
Optional
[str
]) – Name of the new schedule. Defaults to the name of self.inplace (
bool
) – Perform operation inplace on this schedule. Otherwise return a newSchedule
.
- Raises
PulseError – When this method is called. This method is not supported.
-
property
instructions
¶ Get the time-ordered instructions from self.
- Return type
Tuple
[Tuple
[int
,Instruction
]]
-
property
metadata
¶ The user provided metadata associated with the schedule.
User provided
dict
of metadata for the schedule. The metadata contents do not affect the semantics of the program but are used to influence the execution of the schedule. It is expected to be passed between all transforms of the schedule and that providers will associate any schedule metadata with the results it returns from the execution of that schedule.- Return type
Dict
[str
,Any
]
-
property
name
¶ Name of this Schedule
- Return type
str
-
property
parameters
¶ Parameters which determine the schedule behavior.
- Return type
Set
-
replace
(old, new, inplace=True)[source]¶ Return a
ScheduleBlock
with theold
component replaced with anew
component.- Parameters
old (
Union
[ScheduleBlock
,Instruction
]) – Schedule block component to replace.new (
Union
[ScheduleBlock
,Instruction
]) – Schedule block component to replace with.inplace (
bool
) – Replace instruction by mutably modifying thisScheduleBlock
.
- Return type
ScheduleBlock
- Returns
The modified schedule block with
old
replaced bynew
.
-
shift
(time, name=None, inplace=True)[source]¶ This method will be removed. Temporarily added for backward compatibility.
Note
This method is not supported and being deprecated.
- Parameters
time (
int
) – Time to shift by.name (
Optional
[str
]) – Name of the new schedule. Defaults to the name of self.inplace (
bool
) – Perform operation inplace on this schedule. Otherwise return a newSchedule
.
- Raises
PulseError – When this method is called. This method is not supported.
-
property
start_time
¶ Starting time of this schedule block.
- Return type
int
-
property
stop_time
¶ Stopping time of this schedule block.
- Return type
int