diff --git a/docs/guides/classical-feedforward-and-control-flow.ipynb b/docs/guides/classical-feedforward-and-control-flow.ipynb index c500dae1583..53f8d029ffe 100644 --- a/docs/guides/classical-feedforward-and-control-flow.ipynb +++ b/docs/guides/classical-feedforward-and-control-flow.ipynb @@ -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." ] }, { diff --git a/docs/guides/runtime-options-overview.mdx b/docs/guides/runtime-options-overview.mdx index 068727f08fc..4e5f7a068ef 100644 --- a/docs/guides/runtime-options-overview.mdx +++ b/docs/guides/runtime-options-overview.mdx @@ -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. + Incompatible with dynamic circuits. @@ -944,11 +944,12 @@ Due to differences in the device compilation process, certain runtime features c Incompatible with: - - Dynamic circuits - Gate twirling - PEA - PEC + Compatible with dynamic circuits when using `qiskit-ibm-runtime` v0.42.0 or later. + @@ -960,7 +961,7 @@ Due to differences in the device compilation process, certain runtime features c Might not work when using custom gates. - Incompatible with fractional gates. + Incompatible with fractional gates or with stretches. Other notes: - Can be used with dynamic circuits with non-conditional gates.