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

38 lines
1017 B
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_transpiler_settings
description: API reference for qiskit.pulse.builder.active_transpiler_settings
in_page_toc_min_heading_level: 1
python_api_type: function
python_api_name: qiskit.pulse.builder.active_transpiler_settings
---
# qiskit.pulse.builder.active\_transpiler\_settings
<Function id="qiskit.pulse.builder.active_transpiler_settings" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/pulse/builder.py" signature="active_transpiler_settings()">
Return the current active builder contexts transpiler settings.
Examples:
```python
from qiskit import pulse
from qiskit.test.mock import FakeOpenPulse2Q
backend = FakeOpenPulse2Q()
transpiler_settings = {'optimization_level': 3}
with pulse.build(backend,
default_transpiler_settings=transpiler_settings):
print(pulse.active_transpiler_settings())
```
```python
{'optimization_level': 3}
```
**Return type**
`Dict`\[`str`, `Any`]
</Function>