Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add skip_reset_qubits option for DD #2212

Merged
merged 4 commits into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/guides/runtime-options-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Options can be defined before a primitive is constructed and passed to the primi
<span id="options-table"></span>
### Available options

The following table documents options from the latest version of `qiskit-ibm-runtime`. To see older option versions, visit the [`qiskit-ibm-runtime` API reference](/api/qiskit-ibm-runtime) and select a previous version.

<Admonition type="caution" title="Important">
Scroll to see the full table.
</Admonition>
Expand All @@ -68,6 +70,7 @@ Scroll to see the full table.
| | sequence_type | | `'XX'`/`'XpXm'`/`'XY4'` | `'XX'` | |
| | extra_slack_distribution | | `'middle'`/`'edges'` | `'middle'` | |
| | scheduling_method | | `'asap'`/`'alap'` | `'alap'` | |
| | skip_reset_qubits | | `True`/`False` | `False` | |
| [environment](../api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.EnvironmentOptions) | | | | | environment |
| | log_level | |`DEBUG`/`INFO`/`WARNING`/`ERROR`/`CRITICAL` |`WARNING` | |
| | callback | |Callable function that receives Job ID and Job result. |`None` | |
Expand Down Expand Up @@ -116,6 +119,7 @@ Scroll to see the full table.
| | sequence_type | | `'XX'`/`'XpXm'`/`'XY4'` | `'XX'` | |
| | extra_slack_distribution | | `'middle'`/`'edges'` | `'middle'` | |
| | scheduling_method | | `'asap'`/`'alap'` | `'alap'` | |
| | skip_reset_qubits | | `True`/`False` | `False` | |
| [environment](../api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.EnvironmentOptions) | | | | | |
| | log_level | |`DEBUG`/`INFO`/`WARNING`/`ERROR`/`CRITICAL` |`WARNING` | environment |
| | callback | |Callable function that receives Job ID and Job result. |`None` | |
Expand Down Expand Up @@ -212,4 +216,4 @@ Due to differences in the device compilation process, certain runtime features c
- Find more details about the `SamplerV2` methods in the [Sampler API reference](../api/qiskit-ibm-runtime/qiskit_ibm_runtime.SamplerV2).
- Find details about how to configure [error suppression](configure-error-suppression) and [error mitigation](configure-error-mitigation).
- Learn how to [specify options](specify-runtime-options).
</Admonition>
</Admonition>
Loading