From 6c8ecb57a0dbedc1de8e42ecf50c4e57726de818 Mon Sep 17 00:00:00 2001 From: ABBY CROSS Date: Thu, 1 Feb 2024 14:40:07 -0500 Subject: [PATCH] Update qiskit-runtime.mdx --- docs/api/migration-guides/qiskit-runtime.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/migration-guides/qiskit-runtime.mdx b/docs/api/migration-guides/qiskit-runtime.mdx index d1bca44fe4c..e5d43a95999 100644 --- a/docs/api/migration-guides/qiskit-runtime.mdx +++ b/docs/api/migration-guides/qiskit-runtime.mdx @@ -11,11 +11,11 @@ in_page_toc_max_heading_level: 2 This guide describes key patterns of behavior and use cases with code examples to help you migrate code from the legacy `qiskit-ibmq-provider` -package to use the Qiskit Runtime primitives. +package to use the Qiskit® Runtime primitives. ## Overview -There are two methods for accessing IBM Quantum systems. First, the `qiskit-ibm-provider` package provides the `backend.run()` interface, allowing direct access to IBM Quantum systems with no pre- or post-processing involved. This level of access is suitable for those users who want **precise control** over circuit execution and result processing. This level of access is needed for those at the level of kernel developer who are looking to develop, for example, circuit optimization routines or error mitigation techniques, or who want to characterize quantum systems. +There are two methods for accessing IBM Quantum® systems. First, the `qiskit-ibm-provider` package provides the `backend.run()` interface, allowing direct access to IBM Quantum systems with no pre- or post-processing involved. This level of access is suitable for those users who want **precise control** over circuit execution and result processing. This level of access is needed for those at the level of kernel developer who are looking to develop, for example, circuit optimization routines or error mitigation techniques, or who want to characterize quantum systems. In contrast, Qiskit Runtime is designed to **streamline algorithm and application construction** by removing the need for users to understand technical hardware and low-level software details. Advanced processing techniques for error suppression and mitigation are automatically applied, giving users high-fidelity results without the burden of having to code these routines themselves. Sessions within Qiskit Runtime allow users to run iterative algorithm circuits back to back, or batch collections of circuits without having to re-queue each job. This results in more efficient quantum processor use and reduces the time users spend running complex computations.