qiskit-documentation/docs/api/qiskit/0.31/qiskit.pulse.builder.active...

39 lines
1.1 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: active_circuit_scheduler_settings
description: API reference for qiskit.pulse.builder.active_circuit_scheduler_settings
in_page_toc_min_heading_level: 1
python_api_type: function
python_api_name: qiskit.pulse.builder.active_circuit_scheduler_settings
---
# qiskit.pulse.builder.active\_circuit\_scheduler\_settings
<Function id="qiskit.pulse.builder.active_circuit_scheduler_settings" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/pulse/builder.py" signature="active_circuit_scheduler_settings()">
Return the current active builder contexts circuit scheduler settings.
Examples:
```python
from qiskit import pulse
from qiskit.test.mock import FakeOpenPulse2Q
backend = FakeOpenPulse2Q()
circuit_scheduler_settings = {'method': 'alap'}
with pulse.build(
backend,
default_circuit_scheduler_settings=circuit_scheduler_settings):
print(pulse.active_circuit_scheduler_settings())
```
```python
{'method': 'alap'}
```
**Return type**
`Dict`\[`str`, `Any`]
</Function>