-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1111 from chriseclectic/backports-0.7.3
Release 0.7.3 backports
- Loading branch information
Showing
28 changed files
with
454 additions
and
100 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
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
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
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
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
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
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
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
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,2 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "urllib3<1.26", "conan>=1.22.2", "scikit-build", "cmake!=3.17.1,!=3.17.0", "ninja", "pybind11>2.4", "Cython>0.27.1"] | ||
requires = ["setuptools", "wheel", "urllib3<1.26", "conan>=1.22.2", "scikit-build", | ||
"cmake!=3.17.1,!=3.17.0", "ninja", "pybind11>2.4", "Cython>0.27.1", "numpy>1.16.3"] |
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 +1 @@ | ||
0.7.2 | ||
0.7.3 |
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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
features: | ||
- | | ||
Python 3.9 support has been added in this release. You can now run Qiskit | ||
Aer using Python 3.9 without building from source. | ||
deprecations: | ||
- | | ||
Python 3.6 support has been deprecated and will be removed in a future | ||
release. When support is removed you will need to upgrade the Python | ||
version you're using to Python 3.7 or above. |
11 changes: 11 additions & 0 deletions
11
releasenotes/notes/fix-backend-noise-model-f22e9d6254d70852.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes issue with setting :class:`~qiskit.providers.aer.QasmSimulator` | ||
basis gates when using ``"method"`` and ``"noise_model"`` options | ||
together, and when using them with a simulator constructed using | ||
:meth:`~qiskit.providers.aer.QasmSimulator.from_backend`. Now the | ||
listed basis gates will be the intersection of gates supported by | ||
the backend configuration, simulation method, and noise model basis | ||
gates. If the intersection of the noise model basis gates and | ||
simulator basis gates is empty a warning will be logged. |
6 changes: 6 additions & 0 deletions
6
releasenotes/notes/fix-c-if-large-register-79d6649395e57ff5.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes a bug that resulted in `c_if` not working when the | ||
width of the conditional register was greater than 64. See | ||
`#1077 <https://github.com/Qiskit/qiskit-aer/issues/1077>`. |
11 changes: 11 additions & 0 deletions
11
releasenotes/notes/fix-noise-basis-gates-ecdfa43394ff78e3.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes bug in | ||
:meth:`~qiskit.providers.aer.noise.NoiseModel.from_backend` and | ||
:meth:`~qiskit.providers.aer.QasmSimulator.from_backend` where | ||
:attr:`~qiskit.providers.aer.noise.NoiseModel.basis_gates` was set | ||
incorrectly for IBMQ devices with basis gate set | ||
``['id', 'rz', 'sx', 'x', 'cx']``. Now the noise model will always | ||
have the same basis gates as the backend basis gates regardless of | ||
whether those instructions have errors in the noise model or not. |
Oops, something went wrong.