forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Qiskit:main' into pr-add-mcrgates-to-library
- Loading branch information
Showing
17 changed files
with
155 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,89 @@ | ||
.. module:: qiskit | ||
.. | ||
Within each section, the modules should be ordered alphabetically by | ||
module name (not RST filename). | ||
============= | ||
API Reference | ||
============= | ||
|
||
Circuit construction: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
circuit | ||
circuit_library | ||
circuit_classical | ||
circuit_singleton | ||
compiler | ||
visualization | ||
classicalfunction | ||
circuit_library | ||
circuit_singleton | ||
|
||
Quantum information: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
quantum_info | ||
|
||
Transpilation: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
converters | ||
assembler | ||
dagcircuit | ||
passmanager | ||
synthesis | ||
qiskit.synthesis.unitary.aqc | ||
transpiler | ||
transpiler_passes | ||
transpiler_synthesis_plugins | ||
transpiler_preset | ||
transpiler_plugins | ||
|
||
Primitives and providers: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
primitives | ||
providers | ||
providers_basic_provider | ||
providers_fake_provider | ||
providers_models | ||
pulse | ||
scheduler | ||
synthesis | ||
qiskit.synthesis.unitary.aqc | ||
primitives | ||
|
||
Results and visualizations: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
result | ||
visualization | ||
|
||
Serialization: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
qasm2 | ||
qasm3 | ||
qobj | ||
qpy | ||
quantum_info | ||
result | ||
transpiler | ||
transpiler_passes | ||
transpiler_preset | ||
transpiler_plugins | ||
transpiler_synthesis_plugins | ||
utils | ||
|
||
Pulse-level programming: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
pulse | ||
scheduler | ||
|
||
Other: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
assembler | ||
compiler | ||
exceptions | ||
qobj | ||
utils |
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
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
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/fix-swap-router-layout-f28cf0a2de7976a8.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,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed an oversight in the :class:`.Commuting2qGateRouter` transpiler pass where the qreg permutations | ||
were not added to the pass property set, so they would have to be tracked manually by the user. Now it's | ||
possible to access the permutation through the output circuit's ``layout`` property and plug the pass | ||
into any transpilation pipeline without loss of information. |
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,5 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed a bug in :func:`plot_coupling_map` that caused the edges of the coupling map to be colored incorrectly. | ||
See https://github.com/Qiskit/qiskit/pull/12369 for details. |
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