Schedule#

class qiskit.pulse.Schedule(*schedules, name=None, metadata=None)[소스]#

기반 클래스: object

A quantum program schedule with exact time constraints for its instructions, operating over all input signal channels and supporting special syntaxes for building.

Pulse program representation for the original Qiskit Pulse model [1]. Instructions are not allowed to overlap in time on the same channel. This overlap constraint is immediately evaluated when a new instruction is added to the Schedule object.

It is necessary to specify the absolute start time and duration for each instruction so as to deterministically fix its execution time.

The Schedule program supports some syntax sugar for easier programming.

  • Appending an instruction to the end of a channel

    sched = Schedule()
    sched += Play(Gaussian(160, 0.1, 40), DriveChannel(0))
    
  • Appending an instruction shifted in time by a given amount

    sched = Schedule()
    sched += Play(Gaussian(160, 0.1, 40), DriveChannel(0)) << 30
    
  • Merge two schedules

    sched1 = Schedule()
    sched1 += Play(Gaussian(160, 0.1, 40), DriveChannel(0))
    
    sched2 = Schedule()
    sched2 += Play(Gaussian(160, 0.1, 40), DriveChannel(1))
    sched2 = sched1 | sched2
    

A PulseError is immediately raised when the overlap constraint is violated.

In the schedule representation, we cannot parametrize the duration of instructions. Thus we need to create a new schedule object for each duration. To parametrize an instruction’s duration, the ScheduleBlock representation may be used instead.

참조

[1]: https://arxiv.org/abs/2004.06755

Create an empty schedule.

매개변수:
  • *schedules (ScheduleComponent | Tuple[int, ScheduleComponent]) – Child Schedules of this parent Schedule. May either be passed as the list of schedules, or a list of (start_time, schedule) pairs.

  • name (str | None) – Name of this schedule. Defaults to an autogenerated string if not provided.

  • metadata (dict | None) – 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.

예외 발생:

TypeError – if metadata is not a dict.

Attributes

channels#

Returns channels that this schedule uses.

children#

Return the child schedule components of this Schedule in the order they were added to the schedule.

참고

Nested schedules are returned as-is. If you want to collect only instructions, use py:meth:~Schedule.instructions instead.

반환:

A tuple, where each element is a two-tuple containing the initial scheduled time of each NamedValue and the component itself.

duration#

Duration of this schedule.

instances_counter = count(0)#
instructions#

Get the time-ordered instructions from self.

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.

name#

Name of this Schedule

parameters#

Parameters which determine the schedule behavior.

prefix = 'sched'#
start_time#

Starting time of this schedule.

stop_time#

Stopping time of this schedule.

timeslots#

Time keeping attribute.

Methods

append(schedule, name=None, inplace=False)[소스]#

Return a new schedule with schedule inserted at the maximum time over all channels shared between self and schedule.

\[t = \textrm{max}(\texttt{x.stop_time} |\texttt{x} \in \texttt{self.channels} \cap \texttt{schedule.channels})\]
매개변수:
  • schedule (Schedule | Instruction) – Schedule to be appended.

  • name (str | None) – Name of the new Schedule. Defaults to name of self.

  • inplace (bool) – Perform operation inplace on this schedule. Otherwise return a new Schedule.

반환 형식:

Schedule

assign_parameters(value_dict, inplace=True)[소스]#

Assign the parameters in this schedule according to the input.

매개변수:
반환:

Schedule with updated parameters.

반환 형식:

Schedule

ch_duration(*channels)[소스]#

Return the time of the end of the last instruction over the supplied channels.

매개변수:

*channels (Channel) – Channels within self to include.

반환 형식:

int

ch_start_time(*channels)[소스]#

Return the time of the start of the first instruction over the supplied channels.

매개변수:

*channels (Channel) – Channels within self to include.

반환 형식:

int

ch_stop_time(*channels)[소스]#

Return maximum start time over supplied channels.

매개변수:

*channels (Channel) – Channels within self to include.

반환 형식:

int

draw(style=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.

매개변수:
  • style (Dict[str, Any] | None) – 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 (Tuple[int, int] | None) – 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 (List[Channel] | None) – 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 (Any | None) – 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.

반환:

Visualization output data. The returned data type depends on the plotter. If matplotlib family is specified, this will be a matplotlib.pyplot.Figure data.

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
매개변수:
  • filter_funcs (Callable) – A list of Callables which take a (int, Union[‘Schedule’, Instruction]) tuple and return a bool.

  • channels (Iterable[Channel] | None) – For example, [DriveChannel(0), AcquireChannel(0)].

  • instruction_types (Iterable[ABCMeta] | ABCMeta | None) – For example, [PulseInstruction, AcquireInstruction].

  • time_ranges (Iterable[Tuple[int, int]] | None) – For example, [(0, 5), (6, 10)].

  • intervals (Iterable[Tuple[int, int]] | None) – For example, [(0, 5), (6, 10)].

  • check_subroutine (bool) – Set True to individually filter instructions inside of a subroutine defined by the Call instruction.

반환 형식:

Schedule

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

매개변수:
  • filter_funcs (Callable) – A list of Callables which take a (int, Union[‘Schedule’, Instruction]) tuple and return a bool.

  • channels (Iterable[Channel] | None) – For example, [DriveChannel(0), AcquireChannel(0)].

  • instruction_types (Iterable[ABCMeta] | ABCMeta | None) – For example, [PulseInstruction, AcquireInstruction].

  • time_ranges (Iterable[Tuple[int, int]] | None) – For example, [(0, 5), (6, 10)].

  • intervals (Iterable[Tuple[int, int]] | None) – For example, [(0, 5), (6, 10)].

  • check_subroutine (bool) – Set True to individually filter instructions inside of a subroutine defined by the Call instruction.

반환 형식:

Schedule

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.

매개변수:

parameter_name (str) – Name of parameter.

반환:

Parameter objects that have corresponding name.

반환 형식:

List[Parameter]

classmethod initialize_from(other_program, name=None)[소스]#

Create new schedule object with metadata of another schedule object.

매개변수:
  • other_program (Any) – Qiskit program that provides metadata to new object.

  • name (str | None) – Name of new schedule. Name of schedule is used by default.

반환:

New schedule object with name and metadata.

예외 발생:

PulseError – When other_program does not provide necessary information.

반환 형식:

Schedule

insert(start_time, schedule, name=None, inplace=False)[소스]#

Return a new schedule with schedule inserted into self at start_time.

매개변수:
  • start_time (int) – Time to insert the schedule.

  • schedule (Schedule | Instruction) – Schedule to insert.

  • name (str | None) – Name of the new schedule. Defaults to the name of self.

  • inplace (bool) – Perform operation inplace on this schedule. Otherwise return a new Schedule.

반환 형식:

Schedule

is_parameterized()[소스]#

Return True iff the instruction is parameterized.

반환 형식:

bool

replace(old, new, inplace=False)[소스]#

Return a Schedule with the old instruction replaced with a new instruction.

The replacement matching is based on an instruction equality check.

from qiskit import pulse

d0 = pulse.DriveChannel(0)

sched = pulse.Schedule()

old = pulse.Play(pulse.Constant(100, 1.0), d0)
new = pulse.Play(pulse.Constant(100, 0.1), d0)

sched += old

sched = sched.replace(old, new)

assert sched == pulse.Schedule(new)

Only matches at the top-level of the schedule tree. If you wish to perform this replacement over all instructions in the schedule tree. Flatten the schedule prior to running:

.. code-block::

sched = pulse.Schedule()

sched += pulse.Schedule(old)

sched = sched.flatten()

sched = sched.replace(old, new)

assert sched == pulse.Schedule(new)

매개변수:
반환:

The modified schedule with old replaced by new.

예외 발생:

PulseError – If the Schedule after replacements will has a timing overlap.

반환 형식:

Schedule

shift(time, name=None, inplace=False)[소스]#

Return a schedule shifted forward by time.

매개변수:
  • time (int) – Time to shift by.

  • name (str | None) – Name of the new schedule. Defaults to the name of self.

  • inplace (bool) – Perform operation inplace on this schedule. Otherwise return a new Schedule.

반환 형식:

Schedule