qiskit 1.3.2__cp39-abi3-win32.whl → 1.3.3__cp39-abi3-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qiskit/VERSION.txt +1 -1
- qiskit/_accelerate.pyd +0 -0
- qiskit/circuit/__init__.py +5 -2
- qiskit/circuit/delay.py +5 -0
- qiskit/circuit/library/standard_gates/rz.py +7 -7
- qiskit/circuit/library/standard_gates/xx_minus_yy.py +0 -30
- qiskit/circuit/parametervector.py +25 -5
- qiskit/circuit/quantumcircuit.py +4 -1
- qiskit/compiler/transpiler.py +1 -1
- qiskit/quantum_info/operators/channel/transformations.py +15 -0
- qiskit/transpiler/__init__.py +772 -542
- qiskit/transpiler/layout.py +6 -6
- qiskit/transpiler/passes/layout/sabre_layout.py +13 -0
- qiskit/transpiler/passes/optimization/remove_identity_equiv.py +2 -3
- qiskit/transpiler/passes/scheduling/scheduling/alap.py +1 -1
- qiskit/transpiler/passes/scheduling/scheduling/asap.py +1 -1
- qiskit/transpiler/preset_passmanagers/__init__.py +26 -6
- qiskit/transpiler/preset_passmanagers/plugin.py +33 -42
- qiskit/visualization/circuit/text.py +3 -2
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/METADATA +4 -7
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/RECORD +25 -25
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/LICENSE.txt +0 -0
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/WHEEL +0 -0
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/entry_points.txt +0 -0
- {qiskit-1.3.2.dist-info → qiskit-1.3.3.dist-info}/top_level.txt +0 -0
qiskit/transpiler/layout.py
CHANGED
@@ -445,10 +445,10 @@ class TranspileLayout:
|
|
445
445
|
|
446
446
|
The :mod:`~qiskit.transpiler` is unitary-preserving up to the "initial layout"
|
447
447
|
and "final layout" permutations. The initial layout permutation is caused by
|
448
|
-
setting and applying the initial layout during the :ref:`
|
448
|
+
setting and applying the initial layout during the :ref:`transpiler-preset-stage-layout`.
|
449
449
|
The final layout permutation is caused by :class:`~.SwapGate` insertion during
|
450
|
-
the :ref:`
|
451
|
-
permutations using a variety of helper methods.
|
450
|
+
the :ref:`transpiler-preset-stage-routing`. This class provides an interface to reason about
|
451
|
+
these permutations using a variety of helper methods.
|
452
452
|
|
453
453
|
During the layout stage, the transpiler can potentially remap the order of the
|
454
454
|
qubits in the circuit as it fits the circuit to the target backend. For example,
|
@@ -524,7 +524,7 @@ class TranspileLayout:
|
|
524
524
|
state from the transpiler. They are defined as:
|
525
525
|
|
526
526
|
* :attr:`initial_layout` - This attribute is used to model the
|
527
|
-
permutation caused by the :ref:`
|
527
|
+
permutation caused by the :ref:`transpiler-preset-stage-layout`. It is a
|
528
528
|
:class:`~.Layout` object that maps the input :class:`~.QuantumCircuit`\s
|
529
529
|
:class:`~.circuit.Qubit` objects to the position in the output
|
530
530
|
:class:`.QuantumCircuit.qubits` list.
|
@@ -536,12 +536,12 @@ class TranspileLayout:
|
|
536
536
|
is needed when computing the permutation of the :class:`Operator` of
|
537
537
|
the circuit (and used by :meth:`.Operator.from_circuit`).
|
538
538
|
* :attr:`final_layout` - This attribute is used to model the
|
539
|
-
permutation caused by the :ref:`
|
539
|
+
permutation caused by the :ref:`transpiler-preset-stage-routing`. It is a
|
540
540
|
:class:`~.Layout` object that maps the output circuit's qubits from
|
541
541
|
:class:`.QuantumCircuit.qubits` in the output circuit to their final
|
542
542
|
positions after routing. Importantly, this only represents the
|
543
543
|
permutation caused by inserting :class:`~.SwapGate`\s into
|
544
|
-
the :class:`~.QuantumCircuit` during the :ref:`
|
544
|
+
the :class:`~.QuantumCircuit` during the :ref:`transpiler-preset-stage-routing`.
|
545
545
|
It is **not** a mapping from the original input circuit's position
|
546
546
|
to the final position at the end of the transpiled circuit.
|
547
547
|
If you need this, you can use the :meth:`.final_index_layout` to generate this.
|
@@ -328,6 +328,19 @@ class SabreLayout(TransformationPass):
|
|
328
328
|
for initial, final in enumerate(component.final_permutation)
|
329
329
|
}
|
330
330
|
)
|
331
|
+
|
332
|
+
# The coupling map may have been split into more components than the DAG. In this case,
|
333
|
+
# there will be some physical qubits unaccounted for in our `final_layout`. Strictly the
|
334
|
+
# `if` check is unnecessary, but we can avoid the loop for most circuits and backends.
|
335
|
+
if len(final_layout) != len(physical_qubits):
|
336
|
+
used_qubits = {
|
337
|
+
qubit for component in components for qubit in component.coupling_map.graph.nodes()
|
338
|
+
}
|
339
|
+
for index, qubit in enumerate(physical_qubits):
|
340
|
+
if index in used_qubits:
|
341
|
+
continue
|
342
|
+
final_layout[qubit] = index
|
343
|
+
|
331
344
|
if self.property_set["final_layout"] is None:
|
332
345
|
self.property_set["final_layout"] = final_layout
|
333
346
|
else:
|
@@ -23,9 +23,8 @@ from qiskit._accelerate.remove_identity_equiv import remove_identity_equiv
|
|
23
23
|
class RemoveIdentityEquivalent(TransformationPass):
|
24
24
|
r"""Remove gates with negligible effects.
|
25
25
|
|
26
|
-
Removes gates whose effect is close to an identity operation
|
27
|
-
|
28
|
-
by this pass.
|
26
|
+
Removes gates whose effect is close to an identity operation up to a global phase
|
27
|
+
and up to the specified tolerance. Parameterized gates are not considered by this pass.
|
29
28
|
|
30
29
|
For a cutoff fidelity :math:`f`, this pass removes gates whose average
|
31
30
|
gate fidelity with respect to the identity is below :math:`f`. Concretely,
|
@@ -20,7 +20,7 @@ from qiskit.transpiler.passes.scheduling.scheduling.base_scheduler import BaseSc
|
|
20
20
|
class ALAPScheduleAnalysis(BaseScheduler):
|
21
21
|
"""ALAP Scheduling pass, which schedules the **stop** time of instructions as late as possible.
|
22
22
|
|
23
|
-
See the :ref:`
|
23
|
+
See the :ref:`transpiler-scheduling-description` section in the :mod:`qiskit.transpiler`
|
24
24
|
module documentation for the detailed behavior of the control flow
|
25
25
|
operation, i.e. ``c_if``.
|
26
26
|
"""
|
@@ -20,7 +20,7 @@ from qiskit.transpiler.passes.scheduling.scheduling.base_scheduler import BaseSc
|
|
20
20
|
class ASAPScheduleAnalysis(BaseScheduler):
|
21
21
|
"""ASAP Scheduling pass, which schedules the start time of instructions as early as possible.
|
22
22
|
|
23
|
-
See the :ref:`
|
23
|
+
See the :ref:`transpiler-scheduling-description` section in the :mod:`qiskit.transpiler`
|
24
24
|
module documentation for the detailed behavior of the control flow
|
25
25
|
operation, i.e. ``c_if``.
|
26
26
|
"""
|
@@ -32,21 +32,23 @@ part) the stages that comprise the preset pass managers
|
|
32
32
|
|
33
33
|
.. _preset_pass_manager_generators:
|
34
34
|
|
35
|
-
|
36
|
-
|
35
|
+
Low-level preset pass manager generation
|
36
|
+
----------------------------------------
|
37
37
|
|
38
|
-
.. autofunction:: generate_preset_pass_manager
|
39
38
|
.. autofunction:: level_0_pass_manager
|
40
39
|
.. autofunction:: level_1_pass_manager
|
41
40
|
.. autofunction:: level_2_pass_manager
|
42
41
|
.. autofunction:: level_3_pass_manager
|
43
42
|
|
43
|
+
..
|
44
|
+
`generate_preset_pass_manager` is not documented here because it's documented to be at the root
|
45
|
+
of `qiskit.transpiler`.
|
46
|
+
|
44
47
|
.. _stage_generators:
|
45
48
|
|
46
|
-
Stage
|
49
|
+
Stage generator functions
|
47
50
|
-------------------------
|
48
51
|
|
49
|
-
.. currentmodule:: qiskit.transpiler.preset_passmanagers.common
|
50
52
|
.. autofunction:: generate_control_flow_options_check
|
51
53
|
.. autofunction:: generate_error_on_control_flow
|
52
54
|
.. autofunction:: generate_unroll_3q
|
@@ -55,8 +57,18 @@ Stage Generator Functions
|
|
55
57
|
.. autofunction:: generate_pre_op_passmanager
|
56
58
|
.. autofunction:: generate_translation_passmanager
|
57
59
|
.. autofunction:: generate_scheduling
|
58
|
-
.. currentmodule:: qiskit.transpiler.preset_passmanagers
|
59
60
|
"""
|
61
|
+
|
62
|
+
from .common import (
|
63
|
+
generate_control_flow_options_check,
|
64
|
+
generate_error_on_control_flow,
|
65
|
+
generate_unroll_3q,
|
66
|
+
generate_embed_passmanager,
|
67
|
+
generate_routing_passmanager,
|
68
|
+
generate_pre_op_passmanager,
|
69
|
+
generate_translation_passmanager,
|
70
|
+
generate_scheduling,
|
71
|
+
)
|
60
72
|
from .generate_preset_pass_manager import generate_preset_pass_manager
|
61
73
|
from .level0 import level_0_pass_manager
|
62
74
|
from .level1 import level_1_pass_manager
|
@@ -70,4 +82,12 @@ __all__ = [
|
|
70
82
|
"level_2_pass_manager",
|
71
83
|
"level_3_pass_manager",
|
72
84
|
"generate_preset_pass_manager",
|
85
|
+
"generate_control_flow_options_check",
|
86
|
+
"generate_error_on_control_flow",
|
87
|
+
"generate_unroll_3q",
|
88
|
+
"generate_embed_passmanager",
|
89
|
+
"generate_routing_passmanager",
|
90
|
+
"generate_pre_op_passmanager",
|
91
|
+
"generate_translation_passmanager",
|
92
|
+
"generate_scheduling",
|
73
93
|
]
|
@@ -11,6 +11,8 @@
|
|
11
11
|
# that they have been altered from the originals.
|
12
12
|
|
13
13
|
"""
|
14
|
+
.. _transpiler-preset-stage-plugins:
|
15
|
+
|
14
16
|
=======================================================================================
|
15
17
|
Transpiler Stage Plugin Interface (:mod:`qiskit.transpiler.preset_passmanagers.plugin`)
|
16
18
|
=======================================================================================
|
@@ -35,8 +37,10 @@ see :mod:`qiskit.transpiler.passes.synthesis.plugin`.
|
|
35
37
|
Plugin Stages
|
36
38
|
=============
|
37
39
|
|
38
|
-
|
39
|
-
load external plugins
|
40
|
+
There are six stages in the preset pass managers, all of which actively
|
41
|
+
load external plugins using corresponding entry points. The following table summarizes
|
42
|
+
each stage. For more details on the description and expectations of each stage, follow the link
|
43
|
+
in the stages' names to the full documentation.
|
40
44
|
|
41
45
|
.. list-table:: Stages
|
42
46
|
:header-rows: 1
|
@@ -44,57 +48,44 @@ load external plugins via corresponding entry points.
|
|
44
48
|
* - Stage Name
|
45
49
|
- Entry Point
|
46
50
|
- Reserved Names
|
47
|
-
-
|
48
|
-
|
51
|
+
- Summary
|
52
|
+
|
53
|
+
* - :ref:`init <transpiler-preset-stage-init>`
|
49
54
|
- ``qiskit.transpiler.init``
|
50
55
|
- ``default``
|
51
|
-
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
* - ``layout``
|
56
|
+
- High-level, logical optimizations on abstract circuits, and reduction of multi-qubit
|
57
|
+
operations to one- and two-qubit operations.
|
58
|
+
|
59
|
+
* - :ref:`layout <transpiler-preset-stage-layout>`
|
56
60
|
- ``qiskit.transpiler.layout``
|
57
61
|
- ``trivial``, ``dense``, ``sabre``, ``default``
|
58
|
-
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
layout. The embedding of the :class:`~.Layout` can be generated with
|
63
|
-
:func:`~.generate_embed_passmanager`.
|
64
|
-
* - ``routing``
|
62
|
+
- Choose an initial mapping of virtual qubits to physical qubits, including expansion of the
|
63
|
+
circuit to include explicit ancillas. This stage is sometimes combined with ``routing``.
|
64
|
+
|
65
|
+
* - :ref:`routing <transpiler-preset-stage-routing>`
|
65
66
|
- ``qiskit.transpiler.routing``
|
66
67
|
- ``basic``, ``stochastic``, ``lookahead``, ``sabre``
|
67
|
-
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
of this stage is also expected to have the ``final_layout`` property set field
|
73
|
-
set with a :class:`~.Layout` object that maps the :class:`.Qubit` to the
|
74
|
-
output final position of that qubit in the circuit. If there is an
|
75
|
-
existing ``final_layout`` entry in the property set (such as might be set
|
76
|
-
by an optimization pass that introduces a permutation) it is expected
|
77
|
-
that the final layout will be the composition of the two layouts (this
|
78
|
-
can be computed using :meth:`.DAGCircuit.compose`, for example:
|
79
|
-
``second_final_layout.compose(first_final_layout, dag.qubits)``).
|
80
|
-
* - ``translation``
|
68
|
+
- Insert gates into the circuit to ensure it matches the connectivity constraints of the
|
69
|
+
:class:`.Target`. The inserted gates do not need to be in the target ISA yet, so are often
|
70
|
+
just output as ``swap`` instructions. This stage is sometimes subsumed by ``layout``.
|
71
|
+
|
72
|
+
* - :ref:`translation <transpiler-preset-stage-translation>`
|
81
73
|
- ``qiskit.transpiler.translation``
|
82
|
-
- ``translator``, ``synthesis
|
83
|
-
-
|
84
|
-
|
85
|
-
* -
|
74
|
+
- ``translator``, ``synthesis``
|
75
|
+
- Rewrite all gates outside the target ISA to use only gates within the ISA.
|
76
|
+
|
77
|
+
* - :ref:`optimization <transpiler-preset-stage-optimization>`
|
86
78
|
- ``qiskit.transpiler.optimization``
|
87
79
|
- ``default``
|
88
|
-
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
* - ``scheduling``
|
80
|
+
- Low-level, physical-circuit-aware optimizations. Unlike ``init``, the ``optimization`` stage
|
81
|
+
acts at the level of a physical circuit.
|
82
|
+
|
83
|
+
* - :ref:`scheduling <transpiler-preset-stage-scheduling>`
|
93
84
|
- ``qiskit.transpiler.scheduling``
|
94
85
|
- ``alap``, ``asap``, ``default``
|
95
|
-
-
|
96
|
-
|
97
|
-
|
86
|
+
- Insert :class:`~.circuit.Delay` instructions to make the wall-clock timing of the circuit
|
87
|
+
fully explicit.
|
88
|
+
|
98
89
|
|
99
90
|
Writing Plugins
|
100
91
|
===============
|
@@ -1153,9 +1153,10 @@ class TextDrawing:
|
|
1153
1153
|
if not self.plotbarriers:
|
1154
1154
|
return layer, current_cons, current_cons_cond, connection_label
|
1155
1155
|
|
1156
|
-
|
1156
|
+
top_qubit = min(node.qargs, key=lambda q: self._wire_map.get(q, float("inf")))
|
1157
|
+
for qubit in node.qargs:
|
1157
1158
|
if qubit in self.qubits:
|
1158
|
-
label = op.label if
|
1159
|
+
label = op.label if qubit == top_qubit else ""
|
1159
1160
|
layer.set_qubit(qubit, Barrier(label))
|
1160
1161
|
|
1161
1162
|
elif isinstance(op, SwapGate):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: qiskit
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.3
|
4
4
|
Summary: An open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.
|
5
5
|
Author-email: Qiskit Development Team <qiskit@us.ibm.com>
|
6
6
|
License: Apache 2.0
|
@@ -56,7 +56,7 @@ Requires-Dist: qiskit[crosstalk-pass,csp-layout-pass,qasm3-import,visualization]
|
|
56
56
|
|
57
57
|
[](https://opensource.org/licenses/Apache-2.0) <!--- long-description-skip-begin -->
|
58
58
|
[](https://github.com/Qiskit/qiskit/releases)
|
59
|
-
[](https://github.com/Qiskit/qiskit/releases?q=tag%3A0)
|
59
|
+
<!-- [](https://github.com/Qiskit/qiskit/releases?q=tag%3A0) -->
|
60
60
|
[](https://pypi.org/project/qiskit/)
|
61
61
|
[](https://coveralls.io/github/Qiskit/qiskit?branch=main)
|
62
62
|

|
@@ -76,9 +76,6 @@ For more details on how to use Qiskit, refer to the documentation located here:
|
|
76
76
|
|
77
77
|
## Installation
|
78
78
|
|
79
|
-
> [!WARNING]
|
80
|
-
> Do not try to upgrade an existing Qiskit 0.* environment to Qiskit 1.0 in-place. [Read more](https://docs.quantum.ibm.com/migration-guides/qiskit-1.0-installation).
|
81
|
-
|
82
79
|
We encourage installing Qiskit via ``pip``:
|
83
80
|
|
84
81
|
```bash
|
@@ -200,9 +197,9 @@ to the project at different levels. If you use Qiskit, please cite as per the in
|
|
200
197
|
|
201
198
|
The changelog for a particular release is dynamically generated and gets
|
202
199
|
written to the release page on Github for each release. For example, you can
|
203
|
-
find the page for the `
|
200
|
+
find the page for the `1.2.0` release here:
|
204
201
|
|
205
|
-
<https://github.com/Qiskit/qiskit/releases/tag/
|
202
|
+
<https://github.com/Qiskit/qiskit/releases/tag/1.2.0>
|
206
203
|
|
207
204
|
The changelog for the current release can be found in the releases tab:
|
208
205
|
[](https://github.com/Qiskit/qiskit/releases)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
qiskit/VERSION.txt,sha256=
|
1
|
+
qiskit/VERSION.txt,sha256=s_Tjx41WbNdbhK3XnffM9vLLw1YTSyyNHLBg830fK18,7
|
2
2
|
qiskit/__init__.py,sha256=rw44R_7d2DNPDAhHntvpEYC-uH61EZnOI3Lcwpa74w8,7629
|
3
|
-
qiskit/_accelerate.pyd,sha256=
|
3
|
+
qiskit/_accelerate.pyd,sha256=u6NI7oiymkmip_562xoYkquNUxlUCun9nC-rxuXaUWU,8540672
|
4
4
|
qiskit/_numpy_compat.py,sha256=EV1RihNRJnvWzjb57z8sjMbv9EeRPzk8Mnegzw7ItR0,2888
|
5
5
|
qiskit/exceptions.py,sha256=UamBNQmDJTx6ruzmj7iXgcsrBcvkfE-bZ4TH2-K_ngw,5772
|
6
6
|
qiskit/user_config.py,sha256=IKxY7cK1EX-GqkvPE4Lsss1NMoEcYie6Qq8hkNOtLJA,10371
|
@@ -10,7 +10,7 @@ qiskit/assembler/assemble_circuits.py,sha256=slVUA-BKYYI1pfDzqIZIJyfbgi9FDqaL92B
|
|
10
10
|
qiskit/assembler/assemble_schedules.py,sha256=QUEC8hwXsQ6B4fKteRXZ2M2fzQpXXpliyTa4yLTQN1o,15900
|
11
11
|
qiskit/assembler/disassemble.py,sha256=2OJSlfQolQHSLtteyg7CAibkFZH6BKx6Wy6c8J6ku9E,12940
|
12
12
|
qiskit/assembler/run_config.py,sha256=xVw70UASYS5jGtac6mSK6iKCkAzn3Nux6rksbZ2eC6E,2538
|
13
|
-
qiskit/circuit/__init__.py,sha256=
|
13
|
+
qiskit/circuit/__init__.py,sha256=x-MtfXDO4bnunD_q7ee6Oxa5Gwl5OJnDcr1L6f5Avnk,62974
|
14
14
|
qiskit/circuit/_classical_resource_map.py,sha256=HhScd6Mjs74JEOXstQUTDicY9o74RM_B6EjnbrZeho8,7130
|
15
15
|
qiskit/circuit/_standard_gates_commutations.py,sha256=AvuXIxBhO1OmMB3FOhxOJGi25t-ID2SBBMdPbFgrbjA,102855
|
16
16
|
qiskit/circuit/_utils.py,sha256=MxIpuBs6ZsdfMDxT6ZCFgskp_32FbK7zVHp7sxmzoCQ,6614
|
@@ -22,7 +22,7 @@ qiskit/circuit/classicalregister.py,sha256=YywwqRtiU_6eUanSW4r6dRQoJGm3lwk_R0fE2
|
|
22
22
|
qiskit/circuit/commutation_checker.py,sha256=h3GeXW53jqs6Emw_fLCgjUHnEFGfkBjyNVYFlUi3c6s,3896
|
23
23
|
qiskit/circuit/commutation_library.py,sha256=CCIJAuBtdX2Q7HipwfjLNeAOQlBcZ3mkFJavNsmHtT0,870
|
24
24
|
qiskit/circuit/controlledgate.py,sha256=W0W8BpqVCyTMDbehPfUXf9X3SramuBNo2nQZHaaXkSs,10155
|
25
|
-
qiskit/circuit/delay.py,sha256=
|
25
|
+
qiskit/circuit/delay.py,sha256=4Ncd7-ZnTZ6fWLD3eqSlVNIdqDP3OiuuwyYajqGtDg4,5212
|
26
26
|
qiskit/circuit/duration.py,sha256=O5drvvLFXCOPh0ldYHSFXJhS1iILT5ekEifPxN70CvI,3047
|
27
27
|
qiskit/circuit/equivalence.py,sha256=1R1wJ4Go5STtH43B-GTKOg-oJfKJtYXhiD9WXQk9Xs0,3530
|
28
28
|
qiskit/circuit/equivalence_library.py,sha256=goJMAeNvJzASJGxHeiVUh8FjAU4Qz6UfH_khNU028M0,726
|
@@ -35,8 +35,8 @@ qiskit/circuit/operation.py,sha256=85i2oVIhvEF5mh4TTlpyEXdhfqKwver7LKD0ac2YLRQ,2
|
|
35
35
|
qiskit/circuit/parameter.py,sha256=5nZhW0cUdhRtSOwvxQHSKTZztFWl_yalcr0jK3Hwefk,7283
|
36
36
|
qiskit/circuit/parameterexpression.py,sha256=vmGuv0SctX6730IP3PoBR2JZwU6e-Vqbumz_zuMr7t4,27743
|
37
37
|
qiskit/circuit/parametertable.py,sha256=4u7EuKAiVskcnWQW8dnfU8jgYKZ92KdH2g6PeTvvjjA,3388
|
38
|
-
qiskit/circuit/parametervector.py,sha256=
|
39
|
-
qiskit/circuit/quantumcircuit.py,sha256=
|
38
|
+
qiskit/circuit/parametervector.py,sha256=NgNAy0Tzvy0fdfLIhTI6Bg0kqckevhKVPBP9ONMF3uU,4907
|
39
|
+
qiskit/circuit/quantumcircuit.py,sha256=5nWOe2bzGGLFa9AqR0E06rUxlMds_dzlpSg7FfxSaQQ,300806
|
40
40
|
qiskit/circuit/quantumcircuitdata.py,sha256=mxiyRI9l9dUFfR1t73jzu1mQAzSz6y_cGicmXZBqPJA,5014
|
41
41
|
qiskit/circuit/quantumregister.py,sha256=rtMf7QyEQ_Jyam-KrFFj5pl6BX3DBiHzdGZCAcoVbLU,2107
|
42
42
|
qiskit/circuit/register.py,sha256=sDUEGJnKfQLzJq3OzdgctOpqm1jAlSOZKjw4ngcIhVo,8652
|
@@ -158,7 +158,7 @@ qiskit/circuit/library/standard_gates/rx.py,sha256=xR90foJatqX_sl2OwGlnYekAhpsYU
|
|
158
158
|
qiskit/circuit/library/standard_gates/rxx.py,sha256=4Fp_woeIh4awt8TnkZ9d6Kc5omFbEKdQGX0pfyMCDAY,6870
|
159
159
|
qiskit/circuit/library/standard_gates/ry.py,sha256=u4yVn8Jmctohtb1aHp1oGRanSY8CnrIOFy_6IWQKdCc,10971
|
160
160
|
qiskit/circuit/library/standard_gates/ryy.py,sha256=bLehFiTx48XCX1Qb1-r2PsyOXliNGFWjDweTzUwhKmA,7049
|
161
|
-
qiskit/circuit/library/standard_gates/rz.py,sha256=
|
161
|
+
qiskit/circuit/library/standard_gates/rz.py,sha256=kP0vWA1wl08gvPvZnNaxEV5YU4NsyV6hd9qlh8lrlww,11417
|
162
162
|
qiskit/circuit/library/standard_gates/rzx.py,sha256=1b_po08GgMYoNWwWOY_cmH85lazMFXVPw7ZrqBy1Bh0,8572
|
163
163
|
qiskit/circuit/library/standard_gates/rzz.py,sha256=haV4Z90EJLyqD8DaUl2tJqg0cXtizAynO1ccOlryuDk,6715
|
164
164
|
qiskit/circuit/library/standard_gates/s.py,sha256=2b_7fsTj4Q9Aiyr8r73niC4H1WtpgDDryF2-Jq8ulPw,13250
|
@@ -170,7 +170,7 @@ qiskit/circuit/library/standard_gates/u1.py,sha256=bpg-HnTPRjE_EGjE8R0KHh71FCMsD
|
|
170
170
|
qiskit/circuit/library/standard_gates/u2.py,sha256=ia9yNDBit48ebhJpK67bdDd6fcVlOY5Tr8vjHa64SEE,4552
|
171
171
|
qiskit/circuit/library/standard_gates/u3.py,sha256=0dn5fcsPjxD73Y-EiR_0li0qYVsaUZHKDhOCEJ93XHU,15885
|
172
172
|
qiskit/circuit/library/standard_gates/x.py,sha256=BmyLNj8iP22d53eZwzGoGAQoZ6hEe_32fzL6y0coN9A,53239
|
173
|
-
qiskit/circuit/library/standard_gates/xx_minus_yy.py,sha256=
|
173
|
+
qiskit/circuit/library/standard_gates/xx_minus_yy.py,sha256=8j3AelUSuAjw2Nm7hoIcq__jwjr3gD-8i0Exyre4mz8,7028
|
174
174
|
qiskit/circuit/library/standard_gates/xx_plus_yy.py,sha256=ZxA6hVMs4T7YudN-TtGf_hKgDmfNfFE8vC6JIOKNFvg,8519
|
175
175
|
qiskit/circuit/library/standard_gates/y.py,sha256=cHCH31Eglof8gwg3ebZynnE0j_QzyP03OrsV9ASV3QA,8154
|
176
176
|
qiskit/circuit/library/standard_gates/z.py,sha256=KmHNbtSU-zydin8z9BbmgkcvLVcXaeT7S7sMbsV60sM,10695
|
@@ -257,7 +257,7 @@ qiskit/compiler/__init__.py,sha256=QgVwc3S8rElQDmk21P__XJBDyRMAdFDUCbRWVzFNXE8,1
|
|
257
257
|
qiskit/compiler/assembler.py,sha256=qnWBFcR_QHA4HAjqElP18d7tloOzUnzQt4_Km1eCbfQ,28494
|
258
258
|
qiskit/compiler/scheduler.py,sha256=l9N81WqYzhf62CCC7iuj3FWUpRSrnYJPjL5ipfk9gAI,4641
|
259
259
|
qiskit/compiler/sequencer.py,sha256=fLeQg5oH3ntYHgMXKRkOCFB18gzVoj-DqjfHlXrf2e4,3281
|
260
|
-
qiskit/compiler/transpiler.py,sha256=
|
260
|
+
qiskit/compiler/transpiler.py,sha256=sm1XykICmVxh8KLHIqAnz0yjKb6SLuv4lJoRxKlJqxE,27035
|
261
261
|
qiskit/converters/__init__.py,sha256=12OGiGl9vTNzbQbW-aBlwxttqaPNkWfHoAVIPeTjR-4,2243
|
262
262
|
qiskit/converters/circuit_to_dag.py,sha256=tuHCHTBdYKbqkeihEt8P2X7Kwki8fXiFXQatp0lnzWI,3478
|
263
263
|
qiskit/converters/circuit_to_dagdependency.py,sha256=FoN12_s6giFURhKlPU3yBS9bzYZev_Dl7yxntjBEJNU,1794
|
@@ -466,7 +466,7 @@ qiskit/quantum_info/operators/channel/ptm.py,sha256=E2FdhMgA45arDMJyMbxELtxMEAxy
|
|
466
466
|
qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=k04g_p25BUYXwV-xOBwZDNrrJULeuK2_Q1QL5k8yrx0,14297
|
467
467
|
qiskit/quantum_info/operators/channel/stinespring.py,sha256=NPyYS0s7XANbzccyHcPihn8lYk3DPUk_dnlHXhwnHzM,11735
|
468
468
|
qiskit/quantum_info/operators/channel/superop.py,sha256=XlKTsusuVMos3djvYZ9rqlkHL_Mnf9r0ovCpC_s0bPs,16058
|
469
|
-
qiskit/quantum_info/operators/channel/transformations.py,sha256=
|
469
|
+
qiskit/quantum_info/operators/channel/transformations.py,sha256=l06wUVAz9ntZnevjj2cbhsCe_OAEa8JymB2eXE36j_c,18733
|
470
470
|
qiskit/quantum_info/operators/dihedral/__init__.py,sha256=02VunTrkQrbCi5R2_yR4igvfx5IcVXogB9h5wpjPOM8,604
|
471
471
|
qiskit/quantum_info/operators/dihedral/dihedral.py,sha256=1zHdgVLxl5EebRY4USHhSARNfvT4ywbWElRtSUGj_v4,20774
|
472
472
|
qiskit/quantum_info/operators/dihedral/dihedral_circuits.py,sha256=ownuINlIe_VSWjFmE_sQup9eQwafLsebJLo0IErUJc8,9015
|
@@ -604,12 +604,12 @@ qiskit/synthesis/unitary/aqc/fast_gradient/fast_grad_utils.py,sha256=Z7BKkTQERao
|
|
604
604
|
qiskit/synthesis/unitary/aqc/fast_gradient/fast_gradient.py,sha256=DCRZE4K-OOsPpYWwVncq7CBxyeZKQe-v5VlXwCGAno4,9282
|
605
605
|
qiskit/synthesis/unitary/aqc/fast_gradient/layer.py,sha256=PikHrwNVf_M2KyAjUmy4aKnd4is-bdAqxOagcyaGjI4,13269
|
606
606
|
qiskit/synthesis/unitary/aqc/fast_gradient/pmatrix.py,sha256=p1bb8kkUQLhnO1Uw5ghWDJWNuVBGQOgRfFc88EdYg0w,12645
|
607
|
-
qiskit/transpiler/__init__.py,sha256=
|
607
|
+
qiskit/transpiler/__init__.py,sha256=ygJXki2_VcZyHWQsb7rApQJWLOcoohgmLWxe9_3_1zA,66367
|
608
608
|
qiskit/transpiler/basepasses.py,sha256=xYvXnBGLuzGEcXE7zDWT2a-fLKhTrQSI4Iiur2jdadI,9002
|
609
609
|
qiskit/transpiler/coupling.py,sha256=8oIvOUPpqT-wIjrCP8u0cHiemI1ON4714cH30BAE_iw,19103
|
610
610
|
qiskit/transpiler/exceptions.py,sha256=ef9tiCFmu-fzGwKXg4e9CiBFjcJJxl5zA02L2Pk7wIQ,1769
|
611
611
|
qiskit/transpiler/instruction_durations.py,sha256=wqybiRRVUENdQNGbIwdtYnDjyyu2ekK-Hix9Jb-Xd7Q,11517
|
612
|
-
qiskit/transpiler/layout.py,sha256=
|
612
|
+
qiskit/transpiler/layout.py,sha256=SlCggTV5gOygt2kjOz4_O2yNW17ldS5feyO2jMQbEvI,29077
|
613
613
|
qiskit/transpiler/passmanager.py,sha256=XRFGCDel-Vv8jo_-oHtEgNKqF0g-xThNAEYIiIbBDeg,20889
|
614
614
|
qiskit/transpiler/passmanager_config.py,sha256=0ijWaOubA72XgT9GkU4zQedmuNdlETTA8O_pGmSB6mw,10703
|
615
615
|
qiskit/transpiler/target.py,sha256=5xN3MyqutjQynpLoVatZfgSaC5z008oWBDpUlkvhdaI,63316
|
@@ -648,7 +648,7 @@ qiskit/transpiler/passes/layout/disjoint_utils.py,sha256=icKy_q9EKn3K_omLAe6JOLX
|
|
648
648
|
qiskit/transpiler/passes/layout/enlarge_with_ancilla.py,sha256=fbulRthcjTd888iGMZbVmpBkuxCQcXmjlSxsSA6pIws,1773
|
649
649
|
qiskit/transpiler/passes/layout/full_ancilla_allocation.py,sha256=hcYaI7EMYvJFCKdWPJ-moaClmANcoJmEOqEY5i_yEwM,4781
|
650
650
|
qiskit/transpiler/passes/layout/layout_2q_distance.py,sha256=cXKh1kpoQ-2Pa5YOQhAU6iNyDp0o374leJGz_VcWohc,2800
|
651
|
-
qiskit/transpiler/passes/layout/sabre_layout.py,sha256=
|
651
|
+
qiskit/transpiler/passes/layout/sabre_layout.py,sha256=DfKiQUXTxepBXdCmKmcT3NFrG8bj6XdPhIwZcAfAQao,24045
|
652
652
|
qiskit/transpiler/passes/layout/sabre_pre_layout.py,sha256=_ByRZDZCLSifwE0Q4ljjQMVEF0pKq1LCKyGjL474qDA,9654
|
653
653
|
qiskit/transpiler/passes/layout/set_layout.py,sha256=X_3D_-fU0evPgxv0EGm0ISDDT73hTgQGKu_qJzf3CVQ,2583
|
654
654
|
qiskit/transpiler/passes/layout/trivial_layout.py,sha256=E4JV8B_aomdILUNorxvFN_memUJ2oR3apGtXHnJNSRQ,2445
|
@@ -681,7 +681,7 @@ qiskit/transpiler/passes/optimization/optimize_cliffords.py,sha256=vmAXfL-Pmk0MV
|
|
681
681
|
qiskit/transpiler/passes/optimization/optimize_swap_before_measure.py,sha256=t-4YxtJMKbhHLtuN69TpW19jsQ774sTEoch2IpKuh10,3095
|
682
682
|
qiskit/transpiler/passes/optimization/remove_diagonal_gates_before_measure.py,sha256=kDV9RPv_u4ee2stZITD_vKkM-iv-AkXvlfmKu6Pi2F4,1448
|
683
683
|
qiskit/transpiler/passes/optimization/remove_final_reset.py,sha256=hLQ3lnP2-OApAqzlgGXTXUxXZn2GS6iz2rpOGWOSMPU,1370
|
684
|
-
qiskit/transpiler/passes/optimization/remove_identity_equiv.py,sha256=
|
684
|
+
qiskit/transpiler/passes/optimization/remove_identity_equiv.py,sha256=azgGGiHZlZjRAgUMFtf8FVEBII9VHS_b8fNg7hmEllI,3129
|
685
685
|
qiskit/transpiler/passes/optimization/remove_reset_in_zero_state.py,sha256=Tsj-ffvKidubmdE9e8ulBS_A_c5OPUkAmfPmZ28P-ug,1284
|
686
686
|
qiskit/transpiler/passes/optimization/reset_after_measure_simplification.py,sha256=Jav9-ulhjqWgHoa_Lh8YVy0K2QF387GMcytR_VqmF-I,2058
|
687
687
|
qiskit/transpiler/passes/optimization/split_2q_unitaries.py,sha256=XwkuHkAZccYhvYw8zqi6HlXIn08Yc-BHY0ZkiBxNcek,1761
|
@@ -725,8 +725,8 @@ qiskit/transpiler/passes/scheduling/padding/base_padding.py,sha256=Ry9BxtO0uQ54H
|
|
725
725
|
qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py,sha256=sbrj-jvzZi4zloAiR93_JEWb2pt1Roj1Iu5SW0-nhJo,21951
|
726
726
|
qiskit/transpiler/passes/scheduling/padding/pad_delay.py,sha256=aVZocKYK1OxlvrtHW0Bn568cMCCucvuk1VWvoWmRCS4,2948
|
727
727
|
qiskit/transpiler/passes/scheduling/scheduling/__init__.py,sha256=cInij3Y6NmFG6gUgec7IKaQ-0ZZR-iIuxpUbnfjs1YE,671
|
728
|
-
qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=
|
729
|
-
qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=
|
728
|
+
qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=hijR0roSfxy18Ad7cCdPmKNKR3UuYsXded1-LguUoU4,5802
|
729
|
+
qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=03bOLxVvY6yeOyCYO2dVgOxtX4gyBT8IA7hwtB1NrT0,5913
|
730
730
|
qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py,sha256=oh_1Gb6G2CdzKwekaEEt81_dTbMtg6ahWKtFEfChOg0,3822
|
731
731
|
qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py,sha256=FmQSvPbI67L1MvF4A1tbM3Z_8r_7bx6exAyt2Iy-uVw,2918
|
732
732
|
qiskit/transpiler/passes/synthesis/__init__.py,sha256=Q18fvaIkZ1PXp680Y53DkatyPg81zNVrdUp_hTJ7k_c,945
|
@@ -755,7 +755,7 @@ qiskit/transpiler/passes/utils/minimum_point.py,sha256=B4mjyZmKQcMQoTA8bhLbIPXXt
|
|
755
755
|
qiskit/transpiler/passes/utils/remove_barriers.py,sha256=A6QDbze8BJFl2T98hz86IkQJM8cWWan1bB0AYX5S9qY,1526
|
756
756
|
qiskit/transpiler/passes/utils/remove_final_measurements.py,sha256=VWFXt3_IhmuS7XgxKJodL2WdEOdhfgxtRmxGnUFN6jA,4831
|
757
757
|
qiskit/transpiler/passes/utils/unroll_forloops.py,sha256=mkjucqYOXyfJpCT3dtXUMJeiEUoi6NegGfAubXmmZRo,3201
|
758
|
-
qiskit/transpiler/preset_passmanagers/__init__.py,sha256=
|
758
|
+
qiskit/transpiler/preset_passmanagers/__init__.py,sha256=4W4LEXFUjRvcWf1XbiedLHFNgq3Yzdjl99OYW5S63G0,3398
|
759
759
|
qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=qQbj799I6fS240V6zx0Ja7BjhAI0H0_Tt6c5oK2H-70,44518
|
760
760
|
qiskit/transpiler/preset_passmanagers/common.py,sha256=WIyb4sDZdfWTonF-ApLK6v3c_Cz8XihBCH0mpWMUrnw,27171
|
761
761
|
qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=seWSKTlj-kV1NtwbD_Usk9QUhHq3T8_aifUXJBtf8Ik,31516
|
@@ -763,7 +763,7 @@ qiskit/transpiler/preset_passmanagers/level0.py,sha256=-X8y92rTBnvYlbXnWcFgwkF78
|
|
763
763
|
qiskit/transpiler/preset_passmanagers/level1.py,sha256=Cxw99_TL8px-pavkr_XRkMFi9z8F5xnXuDiKRCTbFQE,4926
|
764
764
|
qiskit/transpiler/preset_passmanagers/level2.py,sha256=cSOrYsVVJC5DJpjnJ4lNRtkZe_lKH4w385lsb8bogWU,4850
|
765
765
|
qiskit/transpiler/preset_passmanagers/level3.py,sha256=utjbWW25NJ8crbXaVQVgn96lOmqs5ZOgcoMwReaGZpk,5038
|
766
|
-
qiskit/transpiler/preset_passmanagers/plugin.py,sha256=
|
766
|
+
qiskit/transpiler/preset_passmanagers/plugin.py,sha256=4w1sMDWwiAXeCLqL5AZrh50G8i1IreF4WYSRQu_Sx2U,14250
|
767
767
|
qiskit/utils/__init__.py,sha256=4rnpqivxJjhiZkN2Crf_kl9ebey2djIdbiJUVKUhcc4,2337
|
768
768
|
qiskit/utils/classtools.py,sha256=zFv50IaynNg3BOuQzzolKSDCIKOQa31XH96s6kGoahE,6819
|
769
769
|
qiskit/utils/deprecate_pulse.py,sha256=lmnrhkFobasg84Cv4qnuOWLP4xPUa9iMjnOYA141Nog,4351
|
@@ -792,7 +792,7 @@ qiskit/visualization/circuit/circuit_visualization.py,sha256=yxkv5BDNO9XX7PVAdtI
|
|
792
792
|
qiskit/visualization/circuit/latex.py,sha256=P_FE1VrLvds9zReTX3WcYLhGINdaz6euwkpK7thzmiY,26893
|
793
793
|
qiskit/visualization/circuit/matplotlib.py,sha256=oTe82LhnrdHGlSEopRgfyNpe39rbIxlOBJacBhN1F5c,81461
|
794
794
|
qiskit/visualization/circuit/qcstyle.py,sha256=OaVptaN8ACJt5LOM7WTkhnJyX8ThnTeHjDyZ8NeI4-I,10911
|
795
|
-
qiskit/visualization/circuit/text.py,sha256=
|
795
|
+
qiskit/visualization/circuit/text.py,sha256=KOebUlAjkOYr7O_lbgYns2_A2Eu2kXGhMKsAkDXRklo,73098
|
796
796
|
qiskit/visualization/circuit/styles/__init__.py,sha256=mbuSNGYZJ4EUIpQxk04ACFSPD3ZCrpmkoQqN2dECrjs,528
|
797
797
|
qiskit/visualization/circuit/styles/bw.json,sha256=uFhd_x60HMlXE0G-slNpufTnq4dRMVFtF0VzUTJXelQ,4078
|
798
798
|
qiskit/visualization/circuit/styles/clifford.json,sha256=deCD60g3a8pJf8MkMuJSfmPssdi08iaBR9KKeiumLz4,4078
|
@@ -828,9 +828,9 @@ qiskit/visualization/timeline/types.py,sha256=jtpipQWUpahayNPQYKUst4GG6BqauovO0q
|
|
828
828
|
qiskit/visualization/timeline/plotters/__init__.py,sha256=Klg9a1cSUIQhc815g8OpnD5vO1hcI51L9KlFfKzcuRg,588
|
829
829
|
qiskit/visualization/timeline/plotters/base_plotter.py,sha256=taRkL2ZbyorRUEf6nJS8egdzKW2eznQ3w5oBLtMG_U8,1805
|
830
830
|
qiskit/visualization/timeline/plotters/matplotlib.py,sha256=lqqNH3-bdf1F1cS2mDla9dLr5qEOeIFuqVl9Rhdg-Dw,7086
|
831
|
-
qiskit-1.3.
|
832
|
-
qiskit-1.3.
|
833
|
-
qiskit-1.3.
|
834
|
-
qiskit-1.3.
|
835
|
-
qiskit-1.3.
|
836
|
-
qiskit-1.3.
|
831
|
+
qiskit-1.3.3.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
|
832
|
+
qiskit-1.3.3.dist-info/METADATA,sha256=oVa5de54-W635t_ICPmuYq9oIK1vVu9ZUS8smRSr0_g,12948
|
833
|
+
qiskit-1.3.3.dist-info/WHEEL,sha256=0t-5NY-EnDFOJkFnD10hK8OJuwmlGPfUSIb7R7_TSAQ,95
|
834
|
+
qiskit-1.3.3.dist-info/entry_points.txt,sha256=8f4O6ZbFAIr5AzsP3wWosbp6n4_WI-sYGkgID9Y9JSE,5673
|
835
|
+
qiskit-1.3.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
|
836
|
+
qiskit-1.3.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|