qiskit-documentation/docs/api/qiskit/0.29/qiskit.compiler.schedule.mdx

38 lines
2.0 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: schedule (v0.29)
description: API reference for qiskit.compiler.schedule in qiskit v0.29
in_page_toc_min_heading_level: 1
python_api_type: function
python_api_name: qiskit.compiler.schedule
---
<span id="qiskit-compiler-schedule" />
# qiskit.compiler.schedule
<Function id="qiskit.compiler.schedule" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/compiler/scheduler.py" signature="schedule(circuits, backend=None, inst_map=None, meas_map=None, dt=None, method=None)">
Schedule a circuit to a pulse `Schedule`, using the backend, according to any specified methods. Supported methods are documented in [`qiskit.scheduler.schedule_circuit`](qiskit.scheduler.schedule_circuit#module-qiskit.scheduler.schedule_circuit "qiskit.scheduler.schedule_circuit").
**Parameters**
* **circuits** (`Union`\[`QuantumCircuit`, `List`\[`QuantumCircuit`]]) The quantum circuit or circuits to translate
* **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
* **method** (`Union`\[`str`, `List`\[`str`], `None`]) Optionally specify a particular scheduling method
**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
</Function>