Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

qiskit.compiler.sequence

sequence(scheduled_circuits, backend=None, inst_map=None, meas_map=None, dt=None)

GitHub

Schedule a scheduled circuit to a pulse Schedule, using the backend.

Parameters

  • scheduled_circuits (Union[QuantumCircuit, List[QuantumCircuit]]) – Scheduled circuit(s) to be translated
  • backend (Union[Backend, BaseBackend, None]) – A backend instance, which contains hardware-specific data required for scheduling
  • inst_map (Optional[InstructionScheduleMap]) – Mapping of circuit operations to pulse schedules. If None, defaults to the backend’s instruction_schedule_map
  • meas_map (Optional[List[List[int]]]) – List of sets of qubits that must be measured together. If None, defaults to the backend’s meas_map
  • dt (Optional[float]) – The output sample rate of backend control electronics. For scheduled circuits which contain time information, dt is required. If not provided, it will be obtained from the backend configuration

Return type

Union[Schedule, List[Schedule]]

Returns

A pulse Schedule that implements the input circuit

Raises

QiskitError – If inst_map and meas_map are not passed and backend is not passed

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