Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK. Go to the latest version

qiskit.pulse.ScheduleBlock

class ScheduleBlock(name=None, metadata=None, alignment_context=None)

GitHub

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 the context_alignment. This allows ScheduleBlock 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 index j and returning a fractional coordinate in [0, 1].

The ScheduleBlock defaults to the AlignLeft 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 contain Instruction and other ScheduleBlock to build an experimental program, but Schedule is not supported. This should be added as a Call 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 as

duration = 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 time t0, we cannot insert or shift 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 with Schedule 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 the metadata 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__

__init__(name=None, metadata=None, alignment_context=None)

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 the metadata 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 this ScheduleBlock which pass though the provided filters; i.e. an instruction will be retained iff every function in filter_funcs returns True, the instruction occurs on a channel type contained in channels, the instruction type is contained in instruction_types, and the period over which the instruction operates is fully contained in one specified in time_ranges or intervals.
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.
is_parameterized()Return True iff the instruction is parameterized.
is_schedulable()Return True if all durations are assigned.
replace(old, new[, inplace])Return a ScheduleBlock with the old component replaced with a new component.
shift(time[, name, inplace])This method will be removed.

Attributes

alignment_contextReturn alignment instance that allocates block component to generate schedule.
blocksGet the time-ordered instructions from self.
channelsReturns channels that this schedule clock uses.
durationDuration of this schedule block.
instances_counter
instructionsGet the time-ordered instructions from self.
metadataThe user provided metadata associated with the schedule.
nameName of this Schedule
parametersParameters which determine the schedule behavior.
prefix
start_timeStarting time of this schedule block.
stop_timeStopping time of this schedule block.
timeslotsTime keeping attribute.

alignment_context

Return alignment instance that allocates block component to generate schedule.

append

append(block, name=None, inplace=True)

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 new Schedule. Defaults to name of self.
  • inplace (bool) – Perform operation inplace on this schedule. Otherwise return a new Schedule.

Return type

ScheduleBlock

Returns

Schedule block with appended schedule.

Raises

PulseError – When invalid schedule type is specified.

assign_parameters

assign_parameters(value_dict, inplace=True)

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) – Set True to override this instance with new parameter.

Return type

ScheduleBlock

Returns

Schedule with updated parameters.

blocks

Get the time-ordered instructions from self.

Return type

Tuple[Union[ScheduleBlock, Instruction]]

ch_duration

ch_duration(*channels)

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

ch_start_time(*channels)

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

ch_stop_time(*channels)

Return maximum start time over supplied channels.

Parameters

*channels – Channels within self to include.

Return type

int

channels

Returns channels that this schedule clock uses.

Return type

Tuple[Channel]

draw

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. See IQXStandard, IQXSimple, and IQXDebugging 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 and style kwargs may depend on the plotter.

  • axis (Optional[Any]) – Arbitrary object passed to the plotter. If this object is provided, the plotters use a given axis 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 a matplotlib.pyplot.Figure data.

duration

Duration of this schedule block.

Return type

int

exclude

exclude(*filter_funcs, channels=None, instruction_types=None, time_ranges=None, intervals=None, check_subroutine=True)

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 the Call 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(*filter_funcs, channels=None, instruction_types=None, time_ranges=None, intervals=None, check_subroutine=True)

Return a new Schedule with only the instructions from this ScheduleBlock which pass though the provided filters; i.e. an instruction will be retained iff every function in filter_funcs returns True, the instruction occurs on a channel type contained in channels, the instruction type is contained in instruction_types, and the period over which the instruction operates is fully contained in one specified in time_ranges or intervals.

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 the Call 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

get_parameters(parameter_name)

Get parameter object bound to this schedule by string name.

Because different Parameter objects can have the same name, this method returns a list of Parameter s for the provided name.

Parameters

parameter_name (str) – Name of parameter.

Return type

List[Parameter]

Returns

Parameter objects that have corresponding name.

initialize_from

classmethod initialize_from(other_program, name=None)

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 of block 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

insert(start_time, block, name=None, inplace=True)

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 new Schedule.

Raises

PulseError – When this method is called. This method is not supported.

instructions

Get the time-ordered instructions from self.

Return type

Tuple[Tuple[int, Instruction]]

is_parameterized

is_parameterized()

Return True iff the instruction is parameterized.

Return type

bool

is_schedulable

is_schedulable()

Return True if all durations are assigned.

Return type

bool

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]

name

Name of this Schedule

Return type

str

parameters

Parameters which determine the schedule behavior.

Return type

Set

replace

replace(old, new, inplace=True)

Return a ScheduleBlock with the old component replaced with a new 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 this ScheduleBlock.

Return type

ScheduleBlock

Returns

The modified schedule block with old replaced by new.

shift

shift(time, name=None, inplace=True)

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 new Schedule.

Raises

PulseError – When this method is called. This method is not supported.

start_time

Starting time of this schedule block.

Return type

int

stop_time

Stopping time of this schedule block.

Return type

int

timeslots

Time keeping attribute.

Return type

Dict[Channel, List[Tuple[int, int]]]

Was this page helpful?
Report a bug or request content on GitHub.