-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01b4cc7
commit 078d5a0
Showing
11 changed files
with
19 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 +1 @@ | ||
1.2.1 | ||
1.2.2 |
File renamed without changes.
File renamed without changes.
4 changes: 1 addition & 3 deletions
4
...tes/fix-qft-plugins-7106029d33c44b96.yaml → ...1.2/fix-qft-plugins-7106029d33c44b96.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,9 +1,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
The ``HighLevelSynthesis`` transpiler pass no longer raises an exception when | ||
The :class:`.HighLevelSynthesis` transpiler pass no longer raises an exception when | ||
encountering a custom gate that is called "qft" but is not an instance of | ||
:class:`~qiskit.circuit.library.QFTGate`. Instead, the synthesis plugins for | ||
QFT gates ignore such a gate, and the gate's definition is used (if provided). | ||
File renamed without changes.
14 changes: 7 additions & 7 deletions
14
...-elide-routing-none-7c1bebf1283d48c0.yaml → ...-elide-routing-none-7c1bebf1283d48c0.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,16 +1,16 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed an issue when running :func:`.transpile` or | ||
:meth:`~.StagedPassManager.run` on a pass manager generated by | ||
:func:`.generate_preset_pass_manager` using ``optimization_level`` 2 or 3 | ||
Fixed an issue when calling :func:`.transpile` or | ||
the method :meth:`.StagedPassManager.run` of a pass manager generated by | ||
:func:`.generate_preset_pass_manager`, using ``optimization_level`` 2 or 3 | ||
when the ``routing_method`` argument is set to ``"none"`` to explicitly | ||
disable routing. Previously under these conditions the transpiler would run | ||
the :class:`.ElidePermutation` pass as part of the init stage as under normal | ||
the :class:`.ElidePermutations` pass as part of the init stage, as under normal | ||
conditions this is a useful optimization to remove :class:`.SwapGate` | ||
and :class:`.PermutationGate` instances from the circuit. But when | ||
``routing_method="none"`` this optimization wasn't expected as it permutes | ||
the circuit in a similar manner to routing which shouldn't be performed | ||
the circuit in a similar manner to routing, which shouldn't be performed | ||
when ``routing_method="none"``. This has been fixed by no longer | ||
running :class:`.ElidePermutation` if ``routing_method="none"`` is set. | ||
Fixed `#13144 <https://github.com/Qiskit/qiskit/issues/13144>`__ | ||
running :class:`.ElidePermutations` if ``routing_method="none"`` is set. | ||
Fixed `#13144 <https://github.com/Qiskit/qiskit/issues/13144>`__. |
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,3 @@ | ||
--- | ||
prelude: > | ||
Qiskit 1.2.2 is a minor bugfix release for the 1.2 series. |
File renamed without changes.