From 63e5083294deff92ae4cf97d74925a88f28b6522 Mon Sep 17 00:00:00 2001 From: Takashi Imamichi <31178928+t-imamichi@users.noreply.github.com> Date: Wed, 20 Nov 2024 06:41:10 +0900 Subject: [PATCH] Add `skip_reset_qubits` option for DD (#2212) qiskit-ibm-runtime 0.32.0 released today includes a new DD option `skip_reset_qubits`. https://github.com/Qiskit/qiskit-ibm-runtime/releases/tag/0.32.0 https://github.com/Qiskit/qiskit-ibm-runtime/pull/1981 --------- Co-authored-by: abbycross Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Co-authored-by: Rebecca Dimock <66339736+beckykd@users.noreply.github.com> --- docs/guides/runtime-options-overview.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/guides/runtime-options-overview.mdx b/docs/guides/runtime-options-overview.mdx index 4b3d7cef3fa..71bed167695 100644 --- a/docs/guides/runtime-options-overview.mdx +++ b/docs/guides/runtime-options-overview.mdx @@ -53,6 +53,8 @@ Options can be defined before a primitive is constructed and passed to the primi ### 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. + Scroll to see the full table. @@ -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` | | @@ -118,6 +121,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` | | @@ -226,4 +230,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). - \ No newline at end of file +