qiskit 2.0.2__cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl → 2.0.3__cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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 CHANGED
@@ -1 +1 @@
1
- 2.0.2
1
+ 2.0.3
Binary file
@@ -48,7 +48,7 @@ class Adder(QuantumCircuit):
48
48
  "Use the adder gates provided in qiskit.circuit.library.arithmetic instead. "
49
49
  "The gate type depends on the adder kind: fixed, half, full are represented by "
50
50
  "ModularAdderGate, HalfAdderGate, FullAdderGate, respectively. For different adder "
51
- "implementations, see https://docs.quantum.ibm.com/api/qiskit/synthesis.",
51
+ "implementations, see https://quantum.cloud.ibm.com/docs/api/qiskit/synthesis.",
52
52
  ),
53
53
  pending=True,
54
54
  )
@@ -51,7 +51,7 @@ class Multiplier(QuantumCircuit):
51
51
  additional_msg=(
52
52
  "Use the MultiplierGate provided in qiskit.circuit.library.arithmetic instead. "
53
53
  "For different multiplier implementations, see "
54
- "https://docs.quantum.ibm.com/api/qiskit/synthesis.",
54
+ "https://quantum.cloud.ibm.com/docs/api/qiskit/synthesis.",
55
55
  ),
56
56
  pending=True,
57
57
  )
@@ -174,6 +174,7 @@ def quantum_volume(
174
174
  `arXiv:1811.12926 <https://arxiv.org/abs/1811.12926>`__
175
175
  """
176
176
  if isinstance(seed, np.random.Generator):
177
- seed = seed.integers(0, dtype=np.uint64)
177
+ max_value = np.iinfo(np.int64).max
178
+ seed = seed.integers(max_value, dtype=np.int64)
178
179
  depth = depth or num_qubits
179
180
  return QuantumCircuit._from_circuit_data(qv_rs(num_qubits, depth, seed))
@@ -2248,7 +2248,7 @@ class QuantumCircuit:
2248
2248
 
2249
2249
  Remember that in the little-endian convention the leftmost operation will be at the bottom
2250
2250
  of the circuit. See also
2251
- `the docs <https://docs.quantum.ibm.com/guides/construct-circuits>`__
2251
+ `the docs <https://quantum.cloud.ibm.com/docs/guides/construct-circuits>`__
2252
2252
  for more information.
2253
2253
 
2254
2254
  .. code-block:: text
@@ -3591,7 +3591,7 @@ class QuantumCircuit:
3591
3591
  parameter_map: dict[Parameter, ParameterValueType] | None = None,
3592
3592
  label: str | None = None,
3593
3593
  ) -> Gate:
3594
- """Create a :class:`.Gate` out of this circuit. The circuit must act only qubits and
3594
+ """Create a :class:`.Gate` out of this circuit. The circuit must act only on qubits and
3595
3595
  contain only unitary operations.
3596
3596
 
3597
3597
  .. seealso::
@@ -36,7 +36,18 @@ Exceptions
36
36
 
37
37
  .. autoexception:: DAGCircuitError
38
38
  .. autoexception:: DAGDependencyError
39
+
40
+ Utilities
41
+ =========
42
+
43
+ .. autosummary::
44
+ :toctree: ../stubs/
45
+
46
+ BlockCollapser
47
+ BlockCollector
48
+ BlockSplitter
39
49
  """
50
+ from .collect_blocks import BlockCollapser, BlockCollector, BlockSplitter
40
51
  from .dagcircuit import DAGCircuit
41
52
  from .dagnode import DAGNode, DAGOpNode, DAGInNode, DAGOutNode
42
53
  from .dagdepnode import DAGDepNode
@@ -17,11 +17,12 @@ from __future__ import annotations
17
17
 
18
18
  from collections.abc import Iterable, Callable
19
19
 
20
- from qiskit.dagcircuit import DAGDepNode
21
-
22
20
  from qiskit.circuit import QuantumCircuit, CircuitInstruction, ClassicalRegister, Bit
23
21
  from qiskit.circuit.controlflow import condition_resources
24
- from . import DAGOpNode, DAGCircuit, DAGDependency
22
+ from qiskit.dagcircuit.dagcircuit import DAGCircuit
23
+ from qiskit.dagcircuit.dagdependency import DAGDependency
24
+ from qiskit.dagcircuit.dagnode import DAGOpNode
25
+ from qiskit.dagcircuit.dagdepnode import DAGDepNode
25
26
  from .exceptions import DAGCircuitError
26
27
 
27
28
 
@@ -338,15 +339,18 @@ def split_block_into_layers(block: list[DAGOpNode | DAGDepNode]):
338
339
 
339
340
  class BlockCollapser:
340
341
  """This class implements various strategies of consolidating blocks of nodes
341
- in a DAG (direct acyclic graph). It works both with the
342
- :class:`~qiskit.dagcircuit.DAGCircuit` and
343
- :class:`~qiskit.dagcircuit.DAGDependency` DAG representations.
342
+ in a DAG (direct acyclic graph). It works both with
343
+ the :class:`~qiskit.dagcircuit.DAGCircuit`
344
+ and :class:`~qiskit.dagcircuit.DAGDependency` DAG representations.
344
345
  """
345
346
 
346
347
  def __init__(self, dag):
347
348
  """
348
349
  Args:
349
350
  dag (Union[DAGCircuit, DAGDependency]): The input DAG.
351
+
352
+ Raises:
353
+ DAGCircuitError: the input object is not a DAG.
350
354
  """
351
355
 
352
356
  self.dag = dag
qiskit/qpy/__init__.py CHANGED
@@ -1096,7 +1096,7 @@ In addition, new payload MAP_ITEM is defined to implement the :ref:`qpy_mapping`
1096
1096
 
1097
1097
  With the support of ``ScheduleBlock``, now :class:`~.QuantumCircuit` can be
1098
1098
  serialized together with :attr:`~.QuantumCircuit.calibrations`, or
1099
- `Pulse Gates <https://docs.quantum.ibm.com/guides/pulse>`_.
1099
+ `Pulse Gates <https://quantum.cloud.ibm.com/docs/guides/pulse>`_.
1100
1100
  In QPY version 5 and above, :ref:`qpy_circuit_calibrations` payload is
1101
1101
  packed after the :ref:`qpy_instructions` block.
1102
1102
 
@@ -992,7 +992,7 @@ class SparsePauliOp(LinearOp):
992
992
  array (the default).
993
993
  force_serial: if ``True``, use an unthreaded implementation, regardless of the state of
994
994
  the `Qiskit threading-control environment variables
995
- <https://docs.quantum.ibm.com/guides/configure-qiskit-local#environment-variables>`__.
995
+ <https://quantum.cloud.ibm.com/docs/guides/configure-qiskit-local#environment-variables>`__.
996
996
  By default, this will use threaded parallelism over the available CPUs.
997
997
 
998
998
  Returns:
@@ -237,7 +237,7 @@ Initialization stage
237
237
  --------------------
238
238
 
239
239
  .. seealso::
240
- `Init stage explanation <https://docs.quantum.ibm.com/guides/transpiler-stages#init-stage>`__
240
+ `Init stage explanation <https://quantum.cloud.ibm.com/docs/guides/transpiler-stages#init-stage>`__
241
241
  Higher-level user-facing explanation of the init stage in the IBM Quantum guide.
242
242
 
243
243
  The ``init`` stage is responsible for high-level, logical optimizations on abstract circuits, and
@@ -291,9 +291,11 @@ Layout stage
291
291
  ------------
292
292
 
293
293
  .. seealso::
294
- `Layout stage explanation <https://docs.quantum.ibm.com/guides/transpiler-stages#layout-stage>`__
294
+ `Layout stage explanation`__
295
295
  Higher-level user-facing explanation of the layout stage in the IBM Quantum guide.
296
296
 
297
+ __ https://quantum.cloud.ibm.com/docs/guides/transpiler-stages#layout-stage
298
+
297
299
  The layout stage is responsible for making an initial mapping between the virtual qubits of the
298
300
  input circuit, and the hardware qubits of the target. This includes expanding the input circuit
299
301
  with explicit ancillas so it has as many qubits as the target has, and rewriting all operations in
@@ -452,9 +454,11 @@ Routing stage
452
454
  -------------
453
455
 
454
456
  .. seealso::
455
- `Routing stage explanation <https://docs.quantum.ibm.com/guides/transpiler-stages#routing-stage>`__
457
+ `Routing stage explanation`__
456
458
  Higher-level user-facing explanation of the routing stage in the IBM Quantum guide.
457
459
 
460
+ __ https://quantum.cloud.ibm.com/docs/guides/transpiler-stages#routing-stage
461
+
458
462
  The routing stage ensures that the virtual connectivity graph of the circuit is compatible with the
459
463
  hardware connectivity graph of the target. In simpler terms, the routing stage makes sure that all
460
464
  two-qubit gates in the circuit are mapped to hardware qubits that have a defined two-qubit operation
@@ -598,7 +602,7 @@ Translation stage
598
602
  `Translation stage explanation`__
599
603
  Higher-level user-facing explanation of the translation stage in the IBM Quantum guide.
600
604
 
601
- .. __: https://docs.quantum.ibm.com/guides/transpiler-stages#translation-stage
605
+ .. __: https://quantum.cloud.ibm.com/docs/guides/transpiler-stages#translation-stage
602
606
 
603
607
  The translation stage is responsible for rewriting all gates in the circuit into ones that are
604
608
  supported by the target ISA. For example, if a ``cx`` is requested on hardware qubits 0 and 1, but
@@ -687,7 +691,7 @@ Optimization stage
687
691
  `Optimization stage explanation`__
688
692
  Higher-level user-facing explanation of the optimization stage in the IBM Quantum guide.
689
693
 
690
- .. __: https://docs.quantum.ibm.com/guides/transpiler-stages#optimization-stage
694
+ .. __: https://quantum.cloud.ibm.com/docs/guides/transpiler-stages#optimization-stage
691
695
 
692
696
  The optimization stage is for low-level hardware-aware optimizations. Unlike :ref:`the init stage
693
697
  <transpiler-preset-stage-init>`, the input to this stage is a circuit that is already
@@ -48,11 +48,11 @@ class ApplyLayout(TransformationPass):
48
48
  TranspilerError: if no layout is found in ``property_set`` or no full physical qubits.
49
49
  """
50
50
  layout = self.property_set["layout"]
51
- if not layout:
51
+ if layout is None:
52
52
  raise TranspilerError(
53
53
  "No 'layout' is found in property_set. Please run a Layout pass in advance."
54
54
  )
55
- if len(layout) != (1 + max(layout.get_physical_bits())):
55
+ if len(layout) != (1 + max(layout.get_physical_bits(), default=-1)):
56
56
  raise TranspilerError("The 'layout' must be full (with ancilla).")
57
57
 
58
58
  post_layout = self.property_set["post_layout"]
@@ -179,7 +179,9 @@ def build_average_error_map(target, coupling_map):
179
179
  coupling_map = target.build_coupling_map()
180
180
  if not built and coupling_map is not None and num_qubits is not None:
181
181
  for qubit in range(num_qubits):
182
- degree = len(set(coupling_map.graph.neighbors_undirected(qubit)))
182
+ neighbor_set = set(coupling_map.graph.successor_indices(qubit))
183
+ neighbor_set.update(coupling_map.graph.predecessor_indices(qubit))
184
+ degree = len(neighbor_set)
183
185
  avg_map.add_error((qubit, qubit), degree / num_qubits)
184
186
  for edge in coupling_map.graph.edge_list():
185
187
  avg_map.add_error(edge, (avg_map[edge[0], edge[0]] + avg_map[edge[1], edge[1]]) / 2)
@@ -374,6 +374,14 @@ def _apply_sabre_result(
374
374
  empty.add_clbits(block.clbits)
375
375
  for creg in block.cregs:
376
376
  empty.add_creg(creg)
377
+ for var_ in block.iter_declared_vars():
378
+ empty.add_declared_var(var_)
379
+ for var_ in block.iter_captured_vars():
380
+ empty.add_captured_var(var_)
381
+ for stretch in block.iter_declared_stretches():
382
+ empty.add_declared_stretch(stretch)
383
+ for stretch in block.iter_captured_stretches():
384
+ empty.add_captured_stretch(stretch)
377
385
  empty.global_phase = block.global_phase
378
386
  return empty
379
387
 
@@ -1696,13 +1696,15 @@ class PauliEvolutionSynthesisDefault(HighLevelSynthesisPlugin):
1696
1696
  # Don't do anything if a gate is called "evolution" but is not an
1697
1697
  # actual PauliEvolutionGate
1698
1698
  return None
1699
-
1700
1699
  algo = high_level_object.synthesis
1701
1700
 
1701
+ original_preserve_order = algo.preserve_order
1702
1702
  if "preserve_order" in options and isinstance(algo, ProductFormula):
1703
1703
  algo.preserve_order = options["preserve_order"]
1704
1704
 
1705
- return algo.synthesize(high_level_object)
1705
+ synth_object = algo.synthesize(high_level_object)
1706
+ algo.preserve_order = original_preserve_order
1707
+ return synth_object
1706
1708
 
1707
1709
 
1708
1710
  class PauliEvolutionSynthesisRustiq(HighLevelSynthesisPlugin):
@@ -1753,6 +1755,7 @@ class PauliEvolutionSynthesisRustiq(HighLevelSynthesisPlugin):
1753
1755
  )
1754
1756
  return None
1755
1757
 
1758
+ original_preserve_order = algo.preserve_order
1756
1759
  if "preserve_order" in options:
1757
1760
  algo.preserve_order = options["preserve_order"]
1758
1761
 
@@ -1765,7 +1768,7 @@ class PauliEvolutionSynthesisRustiq(HighLevelSynthesisPlugin):
1765
1768
  upto_phase = options.get("upto_phase", False)
1766
1769
  resynth_clifford_method = options.get("resynth_clifford_method", 1)
1767
1770
 
1768
- return synth_pauli_network_rustiq(
1771
+ synth_object = synth_pauli_network_rustiq(
1769
1772
  num_qubits=num_qubits,
1770
1773
  pauli_network=pauli_network,
1771
1774
  optimize_count=optimize_count,
@@ -1774,6 +1777,8 @@ class PauliEvolutionSynthesisRustiq(HighLevelSynthesisPlugin):
1774
1777
  upto_phase=upto_phase,
1775
1778
  resynth_clifford_method=resynth_clifford_method,
1776
1779
  )
1780
+ algo.preserve_order = original_preserve_order
1781
+ return synth_object
1777
1782
 
1778
1783
 
1779
1784
  class AnnotatedSynthesisDefault(HighLevelSynthesisPlugin):
@@ -1,15 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qiskit
3
- Version: 2.0.2
3
+ Version: 2.0.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
7
7
  Project-URL: Homepage, https://www.ibm.com/quantum/qiskit
8
- Project-URL: Documentation, https://docs.quantum.ibm.com
9
- Project-URL: API Reference, https://docs.quantum.ibm.com/api/qiskit
8
+ Project-URL: Documentation, https://quantum.cloud.ibm.com/docs
9
+ Project-URL: API Reference, https://quantum.cloud.ibm.com/docs/api/qiskit
10
10
  Project-URL: Repository, https://github.com/Qiskit/qiskit
11
11
  Project-URL: Issues, https://github.com/Qiskit/qiskit/issues
12
- Project-URL: Changelog, https://docs.quantum.ibm.com/api/qiskit/release-notes
12
+ Project-URL: Changelog, https://quantum.cloud.ibm.com/docs/api/qiskit/release-notes
13
13
  Keywords: qiskit,quantum circuit,quantum computing,quantum programming language,quantum,sdk
14
14
  Classifier: Environment :: Console
15
15
  Classifier: Intended Audience :: Developers
@@ -72,7 +72,7 @@ It also contains a transpiler that supports optimizing quantum circuits, and a q
72
72
 
73
73
  For more details on how to use Qiskit, refer to the documentation located here:
74
74
 
75
- <https://docs.quantum.ibm.com/>
75
+ <https://quantum.cloud.ibm.com/docs/>
76
76
 
77
77
 
78
78
  ## Installation
@@ -85,7 +85,7 @@ pip install qiskit
85
85
 
86
86
  Pip will handle all dependencies automatically and you will always install the latest (and well-tested) version.
87
87
 
88
- To install from source, follow the instructions in the [documentation](https://docs.quantum.ibm.com/guides/install-qiskit-source).
88
+ To install from source, follow the instructions in the [documentation](https://quantum.cloud.ibm.com/docs/guides/install-qiskit-source).
89
89
 
90
90
  ## Create your first quantum program in Qiskit
91
91
 
@@ -146,7 +146,7 @@ and see if you can achieve this outcome. (Spoiler alert: this is not possible!)
146
146
  Using the Qiskit-provided `qiskit.primitives.StatevectorSampler` and `qiskit.primitives.StatevectorEstimator` will not take you very far.
147
147
  The power of quantum computing cannot be simulated on classical computers and you need to use real quantum hardware to scale to larger quantum circuits.
148
148
  However, running a quantum circuit on hardware requires rewriting to the basis gates and connectivity of the quantum hardware.
149
- The tool that does this is the [transpiler](https://docs.quantum.ibm.com/api/qiskit/transpiler), and Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling.
149
+ The tool that does this is the [transpiler](https://quantum.cloud.ibm.com/docs/api/qiskit/transpiler), and Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling.
150
150
  However, it also includes a default compiler, which works very well in most examples.
151
151
  The following code will map the example circuit to the `basis_gates = ["cz", "sx", "rz"]` and a linear chain of qubits $0 \rightarrow 1 \rightarrow 2$ with the `coupling_map = [[0, 1], [1, 2]]`.
152
152
 
@@ -209,7 +209,7 @@ release.
209
209
 
210
210
  Additionally, as part of each release, detailed release notes are written to
211
211
  document in detail what has changed as part of a release. This includes any
212
- documentation on potential breaking changes on upgrade and new features. See [all release notes here](https://docs.quantum.ibm.com/api/qiskit/release-notes).
212
+ documentation on potential breaking changes on upgrade and new features. See [all release notes here](https://quantum.cloud.ibm.com/docs/api/qiskit/release-notes).
213
213
 
214
214
  ## Acknowledgements
215
215
 
@@ -1,6 +1,6 @@
1
- qiskit/VERSION.txt,sha256=tLFvrqUtwEzP4y97NCCUhVkj6_WZo8rBlARwotbXwmE,6
1
+ qiskit/VERSION.txt,sha256=vmlfyAkq03BtfX07UQTh6vj-aWZuWVjjdcmVKgb6lRQ,6
2
2
  qiskit/__init__.py,sha256=PkJcNRSj84w0sadJYoUVlJsFX4Kpl_ftp4Zwg2KZcxg,7182
3
- qiskit/_accelerate.abi3.so,sha256=DlZgR--WvwvXfTtxnVz296rbEy-vpVm-5RmDovTl9jM,12425800
3
+ qiskit/_accelerate.abi3.so,sha256=iLL89RGZl9-G6FqqG3I5xiCkAqQFoSXKfvLANSAvTws,12425800
4
4
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
5
5
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
6
6
  qiskit/user_config.py,sha256=3ez0XDwu0WKnjdHB-LNk4XRTQl9Eu-WgqkXOC771pTs,10325
@@ -29,7 +29,7 @@ qiskit/circuit/parameter.py,sha256=NqPG5MFEIbZU2jhWnOkTsQjlSnz79nI0qv85fwXp7dU,7
29
29
  qiskit/circuit/parameterexpression.py,sha256=qZlcvGdtN9qaeAOc-WHDQOGAsGzjO-6VeIjfFbARbOY,27542
30
30
  qiskit/circuit/parametertable.py,sha256=6sT2UO-U4MoHoz-w6UabDgdAZtpqdVfmJ-gb1uyVbqg,3269
31
31
  qiskit/circuit/parametervector.py,sha256=2YfNejcpqiKPHFOVQP7MME3jqSRrjpXcBBQ7HCuqumA,4767
32
- qiskit/circuit/quantumcircuit.py,sha256=Fwlflumt2DqnIEp8qqDXOydkjFud4HZh3UTZn71_rcs,320461
32
+ qiskit/circuit/quantumcircuit.py,sha256=HKo0EWBcSsKBYf-Pv3skejoriQ5p7TLMUoY2AK_LOnw,320470
33
33
  qiskit/circuit/quantumcircuitdata.py,sha256=Wc2il1uEGf4UY7gcSs6UoaOlQvYZzD60ZARmkzuegQE,4878
34
34
  qiskit/circuit/reset.py,sha256=ZN1fPET4Lqsw8N03kyp4JVdM6auxnsiS1Hy_u_JHn24,1196
35
35
  qiskit/circuit/singleton.py,sha256=NCs1BeOkFwThKU3GIyT3AwW8Z81aW_jCoRemYswii7Q,30307
@@ -67,7 +67,7 @@ qiskit/circuit/library/overlap.py,sha256=Q8u5SxQJ1M9V-ADfb3qzGFthES72AIP425CMFcZ
67
67
  qiskit/circuit/library/pauli_evolution.py,sha256=yv5H-xiUoOqeAvPUtFrSh-v10fqXHdK2eVKe9i0DN-c,6929
68
68
  qiskit/circuit/library/phase_estimation.py,sha256=ptXPL6sM9-1ArafyLGF-szwfrFG8fB2tDoZkrqNCEH0,6590
69
69
  qiskit/circuit/library/phase_oracle.py,sha256=j-mQcBJuWe-yWslVivfBcY-NgW3PDSU80GbB0eFQevo,10133
70
- qiskit/circuit/library/quantum_volume.py,sha256=dtd0B8Og7ds_OFF4QQ4VM8MlD0rixLSnTMTms8kPseE,7311
70
+ qiskit/circuit/library/quantum_volume.py,sha256=DWRWqNeiO0E_50XLFce1npeyntp1miE2o5HKxSnmyR4,7361
71
71
  qiskit/circuit/library/arithmetic/__init__.py,sha256=Bd8ngyVoYQTMfz3xe5vLlnOS9X8cz1XnNdWpQLHfEb0,1685
72
72
  qiskit/circuit/library/arithmetic/exact_reciprocal.py,sha256=XTfydNy0veTks3mRnbsq_7wtTYLRGOzBLsPxxvrOnAI,5317
73
73
  qiskit/circuit/library/arithmetic/functional_pauli_rotations.py,sha256=dM5UO0YraoIXYKXOnaGpH78JZUfeKYMxPdqKDVeP7cQ,3615
@@ -81,13 +81,13 @@ qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py,sha256=mss5pV_uo
81
81
  qiskit/circuit/library/arithmetic/quadratic_form.py,sha256=lIp5hHd1Xm6PJ7BVbHcsLq_vIEoi0o57W-8xXBW2MpE,14343
82
82
  qiskit/circuit/library/arithmetic/weighted_adder.py,sha256=tgaPcCU_1YOH7c_U6dt3fQv6kP-8X2bguBav2ogFZqI,15474
83
83
  qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=PRrSLxGAtAMm-9L6UIFnL3ta0NSYUIhEklpf_i9bE5s,743
84
- qiskit/circuit/library/arithmetic/adders/adder.py,sha256=DM0FmgeGK8S9cOmX_E_Nyk9Q1H_fnJ3vxUMvwp1Ar-E,7887
84
+ qiskit/circuit/library/arithmetic/adders/adder.py,sha256=zgMYr9R2IBzvONeTBXP_2SY7DYD8iyfq76MN0I-THcs,7893
85
85
  qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=MdHBDzhXIg5G0ePIFCVlBAAIr_inngSp4i2ElDukRvI,7456
86
86
  qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=2EUoSPfOCrpO_n0n-aIcma3nA4HsmLL3J_joxXHqg_M,6019
87
87
  qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=h0A_2Q8Ixw8QcxOYboVAhhd7XVqES0AoxU4Rlx6BWwA,4939
88
88
  qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=vRtcHF2PRcyK_lfBQFqsWlpeaGwkcK3PK1KeduHvfOE,672
89
89
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=oJIWVc2wFLz-GbU06jurKU3xcyxWdd7AbsH7SVMu0-c,6850
90
- qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=L487WCWB6YN9EAACm2Aih6e0GhuQaYk-mbA_ACWeP9Q,7409
90
+ qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=VLBj97iUURV_uUAoChhB0zyeZzikkX4VcWsk9EJ27eI,7415
91
91
  qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=fhFUM0wTyK8X8CLDQEKs05Ezzos5uS_kybCoj9zSeuw,6215
92
92
  qiskit/circuit/library/basis_change/__init__.py,sha256=JFOleW2bg9vOFdWs2RbrFDpUPx47DWmPP6pG1spSS7s,548
93
93
  qiskit/circuit/library/basis_change/qft.py,sha256=s0gyJxhFelIyAiqZHTvRdGBsJgGFMzoRMF1FHDHw4FQ,10833
@@ -250,8 +250,8 @@ qiskit/converters/dag_to_dagdependency.py,sha256=KUB5KtUs5n_hBy_FJXbPBISnWasLL8H
250
250
  qiskit/converters/dag_to_dagdependency_v2.py,sha256=6dUYmBovXxZt3Ka-O2jWRT5PAYw0KWsBan1OqD85-is,1441
251
251
  qiskit/converters/dagdependency_to_circuit.py,sha256=hBbcGS37UjgV3pCvKn20cPKJeVGEfkjps8LZ5hSxT50,1316
252
252
  qiskit/converters/dagdependency_to_dag.py,sha256=sOJmGs1SWPMNNgQp3rS2smPBRzhe6NQUBPGCsZawQow,1558
253
- qiskit/dagcircuit/__init__.py,sha256=_EqnZKmQ3CdSov9QQDTSYcV21NKMluxy-YKluO9llPE,1192
254
- qiskit/dagcircuit/collect_blocks.py,sha256=dmFr3sFIWTsqdC0I_rc2siNYD6dFCjCabT_3jRUv2jE,16964
253
+ qiskit/dagcircuit/__init__.py,sha256=2lsl-xcOwgV9FuDwHcgBPIMSwr4UfVslnTPCRRIW0S4,1382
254
+ qiskit/dagcircuit/collect_blocks.py,sha256=JUp0rWzLB9bi2tFKE4hOHepJRAEoMD1curnUpJXGvig,17157
255
255
  qiskit/dagcircuit/dagcircuit.py,sha256=5Q-E4j-SmDU3ysdW50Iw5Wdww94HaSW3JZ8ov1XslKo,1041
256
256
  qiskit/dagcircuit/dagdependency.py,sha256=12UExCdmyNPEHItjde9mHLveEcMBhZc5COvc6VAL7PQ,23083
257
257
  qiskit/dagcircuit/dagdependency_v2.py,sha256=idiwpCFwktngNjDgBNKUJzj_DYM2xenpRN0OH0ZA90o,22148
@@ -321,7 +321,7 @@ qiskit/qasm3/exceptions.py,sha256=jNfCnD7kXAGCF_DbtLPfyJCidThqf0Vdp2ORPDqvm2c,90
321
321
  qiskit/qasm3/experimental.py,sha256=w_0rdAuf6pzOztLYgvh9mxPS3DWZ_aJe2BHmp-l021Y,1992
322
322
  qiskit/qasm3/exporter.py,sha256=IswNKRAmSnxGP3aXNCB3oDbjc9kBzeesSR5UsnAV-6s,63996
323
323
  qiskit/qasm3/printer.py,sha256=9RrqV-6tNGnHvjmbuP0uHFZ4_8ELS030UbwUvRIgpIg,22466
324
- qiskit/qpy/__init__.py,sha256=S5pLDUvD_bJEycWw86BSnpQCO7k0Z-7yt7UixeQQCyc,68034
324
+ qiskit/qpy/__init__.py,sha256=rZzeiE7VP5-iz16QcHIJiwJdMUAHgUTney3VXxZy-14,68040
325
325
  qiskit/qpy/common.py,sha256=h1l3yPjwdUuc74pTRzjtOUJ5_SIdYuy_HQQq1Pj3sp4,12406
326
326
  qiskit/qpy/exceptions.py,sha256=YOwVSKR74VYOrXS5hBdln7EZ0ett0qsSQSALJDoJxwA,1847
327
327
  qiskit/qpy/formats.py,sha256=MaKel58rJ5bsk2AWZSr0DFmdU3I1M6jlk6tZOjPeqbw,12825
@@ -379,7 +379,7 @@ qiskit/quantum_info/operators/symplectic/pauli.py,sha256=hpWUNM6J40nAYmbspZKFR_9
379
379
  qiskit/quantum_info/operators/symplectic/pauli_list.py,sha256=60SFVlraxTHbcbCwd6yZIhM-2HAB_Jv6K_6e030nqBE,46454
380
380
  qiskit/quantum_info/operators/symplectic/pauli_utils.py,sha256=mSH5e9psusMKHPuUR_0FaF360MEzNzxj6OoXY2tR6LQ,1302
381
381
  qiskit/quantum_info/operators/symplectic/random.py,sha256=mwdIw29GGVmCooU8swKx_Cp5Hsp2p9DSG7H1Gu60hdg,3827
382
- qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=EW8vBmyptDXuuJ5fPZ3q7Y_plbHN8E6CSuvNuJBHMNQ,49238
382
+ qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=fpNLiHdsl31bccaqEQmi6Teday3kFpSJ-CTz2uYepYA,49244
383
383
  qiskit/quantum_info/operators/utils/__init__.py,sha256=E-Z7NJUaWRxqJN1lcYdDqSupLLKE1QUejl9ttQ8_04U,704
384
384
  qiskit/quantum_info/operators/utils/anti_commutator.py,sha256=mn8j5qsW4ZRED8OMcZX76-HCJoxOWPj_KsTwUUBe8_k,977
385
385
  qiskit/quantum_info/operators/utils/commutator.py,sha256=BR7lgW4tD6SZKxiQIQE7CQSCYGKRaqPFzWaO03QLuY8,957
@@ -494,7 +494,7 @@ qiskit/synthesis/unitary/aqc/fast_gradient/fast_grad_utils.py,sha256=eRz4Z1nbEuf
494
494
  qiskit/synthesis/unitary/aqc/fast_gradient/fast_gradient.py,sha256=qemfNdv3JQfMMhYglGg8Uw0NXWyihsBV1l4Gws3MeHI,9056
495
495
  qiskit/synthesis/unitary/aqc/fast_gradient/layer.py,sha256=HVbZi04j0cARx2nSIEU5GqvoUud_dtx_EwsvjAHCJOc,12899
496
496
  qiskit/synthesis/unitary/aqc/fast_gradient/pmatrix.py,sha256=bXsyzCcrcnFUBu-kS7ixE4ydlhe3yygfpvkHc8rOMXA,12333
497
- qiskit/transpiler/__init__.py,sha256=rRLcLBZn8PdiOH6nmoWc9gHG8ieGJGYkhWA_wgBrSCc,55349
497
+ qiskit/transpiler/__init__.py,sha256=IhE6Klk-L8JEdAdPmXlYxODwBkK-izf6x5ZAbEEF0CU,55383
498
498
  qiskit/transpiler/basepasses.py,sha256=ecLZAg1lCHb58EMufMTJsZTQBUFDL6AFufjcII2jVYM,7543
499
499
  qiskit/transpiler/coupling.py,sha256=Lrh6U3hFXqEPk-X0xHrLZzdB-SXkJEVkLlAVzwEmKrA,18603
500
500
  qiskit/transpiler/exceptions.py,sha256=ZxZk41x0T3pCcaEsDmpDg25SwIbCLQ6T1D-V54vwb1A,1710
@@ -523,7 +523,7 @@ qiskit/transpiler/passes/basis/unroll_3q_or_more.py,sha256=K33LIqI0HPUrY4qvf0nKG
523
523
  qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=x7Kxdaw8mBvMJsVSZVZC_w83zZsX0YhKf0fWvNdJ9-c,4409
524
524
  qiskit/transpiler/passes/layout/__init__.py,sha256=sS1jZFl4JORuzuU7uEjryZNhLbwqoo4dWAyfry4v-2Y,1042
525
525
  qiskit/transpiler/passes/layout/_csp_custom_solver.py,sha256=BnyCQim89cPPzdMczvTA9e0CZ_zxn6n6H72waJzu3Oc,2748
526
- qiskit/transpiler/passes/layout/apply_layout.py,sha256=lexxyqnZXK4w8lAWn2bfGO9qclpm0tiCKALZ8HDkF_g,5640
526
+ qiskit/transpiler/passes/layout/apply_layout.py,sha256=C0FHcngUS2Ep7IczqwV1B5CzfCdznBAxwiiHfcJE7Js,5656
527
527
  qiskit/transpiler/passes/layout/csp_layout.py,sha256=J_IHZIYsZkEw0M5WcP-Rub9o6McJbYKyhycaxsMgPU4,5421
528
528
  qiskit/transpiler/passes/layout/dense_layout.py,sha256=e73lXQT3FYfD6whFQeeK1tXFVTVsAEHqcZDvXORKpvo,6453
529
529
  qiskit/transpiler/passes/layout/disjoint_utils.py,sha256=rf48bvP5j2C2eZf_CFFIlXnYJZxnw7rX23hD-pocNFs,9409
@@ -536,7 +536,7 @@ qiskit/transpiler/passes/layout/set_layout.py,sha256=KJFDlhNsQUe58SWbJVhMlGHLQyN
536
536
  qiskit/transpiler/passes/layout/trivial_layout.py,sha256=vLtp3gr4-KRrEwtw2NEVrY5LKuFrMKOY0Cr7LhdoMBs,2379
537
537
  qiskit/transpiler/passes/layout/vf2_layout.py,sha256=-E9opzrr5wbjAstKUBORlUK62eMley8OXRtQ6mfxt1I,11611
538
538
  qiskit/transpiler/passes/layout/vf2_post_layout.py,sha256=p8qAG1KQ8fn0ruGpleBgnCnFtA0ae8h-AhyZ--TjUZI,17286
539
- qiskit/transpiler/passes/layout/vf2_utils.py,sha256=bf9ruwAGPit_fQegLypwBOgG5jncHWyMszGvIlc42Ag,9580
539
+ qiskit/transpiler/passes/layout/vf2_utils.py,sha256=OA5BDOHpi74MeWJJNsG4EFvu04BPY3L0VDNp1_5WBkY,9696
540
540
  qiskit/transpiler/passes/optimization/__init__.py,sha256=R7weGtxO9pi7DjEXhV5gJHhr07SJxGvgEHGlka2UiYY,2144
541
541
  qiskit/transpiler/passes/optimization/_gate_extension.py,sha256=_rOObudQUvzSnaa9wAYbdKX7ZVc-vpazKc4pSWhXICw,3306
542
542
  qiskit/transpiler/passes/optimization/collect_1q_runs.py,sha256=eE_pZv98vIMUMYIR6JDuG5Qv0p2t5ihyD-W1I4PYY58,1114
@@ -577,7 +577,7 @@ qiskit/transpiler/passes/routing/__init__.py,sha256=OL-E0K_-kEaYf_7Dxtlg6-7alBNn
577
577
  qiskit/transpiler/passes/routing/basic_swap.py,sha256=SreeyuuPeeciL_Zu43w7V83JaRnu2lNZU5uyJmQK3FQ,6730
578
578
  qiskit/transpiler/passes/routing/layout_transformation.py,sha256=4Hz0y11jfZcFJ0vfCiqtbdDcYNxxhhvf12eJW04SecA,4685
579
579
  qiskit/transpiler/passes/routing/lookahead_swap.py,sha256=o4Itq4BsYk6LeqPzCJgttk59CkrJvWnHY4kS5RoEmSY,15255
580
- qiskit/transpiler/passes/routing/sabre_swap.py,sha256=FdgvjuxqQIcfA3r-uoG-rdtpf-juVLkLge46335Y2EY,20056
580
+ qiskit/transpiler/passes/routing/sabre_swap.py,sha256=SCMoZ-8FLsGDCIpUc3hb-LUX8OH64SgvQJZyxG288ws,20442
581
581
  qiskit/transpiler/passes/routing/star_prerouting.py,sha256=eFGAFrerqAtLxCmImx2l2hJXXO2dhNAwZvnYmQ-d-v8,17378
582
582
  qiskit/transpiler/passes/routing/utils.py,sha256=e00RmZyS65EQKbUKd6jv_R8-7dE3vuDMENp5uP_Ao_I,1920
583
583
  qiskit/transpiler/passes/routing/algorithms/__init__.py,sha256=xqgItNZmE9Asul94FzsBbUdU2d6h7j9bOY5p7q0QKYc,1403
@@ -607,7 +607,7 @@ qiskit/transpiler/passes/synthesis/__init__.py,sha256=VYO9Sl_SJyoZ_bLronrkvK9u8k
607
607
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=SDgHqcCHR0hON50ckSHQDrVnBzOc-I7hYibE6r6oaB8,5343
608
608
  qiskit/transpiler/passes/synthesis/default_unitary_synth_plugin.py,sha256=24klmHSXXsd5hWCXaXR70-8qXirervLNJVMzkV0N2AM,25800
609
609
  qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=8RgceAqPgTJYCc5uBhQpyfWr39hF6EHd2HKyUMTawdY,19932
610
- qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=uh9tQ0hmbWvLvuk--k4kWC-W9v5-Xawwp4tRtDoDSPs,74210
610
+ qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=NwE-VHShW9rTU9w5YtGRYgbPrj86bv9hC08Jugu8R0w,74497
611
611
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Q1r-52HMETK_7iWTMmJKGU39rNws-MrmGDHh7TgQVj4,1407
612
612
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=VppNWxqyI4lNo6qnIbnulAB74Og7LLNXXt7teh50Kt4,30966
613
613
  qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=fK5OjEqFo59dEcob6GFALfJDkULCvliJzQMA0CFuJW0,12016
@@ -682,9 +682,9 @@ qiskit/visualization/timeline/types.py,sha256=-mp8Oh7FrDvmCJGfFjViuY_SGuJMZZdkxJ
682
682
  qiskit/visualization/timeline/plotters/__init__.py,sha256=3uM5AgCcqxqBHhslUGjjmqEL6Q04hVSGvl3d2bsUtTI,572
683
683
  qiskit/visualization/timeline/plotters/base_plotter.py,sha256=1do-sZjHjUzqh3HI3MtN4jXJiLEE1j1f56JSXaR_C68,1747
684
684
  qiskit/visualization/timeline/plotters/matplotlib.py,sha256=15dka2ohGPUs8889JcUqITdo4dCoehicwCrbbpntmkU,6993
685
- qiskit-2.0.2.dist-info/METADATA,sha256=jfDEtH1k9QjiVw1gkYHVDgpTKetsxS5xAy8xbSVVZS0,12751
686
- qiskit-2.0.2.dist-info/WHEEL,sha256=kAOz8a8dOJdLcGfX9uJN9V-DoGd3FrnA-oV2PY8oeLY,149
687
- qiskit-2.0.2.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
688
- qiskit-2.0.2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
689
- qiskit-2.0.2.dist-info/RECORD,,
690
- qiskit-2.0.2.dist-info/licenses/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
685
+ qiskit-2.0.3.dist-info/METADATA,sha256=TCIdqZseKGxDv2AqWrqVwSzK8L_sXdFqvlfsbF8TNBw,12793
686
+ qiskit-2.0.3.dist-info/WHEEL,sha256=kAOz8a8dOJdLcGfX9uJN9V-DoGd3FrnA-oV2PY8oeLY,149
687
+ qiskit-2.0.3.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
688
+ qiskit-2.0.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
689
+ qiskit-2.0.3.dist-info/RECORD,,
690
+ qiskit-2.0.3.dist-info/licenses/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
File without changes