Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.32.0 #2006

Merged
merged 4 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
48 changes: 48 additions & 0 deletions release-notes/0.32.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
0.32.0 (2024-10-30)
===================

New Features
------------

- Added :func:`~.draw_execution_spans`, a function for creating a Plotly figure that
visualizes one or more :class:`~.ExecutionSpans` objects. Also added the convenience
method :meth:`~.ExecutionSpans.draw` for invoking the drawing function on a
kt474 marked this conversation as resolved.
Show resolved Hide resolved
particular instance. (`1923 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1923>`__)

.. code-block:: python

from qiskit_ibm_runtime.visualization import draw_execution_spans

# use the drawing function on spans from sampler job data
spans1 = sampler_job1.result().metadata["execution"]["execution_spans"]
spans2 = sampler_job2.result().metadata["execution"]["execution_spans"]
draw_execution_spans(spans1, spans2)

# convenience to plot just spans1
spans1.draw()

- Added a new method, ``backend.refresh()`` that refreshes the
current backend target with the latest updates from the server. (`1955 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1955>`__)
- Added :class:`.DoubleSliceSpan`, an :class:`ExecutionSpan` for batching with two slices. (`1982 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1982>`__)
- :class:`.SamplerV2`, :class:`.EstimatorV2`, and :class:`.noise_learner.NoiseLearner` now each has
kt474 marked this conversation as resolved.
Show resolved Hide resolved
a ``backend()`` method that returns the backend the class is configured with. (`1995 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1995>`__)
kt474 marked this conversation as resolved.
Show resolved Hide resolved


Other Notes
-----------

- Deprecations from the ``0.25.0`` release have been removed.

- ``optimization_level`` is no longer a valid option for ``EstimatorV2``.
- Job methods ``interim_results()`` and ``stream_results()`` have been removed. (`1965 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1965>`__)
- The ``channel_strategy`` parameter in ``QiskitRuntimeService`` has been removed.
To continue using Q-CTRL in your workflow, please explore the following options:

* If your organization has an existing IBM Quantum Premium Plan instance: migrate to
the Q-CTRL Performance Management Function, found in the
`Qiskit Functions Catalog <https://quantum.ibm.com/functions>`__.

* To continue using Qiskit Runtime with IBM Cloud: migrate to Q-CTRL Fire Opal,
the same performance management product accessible directly through Q-CTRL.
You can `connect your IBM Cloud API key and Qiskit Runtime CRN <https://docs.q-ctrl.com/fire-opal/discover/hardware-providers/how-to-authenticate-with-ibm-credentials>`__
to Fire Opal. (`1966 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1966>`__)
15 changes: 0 additions & 15 deletions release-notes/unreleased/1923.feat.rst

This file was deleted.

2 changes: 0 additions & 2 deletions release-notes/unreleased/1955.feat.rst

This file was deleted.

4 changes: 0 additions & 4 deletions release-notes/unreleased/1965.other.rst

This file was deleted.

11 changes: 0 additions & 11 deletions release-notes/unreleased/1966.other.rst

This file was deleted.

1 change: 0 additions & 1 deletion release-notes/unreleased/1982.feat.rst

This file was deleted.

2 changes: 0 additions & 2 deletions release-notes/unreleased/1995.feat.rst

This file was deleted.

Loading