-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit prepares the 0.8.1 release notes for release.
- Loading branch information
Showing
4 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
releasenotes/notes/fix-initialize-sampling-b6948e39112f6a46.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes bug where the initialize instruction would disable measurement | ||
sampling optimization for the statevector and matrix product state | ||
simulation methods even when it was the first circuit instruction or | ||
applied to all qubits and hence deterministic. | ||
Fixed an issue where the :class:`qiskit.extensions.Initialize` instruction | ||
would disable measurement sampling optimization for the ``statevector`` and | ||
``matrix_product_state`` simulation methods of the | ||
:class:`~qiskit.providers.aer.AerSimulator` and | ||
:class:`~qiskit.providers.aer.QasmSimulator` simulators, even when it was | ||
the first circuit instruction or applied to all qubits and hence | ||
deterministic. | ||
Fixed `#1210 <https://github.com/Qiskit/qiskit-aer/issues/1210>`__ |
8 changes: 7 additions & 1 deletion
8
releasenotes/notes/fix-normalize-statevector-extended-stabilizer-3811f44e003099f3.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fix issue #1196 by using the inner products with the computational basis states to calculate the norm rather than the norm estimation algorithm. | ||
Fix an issue with the :class:`~qiskit.providers.aer.library.SaveStatevector` | ||
and :class:`~qiskit.providers.aer.extensions.SnapshotStatevector` | ||
instructions when used with the ``extended_stabilizer`` simulation method | ||
of the :class:`~qiskit.providers.aer.AerSimulator` and | ||
:class:`~qiskit.providers.aer.QasmSimulator` simulators where it would | ||
return an unnormalized statevector. | ||
Fixed `#1196 <https://github.com/Qiskit/qiskit-aer/issues/1210>`__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
|
||
features: | ||
fixes: | ||
- | | ||
Added support for set_matrix_product_state. | ||
The ``matrix_product_state`` simulation method now has support for it's | ||
previously missing set state instruction, | ||
:class:`qiskit.providers.aer.library.SetMatrixProductState`, which enables | ||
setting the state of a simulation in a circuit. |