From ad22caa3d11c4e2c38cdb10f10733b397dc62377 Mon Sep 17 00:00:00 2001 From: Rebecca Dimock Date: Thu, 11 Jul 2024 15:26:12 -0500 Subject: [PATCH] Update primitives-examples.mdx --- docs/guides/primitives-examples.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/primitives-examples.mdx b/docs/guides/primitives-examples.mdx index d431e05bba8..7e4474835e0 100644 --- a/docs/guides/primitives-examples.mdx +++ b/docs/guides/primitives-examples.mdx @@ -9,7 +9,7 @@ description: Practical examples of using primitives in Qiskit Runtime. The examples in this section illustrate some common ways to use primitives. Before running these examples, follow the instructions in [Install and set up.](install-qiskit) -To ensure faster and more efficient results, as of 1 March 2024, circuits and observables need to be transformed to only use instructions supported by the system (referred to as *instruction set architecture (ISA)* circuits and observables) before being submitted to the Qiskit Runtime primitives. See the [transpilation documentation](./transpile) for instructions to transform circuits. Due to this change, the primitives will no longer perform layout or routing operations. Consequently, transpilation options referring to those tasks will no longer have any effect. By default, all V1 primitives optimize the input circuits. To bypass all optimization when using a V1 primitive, set `optimization_level=0`. +To ensure faster and more efficient results, as of 1 March 2024, circuits and observables need to be transformed to only use instructions supported by the QPU (quantum processing unit) before being submitted to the Qiskit Runtime primitives. These are referred to as *instruction set architecture (ISA)* circuits and observables. See the [transpilation documentation](./transpile) for instructions to transform circuits. Due to this change, the primitives will no longer perform layout or routing operations. Consequently, transpilation options referring to those tasks will no longer have any effect. By default, all V1 primitives optimize the input circuits. To bypass all optimization when using a V1 primitive, set `optimization_level=0`. *Exception*: When you initialize the Qiskit Runtime Service with the Q-CTRL channel strategy (example below), abstract circuits are still supported. @@ -324,7 +324,7 @@ print(f" > Expectation values: {result.values}") ### Use sessions and advanced options -Explore sessions and advanced options to optimize circuit performance on quantum systems. +Explore sessions and advanced options to optimize circuit performance on QPUs. @@ -661,7 +661,7 @@ print(f" > Quasi-probability distribution: {result.quasi_dists}") ### Use sessions and advanced options -Explore sessions and advanced options to optimize circuit performance on quantum systems. +Explore sessions and advanced options to optimize circuit performance on QPUs.