English
Languages
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

Source code for qiskit.pulse.transforms

# This code is part of Qiskit.
#
# (C) Copyright IBM 2019.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""Basic rescheduling functions which take schedules or instructions
(and possibly some arguments) and return new schedules.
"""
import warnings
from collections import defaultdict
from typing import Callable
from typing import List, Optional, Iterable

import numpy as np

from qiskit.pulse import channels as chans, exceptions, instructions, interfaces
from qiskit.pulse.exceptions import PulseError
from qiskit.pulse.instruction_schedule_map import InstructionScheduleMap
from qiskit.pulse.instructions import directives
from qiskit.pulse.schedule import Schedule


[docs]def align_measures(schedules: Iterable[interfaces.ScheduleComponent], inst_map: Optional[InstructionScheduleMap] = None, cal_gate: str = 'u3', max_calibration_duration: Optional[int] = None, align_time: Optional[int] = None, align_all: Optional[bool] = True, ) -> List[Schedule]: """Return new schedules where measurements occur at the same physical time. This transformation will align the first :class:`qiskit.pulse.Acquire` on every channel to occur at the same time. Minimum measurement wait time (to allow for calibration pulses) is enforced and may be set with ``max_calibration_duration``. By default only instructions containing a :class:`~qiskit.pulse.AcquireChannel` or :class:`~qiskit.pulse.MeasureChannel` will be shifted. If you wish to keep the relative timing of all instructions in the schedule set ``align_all=True``. This method assumes that ``MeasureChannel(i)`` and ``AcquireChannel(i)`` correspond to the same qubit and the acquire/play instructions should be shifted together on these channels. .. jupyter-kernel:: python3 :id: align_measures .. jupyter-execute:: from qiskit import pulse from qiskit.pulse import transforms with pulse.build() as sched: with pulse.align_sequential(): pulse.play(pulse.Constant(10, 0.5), pulse.DriveChannel(0)) pulse.play(pulse.Constant(10, 1.), pulse.MeasureChannel(0)) pulse.acquire(20, pulse.AcquireChannel(0), pulse.MemorySlot(0)) sched_shifted = sched << 20 aligned_sched, aligned_sched_shifted = transforms.align_measures([sched, sched_shifted]) assert aligned_sched == aligned_sched_shifted If it is desired to only shift acqusition and measurement stimulus instructions set the flag ``align_all=False``: .. jupyter-execute:: aligned_sched, aligned_sched_shifted = transforms.align_measures( [sched, sched_shifted], align_all=False, ) assert aligned_sched != aligned_sched_shifted Args: schedules: Collection of schedules to be aligned together inst_map: Mapping of circuit operations to pulse schedules cal_gate: The name of the gate to inspect for the calibration time max_calibration_duration: If provided, inst_map and cal_gate will be ignored align_time: If provided, this will be used as final align time. align_all: Shift all instructions in the schedule such that they maintain their relative alignment with the shifted acqusition instruction. If ``False`` only the acqusition and measurement pulse instructions will be shifted. Returns: The input list of schedules transformed to have their measurements aligned. Raises: PulseError: If the provided alignment time is negative. """ def get_first_acquire_times(schedules): """Return a list of first acquire times for each schedule.""" acquire_times = [] for schedule in schedules: visited_channels = set() qubit_first_acquire_times = defaultdict(lambda: None) for time, inst in schedule.instructions: if (isinstance(inst, instructions.Acquire) and inst.channel not in visited_channels): visited_channels.add(inst.channel) qubit_first_acquire_times[inst.channel.index] = time acquire_times.append(qubit_first_acquire_times) return acquire_times def get_max_calibration_duration(inst_map, cal_gate): """Return the time needed to allow for readout discrimination calibration pulses.""" max_calibration_duration = 0 for qubits in inst_map.qubits_with_instruction(cal_gate): cmd = inst_map.get(cal_gate, qubits, np.pi, 0, np.pi) max_calibration_duration = max(cmd.duration, max_calibration_duration) return max_calibration_duration if align_time is not None and align_time < 0: raise exceptions.PulseError("Align time cannot be negative.") first_acquire_times = get_first_acquire_times(schedules) # Extract the maximum acquire in every schedule across all acquires in the schedule. # If there are no acquires in the schedule default to 0. max_acquire_times = [max(0, *times.values()) for times in first_acquire_times] if align_time is None: if max_calibration_duration is None: if inst_map: max_calibration_duration = get_max_calibration_duration(inst_map, cal_gate) else: max_calibration_duration = 0 align_time = max(max_calibration_duration, *max_acquire_times) # Shift acquires according to the new scheduled time new_schedules = [] for sched_idx, schedule in enumerate(schedules): new_schedule = Schedule(name=schedule.name) stop_time = schedule.stop_time if align_all: if first_acquire_times[sched_idx]: shift = align_time - max_acquire_times[sched_idx] else: shift = align_time - stop_time else: shift = 0 for time, inst in schedule.instructions: measurement_channels = { chan.index for chan in inst.channels if isinstance(chan, (chans.MeasureChannel, chans.AcquireChannel)) } if measurement_channels: sched_first_acquire_times = first_acquire_times[sched_idx] max_start_time = max(sched_first_acquire_times[chan] for chan in measurement_channels if chan in sched_first_acquire_times) shift = align_time - max_start_time if shift < 0: warnings.warn( "The provided alignment time is scheduling an acquire instruction " "earlier than it was scheduled for in the original Schedule. " "This may result in an instruction being scheduled before t=0 and " "an error being raised." ) new_schedule.insert(time+shift, inst, inplace=True) new_schedules.append(new_schedule) return new_schedules
[docs]def add_implicit_acquires(schedule: interfaces.ScheduleComponent, meas_map: List[List[int]] ) -> Schedule: """Return a new schedule with implicit acquires from the measurement mapping replaced by explicit ones. .. warning:: Since new acquires are being added, Memory Slots will be set to match the qubit index. This may overwrite your specification. Args: schedule: Schedule to be aligned. meas_map: List of lists of qubits that are measured together. Returns: A ``Schedule`` with the additional acquisition instructions. """ new_schedule = Schedule(name=schedule.name) acquire_map = dict() for time, inst in schedule.instructions: if isinstance(inst, instructions.Acquire): if inst.mem_slot and inst.mem_slot.index != inst.channel.index: warnings.warn("One of your acquires was mapped to a memory slot which didn't match" " the qubit index. I'm relabeling them to match.") # Get the label of all qubits that are measured with the qubit(s) in this instruction all_qubits = [] for sublist in meas_map: if inst.channel.index in sublist: all_qubits.extend(sublist) # Replace the old acquire instruction by a new one explicitly acquiring all qubits in # the measurement group. for i in all_qubits: explicit_inst = instructions.Acquire(inst.duration, chans.AcquireChannel(i), mem_slot=chans.MemorySlot(i), kernel=inst.kernel, discriminator=inst.discriminator) if time not in acquire_map: new_schedule.insert(time, explicit_inst, inplace=True) acquire_map = {time: {i}} elif i not in acquire_map[time]: new_schedule.insert(time, explicit_inst, inplace=True) acquire_map[time].add(i) else: new_schedule.insert(time, inst, inplace=True) return new_schedule
[docs]def pad(schedule: Schedule, channels: Optional[Iterable[chans.Channel]] = None, until: Optional[int] = None, inplace: bool = False ) -> Schedule: r"""Pad the input Schedule with ``Delay``\s on all unoccupied timeslots until ``schedule.duration`` or ``until`` if not ``None``. Args: schedule: Schedule to pad. channels: Channels to pad. Defaults to all channels in ``schedule`` if not provided. If the supplied channel is not a member of ``schedule`` it will be added. until: Time to pad until. Defaults to ``schedule.duration`` if not provided. inplace: Pad this schedule by mutating rather than returning a new schedule. Returns: The padded schedule. """ until = until or schedule.duration channels = channels or schedule.channels for channel in channels: if channel not in schedule.channels: schedule |= instructions.Delay(until, channel) continue curr_time = 0 # Use the copy of timeslots. When a delay is inserted before the current interval, # current timeslot is pointed twice and the program crashes with the wrong pointer index. timeslots = schedule.timeslots[channel].copy() # TODO: Replace with method of getting instructions on a channel for interval in timeslots: if curr_time >= until: break if interval[0] != curr_time: end_time = min(interval[0], until) schedule = schedule.insert( curr_time, instructions.Delay(end_time - curr_time, channel), inplace=inplace) curr_time = interval[1] if curr_time < until: schedule = schedule.insert( curr_time, instructions.Delay(until - curr_time, channel), inplace=inplace) return schedule
def compress_pulses(schedules: List[Schedule]) -> List[Schedule]: """Optimization pass to replace identical pulses. Args: schedules: Schedules to compress. Returns: Compressed schedules. """ existing_pulses = [] new_schedules = [] for schedule in schedules: new_schedule = Schedule(name=schedule.name) for time, inst in schedule.instructions: if isinstance(inst, instructions.Play): if inst.pulse in existing_pulses: idx = existing_pulses.index(inst.pulse) identical_pulse = existing_pulses[idx] new_schedule.insert(time, instructions.Play(identical_pulse, inst.channel, inst.name), inplace=True) else: existing_pulses.append(inst.pulse) new_schedule.insert(time, inst, inplace=True) else: new_schedule.insert(time, inst, inplace=True) new_schedules.append(new_schedule) return new_schedules def _push_left_append(this: Schedule, other: interfaces.ScheduleComponent, ) -> Schedule: r"""Return ``this`` with ``other`` inserted at the maximum time over all channels shared between ```this`` and ``other``. Args: this: Input schedule to which ``other`` will be inserted. other: Other schedule to insert. Returns: Push left appended schedule. """ this_channels = set(this.channels) other_channels = set(other.channels) shared_channels = list(this_channels & other_channels) ch_slacks = [this.stop_time - this.ch_stop_time(channel) + other.ch_start_time(channel) for channel in shared_channels] if ch_slacks: slack_chan = shared_channels[np.argmin(ch_slacks)] shared_insert_time = this.ch_stop_time(slack_chan) - other.ch_start_time(slack_chan) else: shared_insert_time = 0 # Handle case where channels not common to both might actually start # after ``this`` has finished. other_only_insert_time = other.ch_start_time(*(other_channels - this_channels)) # Choose whichever is greatest. insert_time = max(shared_insert_time, other_only_insert_time) return this.insert(insert_time, other, inplace=True) def align_left(schedule: Schedule) -> Schedule: """Align a list of pulse instructions on the left. Args: schedule: Input schedule of which top-level ``child`` nodes will be reschedulued. Returns: New schedule with input `schedule`` child schedules and instructions left aligned. """ aligned = Schedule() for _, child in schedule._children: _push_left_append(aligned, child) return aligned def _push_right_prepend(this: interfaces.ScheduleComponent, other: interfaces.ScheduleComponent, ) -> Schedule: r"""Return ``this`` with ``other`` inserted at the latest possible time such that ``other`` ends before it overlaps with any of ``this``. If required ``this`` is shifted to start late enough so that there is room to insert ``other``. Args: this: Input schedule to which ``other`` will be inserted. other: Other schedule to insert. Returns: Push right prepended schedule. """ this_channels = set(this.channels) other_channels = set(other.channels) shared_channels = list(this_channels & other_channels) ch_slacks = [this.ch_start_time(channel) - other.ch_stop_time(channel) for channel in shared_channels] if ch_slacks: insert_time = min(ch_slacks) + other.start_time else: insert_time = this.stop_time - other.stop_time + other.start_time if insert_time < 0: this.shift(-insert_time, inplace=True) this.insert(0, other, inplace=True) else: this.insert(insert_time, other, inplace=True) return this def align_right(schedule: Schedule) -> Schedule: """Align a list of pulse instructions on the right. Args: schedule: Input schedule of which top-level ``child`` nodes will be reschedulued. Returns: New schedule with input `schedule`` child schedules and instructions right aligned. """ aligned = Schedule() for _, child in reversed(schedule._children): aligned = _push_right_prepend(aligned, child) return aligned def align_sequential(schedule: Schedule) -> Schedule: """Schedule all top-level nodes in parallel. Args: schedule: Input schedule of which top-level ``child`` nodes will be reschedulued. Returns: New schedule with input `schedule`` child schedules and instructions applied sequentially across channels """ aligned = Schedule() for _, child in schedule._children: aligned.insert(aligned.duration, child, inplace=True) return aligned def align_equispaced(schedule: Schedule, duration: int) -> Schedule: """Schedule a list of pulse instructions with equivalent interval. Args: schedule: Input schedule of which top-level ``child`` nodes will be reschedulued. duration: Duration of context. This should be larger than the schedule duration. Returns: New schedule with input `schedule`` child schedules and instructions aligned with equivalent interval. Notes: This context is convenient for writing PDD or Hahn echo sequence for example. """ if duration and duration < schedule.duration: return schedule else: total_delay = duration - schedule.duration if len(schedule._children) > 1: # Calculate the interval in between sub-schedules. # If the duration cannot be divided by the number of sub-schedules, # the modulo is appended and prepended to the input schedule. interval, mod = np.divmod(total_delay, len(schedule._children) - 1) else: interval = 0 mod = total_delay # Calculate pre schedule delay delay, mod = np.divmod(mod, 2) aligned = Schedule() # Insert sub-schedules with interval _t0 = int(aligned.stop_time + delay + mod) for _, child in schedule._children: aligned.insert(_t0, child, inplace=True) _t0 = int(aligned.stop_time + interval) return pad(aligned, aligned.channels, until=duration, inplace=True) def align_func(schedule: Schedule, duration: int, func: Callable[[int], float]) -> Schedule: """Schedule a list of pulse instructions with schedule position defined by the numerical expression. Args: schedule: Input schedule of which top-level ``child`` nodes will be reschedulued. duration: Duration of context. This should be larger than the schedule duration. func: A function that takes an index of sub-schedule and returns the fractional coordinate of of that sub-schedule. The returned value should be defined within [0, 1]. The pulse index starts from 1. Returns: New schedule with input `schedule`` child schedules and instructions aligned with equivalent interval. Notes: This context is convenient for writing UDD sequence for example. """ if duration < schedule.duration: return schedule aligned = Schedule() for ind, (_, child) in enumerate(schedule._children): _t_center = duration * func(ind + 1) _t0 = int(_t_center - 0.5 * child.duration) if _t0 < 0 or _t0 > duration: PulseError('Invalid schedule position t=%d is specified at index=%d' % (_t0, ind)) aligned.insert(_t0, child, inplace=True) return pad(aligned, aligned.channels, until=duration, inplace=True) def flatten(schedule: Schedule) -> Schedule: """Flatten any called nodes into a Schedule tree with no nested children.""" return schedule.flatten() def remove_directives(schedule: Schedule) -> Schedule: """Remove directives.""" return schedule.exclude(instruction_types=[directives.Directive]) def remove_trivial_barriers(schedule: Schedule) -> Schedule: """Remove trivial barriers with 0 or 1 channels.""" def filter_func(inst): return (isinstance(inst[1], directives.RelativeBarrier) and len(inst[1].channels) < 2) return schedule.exclude(filter_func)

© Copyright 2020, Qiskit Development Team. Last updated on 2021/05/25.

Built with Sphinx using a theme provided by Read the Docs.