Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docs/guides/classical-feedforward-and-control-flow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,8 @@
"- Having `reset` or measurements inside conditionals is not supported.\n",
"- Arithmetic operations are not supported.\n",
"- See the [OpenQASM 3 feature table](/docs/guides/qasm-feature-table) to determine which OpenQASM 3 features are supported on Qiskit and Qiskit Runtime.\n",
"- When OpenQASM 3 (instead of `QuantumCircuit`) is used as the input format to pass circuits to Qiskit Runtime primitives, only instructions that can be loaded into Qiskit are supported. Classical operations, for example, are not supported because they cannot be loaded into Qiskit. See [Import an OpenQASM 3 program into Qiskit](/docs/guides/interoperate-qiskit-qasm3#import-an-openqasm-3-program-into-qiskit) for more information on loading an OpenQASM 3 program into Qiskit."
"- When OpenQASM 3 (instead of `QuantumCircuit`) is used as the input format to pass circuits to Qiskit Runtime primitives, only instructions that can be loaded into Qiskit are supported. Classical operations, for example, are not supported because they cannot be loaded into Qiskit. See [Import an OpenQASM 3 program into Qiskit](/docs/guides/interoperate-qiskit-qasm3#import-an-openqasm-3-program-into-qiskit) for more information.\n",
"- The `for`, `while`, and `switch` instructions are not supported."
]
},
{
Expand Down
9 changes: 5 additions & 4 deletions docs/guides/runtime-options-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -931,11 +931,11 @@ Due to differences in the device compilation process, certain runtime features c
- PEA
- PEC
- Dynamical decoupling
- Fractional gates

Other notes:
- Can be used with gate twirling for non-conditional gates.
- Dynamic circuits are not supported on all QPUs. Additionally, some dynamic circuit functions have been deprecated. For details, see [Classical feedforward and control flow.](/docs/guides/classical-feedforward-and-control-flow)
- Compatible with fractional gates when using `qiskit-ibm-runtime` v0.42.0 or later.

</TabItem>
<TabItem value="DD" label="Dynamical decoupling">
Incompatible with dynamic circuits.
Expand All @@ -944,11 +944,12 @@ Due to differences in the device compilation process, certain runtime features c

<TabItem value="Fractional" label="Fractional gates">
Incompatible with:
- Dynamic circuits
- Gate twirling
- PEA
- PEC

Compatible with dynamic circuits when using `qiskit-ibm-runtime` v0.42.0 or later.

</TabItem>

<TabItem value="ZNE" label="Gate-folding ZNE">
Expand All @@ -960,7 +961,7 @@ Due to differences in the device compilation process, certain runtime features c
Might not work when using custom gates.
</TabItem>
<TabItem value="Twirling" label="Gate twirling">
Incompatible with fractional gates.
Incompatible with fractional gates or with stretches.

Other notes:
- Can be used with dynamic circuits with non-conditional gates.
Expand Down