2
2
prelude : >
3
3
There are significant changes to how primitives are invoked within a
4
4
session, and the options available to the primitives. Please review the
5
- rest of the release note and the tutorials for full information.
5
+ rest of the release notes and the tutorials for full information.
6
6
features :
7
7
- |
8
8
You can now invoke the same or different primitive programs multiple times
@@ -55,10 +55,11 @@ features:
55
55
job = sampler.run(circuits=ReferenceCircuits.bell(), shots=4000)
56
56
upgrade :
57
57
- |
58
- The experimental parameters `transpilation_settings`, `resilience_settings`,
59
- and `max_time` to the `Sampler` and `Estimator` constructors have been removed.
60
- You can instead use the `qiskit_ibm_runtime.Options` class to specify
61
- the settings, and `max_time` can be specified when starting a new session.
58
+ The experimental parameters ``transpilation_settings``, ``resilience_settings``,
59
+ and ``max_time`` to the `:class:`qiskit_ibm_runtime.Sampler` and
60
+ :class:`qiskit_ibm_runtime.Estimator` constructors have been removed.
61
+ You can instead use the :class:`qiskit_ibm_runtime.Options` class to specify
62
+ the settings, and ``max_time`` can be specified when starting a new session.
62
63
For example::
63
64
64
65
from qiskit_ibm_runtime import Session, Sampler, Options
@@ -78,15 +79,16 @@ deprecations:
78
79
You can instead use the `qiskit_ibm_runtime.Session` class to create a new
79
80
session and invoke one or more primitives within the session.
80
81
81
- As a result, passing input parameters, such as `circuits`, `observables`,
82
- `parameters`, and `parameter_values`, as well as `service`
83
- to the constructors of `Sampler` and
84
- `Estimator` has also been deprecated. The inputs can now be passed to the
85
- `run()` method of the primitive classes, and `service` can be passed
86
- to `qiskit_ibm_runtime.Session` when starting a new session.
82
+ As a result, passing input parameters, such as `` circuits`` , `` observables` `,
83
+ and `` parameter_values`` , as well as `` service` `
84
+ to the constructors of `` Sampler` ` and
85
+ `` Estimator` ` has also been deprecated. The inputs can now be passed to the
86
+ `` run()`` method of the primitive classes, and `` service` ` can be passed
87
+ to :class: `qiskit_ibm_runtime.Session` when starting a new session.
87
88
- |
88
- Passing `skip_transpilation` to the `Sampler` and `Estimator` constructors
89
- has been deprecated. You can instead use the `qiskit_ibm_runtime.Options`
89
+ Passing ``skip_transpilation`` to the `:class:`qiskit_ibm_runtime.Sampler` and
90
+ :class:`qiskit_ibm_runtime.Estimator` constructors
91
+ has been deprecated. You can instead use the :class:`qiskit_ibm_runtime.Options`
90
92
class to specify this option. For example::
91
93
92
94
from qiskit_ibm_runtime import Options
0 commit comments