qiskit 1.3.2__cp39-abi3-macosx_11_0_arm64.whl → 1.3.3__cp39-abi3-macosx_11_0_arm64.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.
@@ -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:`layout_stage`.
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:`routing_stage`. This class provides an interface to reason about these
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:`layout_stage`. It is a
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:`routing_stage`. It is a
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:`routing_stage`.
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, up to the specified
27
- tolerance. Zero qubit gates such as :class:`.GlobalPhaseGate` are not considered
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:`scheduling_stage` section in the :mod:`qiskit.transpiler`
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:`scheduling_stage` section in the :mod:`qiskit.transpiler`
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
- Preset Pass Manager Generation
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 Generator Functions
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
- Currently, there are 6 stages in the preset pass managers, all of which actively
39
- load external plugins via corresponding entry points.
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
- - Description and expectations
48
- * - ``init``
51
+ - Summary
52
+
53
+ * - :ref:`init <transpiler-preset-stage-init>`
49
54
  - ``qiskit.transpiler.init``
50
55
  - ``default``
51
- - This stage runs first and is typically used for any initial logical optimization. Because most
52
- layout and routing algorithms are only designed to work with 1 and 2 qubit gates, this stage
53
- is also used to translate any gates that operate on more than 2 qubits into gates that only
54
- operate on 1 or 2 qubits.
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
- - The output from this stage is expected to have the ``layout`` property
59
- set field set with a :class:`~.Layout` object. Additionally, the circuit is
60
- typically expected to be embedded so that it is expanded to include all
61
- qubits and the :class:`~.ApplyLayout` pass is expected to be run to apply the
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
- - The output from this stage is expected to have the circuit match the
68
- connectivity constraints of the target backend. This does not necessarily
69
- need to match the directionality of the edges in the target as a later
70
- stage typically will adjust directional gates to match that constraint
71
- (but there is no penalty for doing that in the ``routing`` stage). The output
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``, ``unroller``
83
- - The output of this stage is expected to have every operation be a native
84
- instruction on the target backend.
85
- * - ``optimization``
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
- - This stage is expected to perform optimization and simplification.
89
- The constraints from earlier stages still apply to the output of this
90
- stage. After the ``optimization`` stage is run we expect the circuit
91
- to still be executable on the target.
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
- - This is the last stage run and it is expected to output a scheduled
96
- circuit such that all idle periods in the circuit are marked by explicit
97
- :class:`~qiskit.circuit.Delay` instructions.
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
- for i, qubit in enumerate(node.qargs):
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 i == 0 else ""
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.2
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
  [![License](https://img.shields.io/github/license/Qiskit/qiskit.svg?)](https://opensource.org/licenses/Apache-2.0) <!--- long-description-skip-begin -->
58
58
  [![Current Release](https://img.shields.io/github/release/Qiskit/qiskit.svg?logo=Qiskit)](https://github.com/Qiskit/qiskit/releases)
59
- [![Extended Support Release](https://img.shields.io/github/v/release/Qiskit/qiskit?sort=semver&filter=0.*&logo=Qiskit&label=extended%20support)](https://github.com/Qiskit/qiskit/releases?q=tag%3A0)
59
+ <!-- [![Extended Support Release](https://img.shields.io/github/v/release/Qiskit/qiskit?sort=semver&filter=0.*&logo=Qiskit&label=extended%20support)](https://github.com/Qiskit/qiskit/releases?q=tag%3A0) -->
60
60
  [![Downloads](https://img.shields.io/pypi/dm/qiskit.svg)](https://pypi.org/project/qiskit/)
61
61
  [![Coverage Status](https://coveralls.io/repos/github/Qiskit/qiskit/badge.svg?branch=main)](https://coveralls.io/github/Qiskit/qiskit?branch=main)
62
62
  ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qiskit)
@@ -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 `0.46.0` release here:
200
+ find the page for the `1.2.0` release here:
204
201
 
205
- <https://github.com/Qiskit/qiskit/releases/tag/0.46.0>
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
  [![Releases](https://img.shields.io/github/release/Qiskit/qiskit.svg?style=flat&label=)](https://github.com/Qiskit/qiskit/releases)
@@ -1,10 +1,10 @@
1
1
  qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
2
2
  qiskit/__init__.py,sha256=MHSxG7bMhoESBIzoz9DdWdolCdPTwnwHJ80zjWMoRd4,7483
3
- qiskit/_accelerate.abi3.so,sha256=TLX6afEyNDKltaLeZ_jhigujKeypXSNkbAgaesdZC58,8799968
3
+ qiskit/_accelerate.abi3.so,sha256=pihrOozIu7s50vIjOWUcWdFNMM6KdesprOkr9rLo8R8,8800048
4
4
  qiskit/user_config.py,sha256=I7QCF9W2IDpleWunxDjgYGySsVUlq57gfj_137o0Dac,10109
5
5
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
6
6
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
7
- qiskit/VERSION.txt,sha256=MxWJcqU4d7Qhz-JZi42TyrFpljpJZLRe6InoU0mXkBg,6
7
+ qiskit/VERSION.txt,sha256=p0oM-E7wsV4B5kdGw0ZYEzErdjeW9PY2KwkvCS3MuLU,6
8
8
  qiskit/visualization/circuit_visualization.py,sha256=6R-A96Uwb_RZOovsSB0LGVsC7lP5IhtLNp6VP2yVBwE,698
9
9
  qiskit/visualization/counts_visualization.py,sha256=qBJHQyD6oSAa9nacOQvUPu6WpGGJ7baxy2Y6YerAWVU,16887
10
10
  qiskit/visualization/pass_manager_visualization.py,sha256=19m4pUdYG0csZgQbuxfFP-zfoVGnk0pJr0HVToD1Y04,10886
@@ -39,7 +39,7 @@ qiskit/visualization/pulse_v2/generators/snapshot.py,sha256=pJxWrZQQ67qaM4aChcrT
39
39
  qiskit/visualization/circuit/circuit_visualization.py,sha256=CQyimpxryIEE9El_iWRVFAV305QfOkICxUc5_ulRIdM,29145
40
40
  qiskit/visualization/circuit/matplotlib.py,sha256=H9KShoKrlqD51t0ibxehb6AWHQwm68ba6NX4ePJa7HI,79432
41
41
  qiskit/visualization/circuit/__init__.py,sha256=nsSvXY3I5Htg52GHr2SyXMx9cb__jrX7dWj9x5esyTw,573
42
- qiskit/visualization/circuit/text.py,sha256=U-rCvw9X-d64POxx_I9lWMt7pQgXA9BLeuHp_0XGPH8,71164
42
+ qiskit/visualization/circuit/text.py,sha256=Jc8EXLaL4HdWihpq7DFe2SwJo020MYv93lRDlBdbl7c,71253
43
43
  qiskit/visualization/circuit/qcstyle.py,sha256=dh7UGOimKm4aO6BVnAiHaqTQ1ZAJMcw39RzhYIW6LgA,10633
44
44
  qiskit/visualization/circuit/latex.py,sha256=DsvKYmOWjRTBlQVHMJnunme8jUpsHJ1Tyu0s1X5XwvQ,26232
45
45
  qiskit/visualization/circuit/_utils.py,sha256=uJUbTJgokWhF0_EWc2mTfvELVHHOMHinFFrhfMSJLeU,24352
@@ -61,9 +61,9 @@ qiskit/visualization/timeline/plotters/base_plotter.py,sha256=1do-sZjHjUzqh3HI3M
61
61
  qiskit/visualization/timeline/plotters/matplotlib.py,sha256=4PfgOQCJa4dzwEpGR9me403DKyJ7W6Gk2PVINOTxQpM,6894
62
62
  qiskit/visualization/timeline/plotters/__init__.py,sha256=3uM5AgCcqxqBHhslUGjjmqEL6Q04hVSGvl3d2bsUtTI,572
63
63
  qiskit/transpiler/timing_constraints.py,sha256=TAFuarfaeLdH4AdWO1Cexv7jo8VC8IGhAOPYTDLBFdE,2382
64
- qiskit/transpiler/layout.py,sha256=bbQ5Zdrn68vYnUczFZpY6UskUQrE7bbiirWVq0a9cvU,28247
64
+ qiskit/transpiler/layout.py,sha256=8rMRAaK6fcBFvD311U1WMn58X1dMAUOihDOB1iqi1LE,28337
65
65
  qiskit/transpiler/coupling.py,sha256=Lrh6U3hFXqEPk-X0xHrLZzdB-SXkJEVkLlAVzwEmKrA,18603
66
- qiskit/transpiler/__init__.py,sha256=odgHJa3m7Cyza7vyRwEcdLOOVHW3_7VRk648SK64x58,50096
66
+ qiskit/transpiler/__init__.py,sha256=5oPhCE-T4oeH8bg15_hzhf5q-yUY-JN1XDJkcEW4CtE,64826
67
67
  qiskit/transpiler/basepasses.py,sha256=zNsmm3LEGvS9YVgKhiozAEe5VGO-kzII5tbtMbzcv68,8781
68
68
  qiskit/transpiler/passmanager.py,sha256=mxdKQQkV9ZJ1tB1TFbqlkex_0B8HItILGzk6CNFikzE,20399
69
69
  qiskit/transpiler/passmanager_config.py,sha256=u0Ag_6ygdUjsBFksd0ptbEdkPH7aZ4ORmcJ8aqqhKDg,10487
@@ -87,9 +87,9 @@ qiskit/transpiler/passes/scheduling/asap.py,sha256=ljE56pEs4MXFmDjdeBWc-4OvLgy_R
87
87
  qiskit/transpiler/passes/scheduling/dynamical_decoupling.py,sha256=fFQ4mhTqK3qaQixUexUVQ8epQc4-7vmtBGx6zuILZws,13822
88
88
  qiskit/transpiler/passes/scheduling/__init__.py,sha256=4kG8za8xe2nxhkRTH2unz5_lyyjXq_dvWCYWtKlytfc,1112
89
89
  qiskit/transpiler/passes/scheduling/time_unit_conversion.py,sha256=EAlJq_Ye1E-VA0SQ-QZCMcK5aKLOKq6_waU9bUipWFQ,6456
90
- qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=cXXI25bCgxcRZv0pua7qEM_nkg0of9BAu5ybBLNJP54,5658
90
+ qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=RZT5l24mesdhXsFtVHwF9aqxC9NOnqgi1wKvsuHtoyw,5675
91
91
  qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py,sha256=f44vQ-g9KtZCuN7KUoLU1eKvE2PKxE9vdg5xGDk8zOg,3728
92
- qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=1uNc_81sImG35P0_VJ-IoP2sqL4ouqc2yxWaz8cLfro,5765
92
+ qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=W2QQHfL271vNvd-m7cDFD5ujtA80_8FC9BEMlZHkzjM,5782
93
93
  qiskit/transpiler/passes/scheduling/scheduling/__init__.py,sha256=nuRmai-BprATkKLqoHzH-2vLu-E7VRPS9hbhTY8xiDo,654
94
94
  qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py,sha256=NzdU1K_aBt5yQCIuUHUSjkwZhdVtk6SG3uOMT5bZVsU,2854
95
95
  qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py,sha256=sj-v77drDNbCbDJioPmO1EC-e9Mk0j95aWYH1rlMnvw,21498
@@ -109,7 +109,7 @@ qiskit/transpiler/passes/calibration/exceptions.py,sha256=HDBOCj1WqLo8nFt6hDKg7E
109
109
  qiskit/transpiler/passes/calibration/rx_builder.py,sha256=FWhH-t5Qr5OtX6FMFbTW0f_7hKzRwKAz1krzyMb78AI,6193
110
110
  qiskit/transpiler/passes/calibration/pulse_gate.py,sha256=I3MpueLKWH_KeZQtToZ0NguwbM2bhfC-tUfcDpemwLY,3823
111
111
  qiskit/transpiler/passes/calibration/rzx_builder.py,sha256=lF4G5kPdLUqCce2JkfFs_LxOSvPNwHpQBPZVhnGE8WE,17619
112
- qiskit/transpiler/passes/layout/sabre_layout.py,sha256=Scf_SwBHKfkCeR7VxV2qKSoIOjQlETuEwFfsJOpE4ZE,22883
112
+ qiskit/transpiler/passes/layout/sabre_layout.py,sha256=xtJdFtDVGKYfo5hTDepfVoT_VQ3ztm8iKSr8weBzNJU,23545
113
113
  qiskit/transpiler/passes/layout/enlarge_with_ancilla.py,sha256=1sEO0IHeuQuZWkzGE-CQaB7oPs6Y1g-kO1_Vuor_Dyk,1724
114
114
  qiskit/transpiler/passes/layout/full_ancilla_allocation.py,sha256=MOvTh_axWmUf8ibxpnO6JODQG1zetE7d80h6SHMTByE,4664
115
115
  qiskit/transpiler/passes/layout/vf2_layout.py,sha256=hVV8XZgFsaYKdlqKg-CQE8fQwJVOoRZXR99GtUBgqmA,11968
@@ -136,7 +136,7 @@ qiskit/transpiler/passes/optimization/collect_1q_runs.py,sha256=eE_pZv98vIMUMYIR
136
136
  qiskit/transpiler/passes/optimization/elide_permutations.py,sha256=45XsgBwEMbYzkYcM4u4c1q2bsxt8xlNckGOdbRthRrI,4055
137
137
  qiskit/transpiler/passes/optimization/hoare_opt.py,sha256=A5DIB7lrIpmRB6kDVluKajsQUEFRwo0QDNYnwUzC-Gg,16291
138
138
  qiskit/transpiler/passes/optimization/remove_diagonal_gates_before_measure.py,sha256=liy5ZuFNO8PgmX4dZyRsXGOKxVJ6g24PnQP1h2Jr2Ws,1407
139
- qiskit/transpiler/passes/optimization/remove_identity_equiv.py,sha256=PbTILgX1zOR6D3WDRgyPDdABTaZIbQzDHZrH-cR0zb0,3072
139
+ qiskit/transpiler/passes/optimization/remove_identity_equiv.py,sha256=wjsA3OBo_ddoLYFsoWwvxpJ-LOLse89QxD_Wg6WQDUg,3061
140
140
  qiskit/transpiler/passes/optimization/commutation_analysis.py,sha256=OeCz7GO0aJCXc5DVR6sGg70BZxXkkSYWcx5jRApmqRQ,1793
141
141
  qiskit/transpiler/passes/optimization/collect_2q_blocks.py,sha256=IVQDvs70ZPzlX5VVCwNFGTuivTDk0atcNCzD5wXvtEk,1224
142
142
  qiskit/transpiler/passes/optimization/commutative_inverse_cancellation.py,sha256=JSo2J9PIXKmr44_zQ5_z3q8N3zsytUq-_0TLDk2jvmc,5553
@@ -213,13 +213,13 @@ qiskit/transpiler/passes/basis/basis_translator.py,sha256=t0kULfPZSrXDojKkvCZbCu
213
213
  qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=X5YkxVycMGDbzgb58soSVjuNY3yoiZrC9rcEC1G6VkI,4449
214
214
  qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=XjUGlt60IGQFuvhHlCQ9w5rKmL8jCa9fLOetT0RUE9U,43476
215
215
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=emrcxdh3Rnv5pyAo5WuMJlY3tfz6WnkKJlGao7vSYAI,4277
216
- qiskit/transpiler/preset_passmanagers/__init__.py,sha256=9O7_2FNBgVIEUkxPm9clqs6CLbqrh5SBTNNtfNeYYXo,2754
216
+ qiskit/transpiler/preset_passmanagers/__init__.py,sha256=vMORfd0SYw2sbKqThg9nbB8K1pkUgfQ4dBGBgnhlUZA,3305
217
217
  qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=oxkjpVKJ0Dup3eKhn4LRXCFGlqnmoERc28C_pC2xKDE,30890
218
218
  qiskit/transpiler/preset_passmanagers/level1.py,sha256=15OG8az6JecM-3CjyFNgIrTL8HW_2hiFRmoZvpu8c_k,4806
219
219
  qiskit/transpiler/preset_passmanagers/common.py,sha256=_y0ABya647oTEbl8s8EcnXr8bInYVztN7BCnB5iFjRk,26522
220
220
  qiskit/transpiler/preset_passmanagers/level2.py,sha256=Bt0EAyreXQb5cxAR6JF_4XoieaJVwi2qO5UyxYSHZiY,4731
221
221
  qiskit/transpiler/preset_passmanagers/level3.py,sha256=t6WoVq84nfZo3SHSqbkEfXkw91akYevsVivh-r25r8I,4919
222
- qiskit/transpiler/preset_passmanagers/plugin.py,sha256=sxSLs-dwSfPgILjvtRTb4NHqzg_7AQKuRtAMDw4Sd08,14919
222
+ qiskit/transpiler/preset_passmanagers/plugin.py,sha256=vve6EdDo6eynWzu4gNviGu3OykU4c88ICF98TYkybyA,13906
223
223
  qiskit/qasm3/experimental.py,sha256=w_0rdAuf6pzOztLYgvh9mxPS3DWZ_aJe2BHmp-l021Y,1992
224
224
  qiskit/qasm3/exporter.py,sha256=_Ianp1hPO3wARgVbXTTVQ_uL9jChR9_TEt4Q9kkt5q0,62135
225
225
  qiskit/qasm3/__init__.py,sha256=RNob4xni5p_-wy1pLQtY9n4q6POcG-eKZ2haj1rICSw,13306
@@ -257,18 +257,18 @@ qiskit/circuit/parametertable.py,sha256=6sT2UO-U4MoHoz-w6UabDgdAZtpqdVfmJ-gb1uyV
257
257
  qiskit/circuit/commutation_checker.py,sha256=7LjLY8bngEOmDX6l3VOR_aujfMC9eRqdJp-Tfq3OxvY,3790
258
258
  qiskit/circuit/_classical_resource_map.py,sha256=vgnkvPsdKn5czlLM3CfMn02HY8J7m1djoBr0I_sxQYk,6982
259
259
  qiskit/circuit/register.py,sha256=IR3jJ9gCCkD6rlWbmx090pppiaQlEtscbteEpuRP66g,8419
260
- qiskit/circuit/parametervector.py,sha256=4J46mODAxXEu4Ve8yRdar1L8ZVkkeN8fRQE3UjU4XeY,3841
260
+ qiskit/circuit/parametervector.py,sha256=2YfNejcpqiKPHFOVQP7MME3jqSRrjpXcBBQ7HCuqumA,4767
261
261
  qiskit/circuit/annotated_operation.py,sha256=9TPDzb_iFHjz1Qb-zekywdwD2FIe1J2kZM1yZxc7xR0,10487
262
262
  qiskit/circuit/barrier.py,sha256=cag3kUtDI2jwG2r3sCg0QqdUn5V0MoKD2Kr2y-0aoHo,1716
263
263
  qiskit/circuit/reset.py,sha256=gaUpq_mgDh6eYN6N90cXGG1zuq6Yck06Rgh2wCEp7a8,1128
264
264
  qiskit/circuit/duration.py,sha256=JtMbAdMGIPXg2xSf2LJXcmtyVUwdMQ95SScYC5XRUdA,2952
265
- qiskit/circuit/__init__.py,sha256=O4aOqh349BrckqDCk0Pu0pPJ8D2oBctTu3otiVh50Zs,61449
265
+ qiskit/circuit/__init__.py,sha256=bcP6Z4PDC9Mz_pGTJam-fuTmieP6wCaZuDB_wJn4HUc,61656
266
266
  qiskit/circuit/classicalregister.py,sha256=oLKotR8jFREs6i2M1K7Jrvm5rrfG7TzLgaB0-PGa040,1691
267
267
  qiskit/circuit/operation.py,sha256=5SrIb_ap6EVKRHMNud5t-Iu7RU3Hz_KFSFjUUfHuf9w,2077
268
268
  qiskit/circuit/quantumregister.py,sha256=S_4lTalKmDI0LiVq3WJUyqDQwrx7-7mVDOMO-YIs4qI,2032
269
269
  qiskit/circuit/parameterexpression.py,sha256=eFncszde72J3K0fMdZJcRIb0GDQtYcebEFj7JBI2rzA,27051
270
270
  qiskit/circuit/add_control.py,sha256=jT_PaSowKSFa3g_upN0PP0qCLIKsFpkP4h11H-T55js,10308
271
- qiskit/circuit/delay.py,sha256=4tWlJU86nifIvZfb0q5m6F25Ckf9kRQPIBxh6IYm1hc,4926
271
+ qiskit/circuit/delay.py,sha256=0wtqBTHdY_AKJ2B3BZGYpWvHZq2pBOuFMh_SZWSzIcg,5084
272
272
  qiskit/circuit/twirling.py,sha256=HmpR4EzfKEkI5hW50gstzg2S6f464jF6MbtGquyGbG8,6213
273
273
  qiskit/circuit/gate.py,sha256=62_KeRCnxEk1m7WffSWSmEaONuNTkiNi5pB7uISLPYU,10242
274
274
  qiskit/circuit/quantumcircuitdata.py,sha256=Wc2il1uEGf4UY7gcSs6UoaOlQvYZzD60ZARmkzuegQE,4878
@@ -277,7 +277,7 @@ qiskit/circuit/controlledgate.py,sha256=n09UsVpdEGSbQ6aCGbBILyMrTrIIav2SalZjlA20
277
277
  qiskit/circuit/bit.py,sha256=CRVp2JMA65QjktYSH3JzF6zmGqefOc1-ksGjswgmORc,3124
278
278
  qiskit/circuit/exceptions.py,sha256=QoT6kFuoVLe6lWUlTKkSMWufVtyfDCgaUe1kyv79WAY,691
279
279
  qiskit/circuit/equivalence_library.py,sha256=7f2T6c7sbDWaVQNVALNJL0olLVFZmHgA9xzcy7_FdDQ,708
280
- qiskit/circuit/quantumcircuit.py,sha256=AnSkIDIvfwIzu2XgrKh3_9CHygdMcERAwEXhfYwWpSc,293852
280
+ qiskit/circuit/quantumcircuit.py,sha256=_U-oRcJsxC-s7F9Bw_LOUajvPI9bGcbB0K_3IAK8EBY,293980
281
281
  qiskit/circuit/_standard_gates_commutations.py,sha256=1E6i6Atz3PkHGpguFFfTOcD9ffXCncCE1Jx6AlafMww,99006
282
282
  qiskit/circuit/instruction.py,sha256=xWBg7AIm6tI7E41dUUTHbqRpSeyPYUNC0nmfUJoh4l8,26610
283
283
  qiskit/circuit/equivalence.py,sha256=8KmspRNLHbMx3OYG76ESA5_nXZJRDfvoDb3mhy7eV4A,3436
@@ -360,7 +360,7 @@ qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=vRtcHF2PRcyK_lf
360
360
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=oJIWVc2wFLz-GbU06jurKU3xcyxWdd7AbsH7SVMu0-c,6850
361
361
  qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=fhFUM0wTyK8X8CLDQEKs05Ezzos5uS_kybCoj9zSeuw,6215
362
362
  qiskit/circuit/library/standard_gates/s.py,sha256=eiGuG8LxUpGaphRwweW7WE68eVGsi5Jm-hG48WRL6_c,12822
363
- qiskit/circuit/library/standard_gates/rz.py,sha256=LuFq3qwdw8kjiw2RGRP1jbpfg1ziw8nY64imuDuMSLY,11108
363
+ qiskit/circuit/library/standard_gates/rz.py,sha256=iSjn0hK4pTbyHbqRqMk28A7JIvd_4BsEilCUSTi2f_o,11098
364
364
  qiskit/circuit/library/standard_gates/u1.py,sha256=61IxPYB-dZywhoQa_aNWs7Wm32a-XfhRIihV4X4BduY,16018
365
365
  qiskit/circuit/library/standard_gates/r.py,sha256=0oRui_6pwk5cTF_ZWVDO7uRnQD_W4xm6ri_ioToEmZ8,4003
366
366
  qiskit/circuit/library/standard_gates/swap.py,sha256=KGve1kKTQ7mo2Qld7_XUw9-ZWzIWIDehHlEBdC3sGwM,8991
@@ -369,7 +369,7 @@ qiskit/circuit/library/standard_gates/__init__.py,sha256=i_BgTcwVZn542eBjsKkr6GB
369
369
  qiskit/circuit/library/standard_gates/x.py,sha256=CQV6rABiguloIqvGl0pLYP8fdIJ69Y_d9_saOmhz3ZI,51710
370
370
  qiskit/circuit/library/standard_gates/global_phase.py,sha256=eXHt_02D8-MbEiCFTybG2d2Z8OdQnazYm-W4Weyjl0E,2913
371
371
  qiskit/circuit/library/standard_gates/rzz.py,sha256=5s0xe9I952oji3J-ZJB7OmJ1GWcf7_hurnCGj22_4QE,6519
372
- qiskit/circuit/library/standard_gates/xx_minus_yy.py,sha256=WoPbTBtWuEAS2gJxPH3Yc-u6GL7T5JufvEqtjqGEDoM,8133
372
+ qiskit/circuit/library/standard_gates/xx_minus_yy.py,sha256=RNbZsrRCaTDtpfvDGxT8Ghyf7kEh03-GlYWTZVL_ti8,6823
373
373
  qiskit/circuit/library/standard_gates/ryy.py,sha256=uxk48s5z8pRfCi1257IWd0T09-mK5vBtvZi3SBXiXN4,6866
374
374
  qiskit/circuit/library/standard_gates/z.py,sha256=e2iPVA9TUK0qlS1KuuTlhIU8lw8t4Zw3wRF3ALuf6rk,10347
375
375
  qiskit/circuit/library/standard_gates/rzx.py,sha256=Q_P-d5B0jBwAceWOItK-3mlI868kMEihr_Pd15sDkys,8343
@@ -807,7 +807,7 @@ qiskit/quantum_info/operators/utils/__init__.py,sha256=E-Z7NJUaWRxqJN1lcYdDqSupL
807
807
  qiskit/quantum_info/operators/utils/double_commutator.py,sha256=fXW2YPgzPyzHOSbPW0HQZ6WYzjHHD1zd0sJunMzpvOc,1978
808
808
  qiskit/quantum_info/operators/utils/commutator.py,sha256=BR7lgW4tD6SZKxiQIQE7CQSCYGKRaqPFzWaO03QLuY8,957
809
809
  qiskit/quantum_info/operators/channel/ptm.py,sha256=23HzPAj5ondGqxSnunQJaSbL1ogtVJjWef1-oHIVQcc,7790
810
- qiskit/quantum_info/operators/channel/transformations.py,sha256=vtNroGYrTtABB1ERI8dNjSBwM3FzaI-nLNSwyoVXGGA,17624
810
+ qiskit/quantum_info/operators/channel/transformations.py,sha256=vDgYSWCkwBSaQCPYgXibmMujLTK4sQ3zgwebeRlhyhs,18243
811
811
  qiskit/quantum_info/operators/channel/choi.py,sha256=O_8a2M2zL8z_mxcq0LChINwrl2XzGMHsM5D8vmU681Q,8461
812
812
  qiskit/quantum_info/operators/channel/stinespring.py,sha256=QgSMgc6ZFs_dUu3rFgTS43G468SU4arLZKxErQEkUvk,11439
813
813
  qiskit/quantum_info/operators/channel/__init__.py,sha256=CeahSP9rvIa-dgQNQkTqI7MTRMLebR19jmLhOEhr5Ps,940
@@ -826,11 +826,11 @@ qiskit/quantum_info/states/quantum_state.py,sha256=v__EAFkAu2aJwafAfaVDce5_525fT
826
826
  qiskit/compiler/sequencer.py,sha256=uvwF1e3R8gLpf91zD3Fr7UzgfQw9mcv_orHsYVhSOz0,3210
827
827
  qiskit/compiler/__init__.py,sha256=Far4-zXOyDGCqdNmFP4Q8zV47meApMw6sbIdd1t_wM4,989
828
828
  qiskit/compiler/assembler.py,sha256=nsF7XRgHJVgBrJ5BIj44YsGpNsN5OpqvTYCrGVl9IlY,27813
829
- qiskit/compiler/transpiler.py,sha256=dJ_MpUw1COntDag6pefwoVB09zk4sg-5taNEaKiQzO8,26504
829
+ qiskit/compiler/transpiler.py,sha256=BbH26PV2GorZOuWVcVxuTeiEQpJterLnUBR_g8QghJ8,26502
830
830
  qiskit/compiler/scheduler.py,sha256=RYwAaSym3Y4GwRhbx356FtsvF_JN_rhOLwKP84nUp9E,4532
831
- qiskit-1.3.2.dist-info/RECORD,,
832
- qiskit-1.3.2.dist-info/WHEEL,sha256=JTqBzyeSM_i0kP10UJ3-_pCbOcDzC24H4UMz45WGf-4,107
833
- qiskit-1.3.2.dist-info/entry_points.txt,sha256=8f4O6ZbFAIr5AzsP3wWosbp6n4_WI-sYGkgID9Y9JSE,5673
834
- qiskit-1.3.2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
835
- qiskit-1.3.2.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
836
- qiskit-1.3.2.dist-info/METADATA,sha256=TvivllcwI9sYyF7J7WY3RVcfT2x3QqlBqwHndLhf9P8,12903
831
+ qiskit-1.3.3.dist-info/RECORD,,
832
+ qiskit-1.3.3.dist-info/WHEEL,sha256=JTqBzyeSM_i0kP10UJ3-_pCbOcDzC24H4UMz45WGf-4,107
833
+ qiskit-1.3.3.dist-info/entry_points.txt,sha256=8f4O6ZbFAIr5AzsP3wWosbp6n4_WI-sYGkgID9Y9JSE,5673
834
+ qiskit-1.3.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
835
+ qiskit-1.3.3.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
836
+ qiskit-1.3.3.dist-info/METADATA,sha256=k5yzv6M-vmt_rldCMwB1mSqAFLW2lY7FZJaRdH9VHnM,12729
File without changes