qiskit 2.0.2__cp39-abi3-win_amd64.whl → 2.0.3__cp39-abi3-win_amd64.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
qiskit/_accelerate.pyd CHANGED
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=j3T0oCuffiJaFOoqd10MCubnpoOlRufstQrzgj9db8w,7
1
+ qiskit/VERSION.txt,sha256=K6b9dLifybEyvtzPTReZeO7xULLYCqi9C1T9zzvNcMo,7
2
2
  qiskit/__init__.py,sha256=NSNGPc1sRhzmuS8w2qNMeov88n5fwBVuYJhEaKMEdt4,7323
3
- qiskit/_accelerate.pyd,sha256=JDTwHpxr0tGAmakyrBKK9uPxLjpXfQTAQm7mgLsuWjE,11562496
3
+ qiskit/_accelerate.pyd,sha256=QZci05FXT5baGMLWCikog44sy4w5_GOFYM8OdsN-AJE,11570176
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=yPpq2_vI1OXdUA6NS2e86qJHTU60MDSH68PzCdHVZCs,10591
@@ -29,7 +29,7 @@ qiskit/circuit/parameter.py,sha256=5nZhW0cUdhRtSOwvxQHSKTZztFWl_yalcr0jK3Hwefk,7
29
29
  qiskit/circuit/parameterexpression.py,sha256=QxhI9gDdt4Tf9FYZtGhLaVSCTHAMttJHbPOlhHNEynQ,28245
30
30
  qiskit/circuit/parametertable.py,sha256=4u7EuKAiVskcnWQW8dnfU8jgYKZ92KdH2g6PeTvvjjA,3388
31
31
  qiskit/circuit/parametervector.py,sha256=NgNAy0Tzvy0fdfLIhTI6Bg0kqckevhKVPBP9ONMF3uU,4907
32
- qiskit/circuit/quantumcircuit.py,sha256=eCLCkCVL233E7bPYuXpNS8_CJD5g4yysSSTHkaB_pn8,328001
32
+ qiskit/circuit/quantumcircuit.py,sha256=DjpSbPYObd9j8ppUDPmo7NZVgFyg4cYgjfwGI5HKn94,328010
33
33
  qiskit/circuit/quantumcircuitdata.py,sha256=mxiyRI9l9dUFfR1t73jzu1mQAzSz6y_cGicmXZBqPJA,5014
34
34
  qiskit/circuit/reset.py,sha256=XkV4a0UdCDjKBxlv7O5tPsYtq8lIB2DF-gyLpWAkv9E,1233
35
35
  qiskit/circuit/singleton.py,sha256=ik-Jo6E4RU8GA2NoRG9RnW4CWsI_t6iU1D3xLIsBMDI,30907
@@ -67,7 +67,7 @@ qiskit/circuit/library/overlap.py,sha256=xgjDGZbFYB8FbAVy_20XTjGc6Ck7-KgqYuoisEX
67
67
  qiskit/circuit/library/pauli_evolution.py,sha256=fpm4plAkLuGOoQsBLhA7BhmM4eKDsDN4TAzVyawukto,7130
68
68
  qiskit/circuit/library/phase_estimation.py,sha256=HkBZ_EnIdVScXkfi8xD5aootHUFe1rDabNwkWM8J_2I,6767
69
69
  qiskit/circuit/library/phase_oracle.py,sha256=z5VBuCgjT14yWbrvdBubBoZtbwuccFebRvu6m6s6e14,10372
70
- qiskit/circuit/library/quantum_volume.py,sha256=3yXmq9lDZhb_DT0O4qSfSNbGTVeR_VngfCO8llXkz3M,7490
70
+ qiskit/circuit/library/quantum_volume.py,sha256=LL3rU81shLfgjcVr-Izxz9jAI_jFzBm0rzS6F2-9xaA,7541
71
71
  qiskit/circuit/library/arithmetic/__init__.py,sha256=ewUjjwy0BuTi-gD3rzc62bL5Ss3lQyaHYirJT8ozQX4,1725
72
72
  qiskit/circuit/library/arithmetic/exact_reciprocal.py,sha256=A7tBGLLObgsGXa2_fRxBg8LMAC4tQJwH6XRwOj_nLO8,5448
73
73
  qiskit/circuit/library/arithmetic/functional_pauli_rotations.py,sha256=4iNr7sNKMD6Ah9aWcUg-Ca_12rr1m3U2LYdpxGe9YYs,3729
@@ -81,13 +81,13 @@ qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py,sha256=mARVdvBS0
81
81
  qiskit/circuit/library/arithmetic/quadratic_form.py,sha256=GK96cB6E4GlVKB_NIZUaKxVJ3y3otllw4UTrCSn6kac,14707
82
82
  qiskit/circuit/library/arithmetic/weighted_adder.py,sha256=ElzgTw9gZCyyY1rImy8xKcx3rLnVjbHBIajdZ5Vcw_M,15883
83
83
  qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=gHzRfBcGYvNiydkYuf42czLLnHmAaWeHUYaJ-Z07Hg8,761
84
- qiskit/circuit/library/arithmetic/adders/adder.py,sha256=YfBhUdpvrjpVJvadF-JyBoTGes6-2Mz5sm07BvgdywE,8122
84
+ qiskit/circuit/library/arithmetic/adders/adder.py,sha256=IwB24mVQWSZhvn6UlIsDPmU-bXbqVShfAC-NDwr-XYs,8128
85
85
  qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=3HRsIx1n9H1Xi2rUqo1oNVd4Nhc4G4PaQBvLtCYLYtc,7579
86
86
  qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=RYMO9VXAUj0b9PxDs1IsI7Eh6AXORWHUbEFSvo6xr6Y,6148
87
87
  qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=vgQ5UEqbuVEEE7v3NElb24qTaolMChc5l7VCSwePjJk,5034
88
88
  qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=Cw2e2xFpYZb1mB2bKiU38BAuZWIKfB7HdOVmqA3mrOY,689
89
89
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=BVYzcLL34f7KLW_2L61VBtuh9LIfXlmfW7JW6cAL4xs,6995
90
- qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=k55s1CQU2PHKcNGwBiCoTN31Kq4NOw-L1Fx5t7Br20w,7610
90
+ qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=qHkDiQ5mKmCXGvP3rm6kLKY4K36DzT4zZuR-nmLoIco,7616
91
91
  qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=BWyK6ou7_gqvG_aFzqk2cmsjaYljrhPb9V8eIeup8u0,6323
92
92
  qiskit/circuit/library/basis_change/__init__.py,sha256=NPfRl5EZurnELm_5BPwT48YWRAta2naePDbCvSDTSBk,563
93
93
  qiskit/circuit/library/basis_change/qft.py,sha256=dllI4oIo92jI8rFNHIls3CCXiZJuTE9b8R-RqnZUI2o,11149
@@ -250,8 +250,8 @@ qiskit/converters/dag_to_dagdependency.py,sha256=cfMWYZ4wv3FIV2mjC0sTw1GTP5JQ9Yq
250
250
  qiskit/converters/dag_to_dagdependency_v2.py,sha256=lrRG95XVDxTrC2W3GG09FEMbCwFT33nVNuu6Pq_h58Y,1484
251
251
  qiskit/converters/dagdependency_to_circuit.py,sha256=Epos3tsSEb94Pm4hWT9E89kJOjMmVequJEfbf3NzXTo,1356
252
252
  qiskit/converters/dagdependency_to_dag.py,sha256=OCFDJG2yRKqS8j5PKJXBEtEhakJeNkrCdvt-LgUMahA,1606
253
- qiskit/dagcircuit/__init__.py,sha256=28PM2IY8dnLbOFsWnNJ8qYh8bmJNs9mRqfCJLXZDx6Q,1236
254
- qiskit/dagcircuit/collect_blocks.py,sha256=wImzpcoxxqIvCfrWeU_8IVultlOY7dJOMRYOtnQsCiw,17367
253
+ qiskit/dagcircuit/__init__.py,sha256=hc6r6HxQybczypx3-_09kX28Dq7RooX2GECKaZD_CKM,1437
254
+ qiskit/dagcircuit/collect_blocks.py,sha256=UGG4zYSAyaBp0KLb7F1VNz5R2Yq8oD8p-59MRx5m9yg,17564
255
255
  qiskit/dagcircuit/dagcircuit.py,sha256=uheD2R2pbwvZ2TKn9GVuS_c06hhsU10JnO_UZLvuZSg,1065
256
256
  qiskit/dagcircuit/dagdependency.py,sha256=G1FVH0RhYWfKvHYQI9XjqflAho8ii29_OeYk7dAcTmw,23695
257
257
  qiskit/dagcircuit/dagdependency_v2.py,sha256=rImvOItj7-QU38xEuTRC9ceA3eVeDRYcwgUD6wPQj3I,22714
@@ -321,7 +321,7 @@ qiskit/qasm3/exceptions.py,sha256=dlLYUf4zVG1L4ccvXG0MVtzzcIYqshjBejWRz031ykQ,93
321
321
  qiskit/qasm3/experimental.py,sha256=cwIF1YlMzZPvR2BgY3n1D6-TqNTko83Y-qzuKO4c8vw,2062
322
322
  qiskit/qasm3/exporter.py,sha256=wISyeHu2pg00om3J4O-0kUMSS6S4j7M538hexyeykhM,65336
323
323
  qiskit/qasm3/printer.py,sha256=GMO2tOst3vxrv17faCtieMp-DBSAlnDUdtpvw8cY1fU,23074
324
- qiskit/qpy/__init__.py,sha256=Pc-cgN9ktDkkti2FOfwx-YNpdCgN_d1ocDT4A2w-0ig,69999
324
+ qiskit/qpy/__init__.py,sha256=1oe681jp5oh8i44k5_V8qqNmCTY39yZOLDcZvMuA7w8,70005
325
325
  qiskit/qpy/common.py,sha256=zihRExsY3GbV-cP2z09nClU5u1oHd0IZrQ3slDKP9AI,12759
326
326
  qiskit/qpy/exceptions.py,sha256=BX1ILW35oUPDmotmttybw2bY1IvUwziOVpsf7z_mIkY,1900
327
327
  qiskit/qpy/formats.py,sha256=DJrbAz8NpbYfkH54Etq91W3PxNtH3XL0eJuiMg_50R0,13267
@@ -379,7 +379,7 @@ qiskit/quantum_info/operators/symplectic/pauli.py,sha256=HfBU6LU_QMNUPRE9HbKNLHa
379
379
  qiskit/quantum_info/operators/symplectic/pauli_list.py,sha256=hWSMfqiJ4Y5nsEOvrepQIz9i8mJOQsMQM4CLlYiF_No,47696
380
380
  qiskit/quantum_info/operators/symplectic/pauli_utils.py,sha256=mK4Unq150o-Mxz90OxZKEFH_ViQuMFpLYRbuYJEWFmE,1342
381
381
  qiskit/quantum_info/operators/symplectic/random.py,sha256=CHnQvnME3hDAa3_g6wZ0cqQhe1BUGeAQ5R1uswAHsqE,3944
382
- qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=vY_GvERmaOF-ybY6KwHTm7Z4HfMUG-Y0HSy7EunhWQU,50477
382
+ qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=s6AtWCwwUrhil0leaFYqPg1xBwwTTsOqF0ZPu8piHr0,50483
383
383
  qiskit/quantum_info/operators/utils/__init__.py,sha256=lzQzcOH2CG2pPKkGT54lMIUTres_kprzbmMTVrI646c,724
384
384
  qiskit/quantum_info/operators/utils/anti_commutator.py,sha256=rTJvRxRxK1-CvCABRD0dE8e0OSDXPiA_0wV_IahhzAs,1013
385
385
  qiskit/quantum_info/operators/utils/commutator.py,sha256=xGwTSrqUvlt93VLdKknmxx4xRKtHRAYmovRY-364gWk,993
@@ -494,7 +494,7 @@ qiskit/synthesis/unitary/aqc/fast_gradient/fast_grad_utils.py,sha256=Z7BKkTQERao
494
494
  qiskit/synthesis/unitary/aqc/fast_gradient/fast_gradient.py,sha256=DCRZE4K-OOsPpYWwVncq7CBxyeZKQe-v5VlXwCGAno4,9282
495
495
  qiskit/synthesis/unitary/aqc/fast_gradient/layer.py,sha256=PikHrwNVf_M2KyAjUmy4aKnd4is-bdAqxOagcyaGjI4,13269
496
496
  qiskit/synthesis/unitary/aqc/fast_gradient/pmatrix.py,sha256=p1bb8kkUQLhnO1Uw5ghWDJWNuVBGQOgRfFc88EdYg0w,12645
497
- qiskit/transpiler/__init__.py,sha256=tSYoUfUG1uK_mDTXCSFScMsBpWLtkrlhY3nWN5c5whQ,56690
497
+ qiskit/transpiler/__init__.py,sha256=JaSV4XItUqxasdnlFjW5JONxdV8ByYp7FI32nNf02Ak,56728
498
498
  qiskit/transpiler/basepasses.py,sha256=MsrQpQM836oPNnzrKj5JkybvzH1VG1dDKWGHckdhg5I,7733
499
499
  qiskit/transpiler/coupling.py,sha256=8oIvOUPpqT-wIjrCP8u0cHiemI1ON4714cH30BAE_iw,19103
500
500
  qiskit/transpiler/exceptions.py,sha256=ef9tiCFmu-fzGwKXg4e9CiBFjcJJxl5zA02L2Pk7wIQ,1769
@@ -523,7 +523,7 @@ qiskit/transpiler/passes/basis/unroll_3q_or_more.py,sha256=pPL4DrjC3KivLrfcoruuw
523
523
  qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=PG9mboSrR5Wbbt8gMqtjaiRz9qBjqxsAwjGyvvQkP2k,4519
524
524
  qiskit/transpiler/passes/layout/__init__.py,sha256=BHZJXEnfbSQ404Hh65pbtOqkoD_H6yy9dok1u1_v-P8,1068
525
525
  qiskit/transpiler/passes/layout/_csp_custom_solver.py,sha256=38KoabU0j3br4ArNrjQEw-L08aeN3MNtWK2hTTLLbeM,2813
526
- qiskit/transpiler/passes/layout/apply_layout.py,sha256=tZp2xDr5cC1O1Yi-6uIN121NT1YPTlCDaJUQVHksftU,5768
526
+ qiskit/transpiler/passes/layout/apply_layout.py,sha256=bJmEUk5wosii1T2vgbk29cTXmoHvy7Uky2DI9SOR8Wk,5784
527
527
  qiskit/transpiler/passes/layout/csp_layout.py,sha256=ca9OAncR3kFWzuve88i5MR-F1hrytUDs01ra6oCPsdo,5553
528
528
  qiskit/transpiler/passes/layout/dense_layout.py,sha256=_5lco0rFL7F5Ja23d-p5x8A4LhmFtnqVEfNsuOCvOUg,6630
529
529
  qiskit/transpiler/passes/layout/disjoint_utils.py,sha256=icKy_q9EKn3K_omLAe6JOLXnzOaBFQYuuhmiaL9z2_I,9628
@@ -536,7 +536,7 @@ qiskit/transpiler/passes/layout/set_layout.py,sha256=X_3D_-fU0evPgxv0EGm0ISDDT73
536
536
  qiskit/transpiler/passes/layout/trivial_layout.py,sha256=E4JV8B_aomdILUNorxvFN_memUJ2oR3apGtXHnJNSRQ,2445
537
537
  qiskit/transpiler/passes/layout/vf2_layout.py,sha256=MFl_ZWKRWicoebIHywRTAFrUz1mpeFt7P9ou6IMtih4,11867
538
538
  qiskit/transpiler/passes/layout/vf2_post_layout.py,sha256=MLMwQAOff8Kr-1QkvRq33RUZS8fSnCH6hJyj_l6lyN0,17662
539
- qiskit/transpiler/passes/layout/vf2_utils.py,sha256=B-c6cYpjGkjF0PUa0u-8fwKb9Zzy99ibBt7daLhOY8A,9813
539
+ qiskit/transpiler/passes/layout/vf2_utils.py,sha256=_vqa9aOBVgUwOo7OooVJCPWFr_32p6a41TV5iFDOL7Y,9931
540
540
  qiskit/transpiler/passes/optimization/__init__.py,sha256=LLD1gS7VXvLaGrkppqT0hw3SkDjmyknljmyNq5tIcnM,2186
541
541
  qiskit/transpiler/passes/optimization/_gate_extension.py,sha256=FAizDJc9m0y1blUd28qZK0rCKDeiK48fOvYh1lghAZ0,3386
542
542
  qiskit/transpiler/passes/optimization/collect_1q_runs.py,sha256=JGzjVY_TdtNAST8ZSrjtg6fEFj8UVEGATneuGlx-DtQ,1145
@@ -577,7 +577,7 @@ qiskit/transpiler/passes/routing/__init__.py,sha256=SfhAsVV6rPUZIeYl3jDdsF-a8kPG
577
577
  qiskit/transpiler/passes/routing/basic_swap.py,sha256=2-psCRJsvxCKoNCKt_Tx9mC9vQp-V9AWr2hNSPc5MLs,6896
578
578
  qiskit/transpiler/passes/routing/layout_transformation.py,sha256=IWqOrP4_5V1DKNBSejSjFCyXCB51iMzJfGL4MjxWE44,4804
579
579
  qiskit/transpiler/passes/routing/lookahead_swap.py,sha256=u-soqOBehODdnEgt59TMVHDJoUjIny2XWJjJUG-h-jc,15645
580
- qiskit/transpiler/passes/routing/sabre_swap.py,sha256=udm8VaIKSLj-dPmluTKr3PcewsQtwofPxAGnZMYGF34,20511
580
+ qiskit/transpiler/passes/routing/sabre_swap.py,sha256=8HkXwFKT1rFZTMnNmZU-iBYfOOWinXwMaWyQcxO-osE,20905
581
581
  qiskit/transpiler/passes/routing/star_prerouting.py,sha256=wkTRpEcS7nyb8EaOqJqXLf7QbGyXcW_I_dy98J3W57Y,17786
582
582
  qiskit/transpiler/passes/routing/utils.py,sha256=vzHOtpKNSQm9FRiJs9G0ce_N4OXBUsT9AQ28bmZIjh8,1955
583
583
  qiskit/transpiler/passes/routing/algorithms/__init__.py,sha256=1sJW2bJAJ0RKb4v-buC1yDa5p2BbDlv91qJUuAxPUuk,1436
@@ -607,7 +607,7 @@ qiskit/transpiler/passes/synthesis/__init__.py,sha256=Q18fvaIkZ1PXp680Y53DkatyPg
607
607
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=y3eoBqsHfugseAa2wYvY-5eWF1GME_TOWnHke9z8NTI,5496
608
608
  qiskit/transpiler/passes/synthesis/default_unitary_synth_plugin.py,sha256=4g3vPCfLeFn3hG2oG-TBmi4khEcPCIU328VkLbRKw84,26453
609
609
  qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=Iq6_PenaX1vhqfO_eA3TS8thIN8jGf29NKgd4ChUsFs,20361
610
- qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=g12D0p8tUs2AwsO2bXoRVR1e56DE1T_EGkSW088muWg,76168
610
+ qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=DoXgZjWehdeJAPfWjfkgTbWqgw4wa3SpyE-LaaoN9_c,76460
611
611
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Sit6NoTlFXNBDrDxlyMar9ro7VunRJQxWb5NeG2JTZc,1448
612
612
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=f8NXKnSgWW6rLLsfzYaBiCqXXpG3REF3lSVRLZWUVOQ,31704
613
613
  qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=Mt3xczSJztIkIR_FX_J4epxitmahZ9J3ba0II0mwr8s,12329
@@ -682,9 +682,9 @@ qiskit/visualization/timeline/types.py,sha256=jtpipQWUpahayNPQYKUst4GG6BqauovO0q
682
682
  qiskit/visualization/timeline/plotters/__init__.py,sha256=Klg9a1cSUIQhc815g8OpnD5vO1hcI51L9KlFfKzcuRg,588
683
683
  qiskit/visualization/timeline/plotters/base_plotter.py,sha256=taRkL2ZbyorRUEf6nJS8egdzKW2eznQ3w5oBLtMG_U8,1805
684
684
  qiskit/visualization/timeline/plotters/matplotlib.py,sha256=dreQmQx2lVP5oPfTnF8Dm3x-vGjA4WHHtTIROm4WxDc,7188
685
- qiskit-2.0.2.dist-info/licenses/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
686
- qiskit-2.0.2.dist-info/METADATA,sha256=cOHO8pAA64p0GfkAVERmBfNJ0W91q-CpheCmxMs9_qY,12971
687
- qiskit-2.0.2.dist-info/WHEEL,sha256=DbN7S3h4YQA-y-B21gLEqncqJu4AuNAIA-Y5RA5Bkg0,99
688
- qiskit-2.0.2.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
689
- qiskit-2.0.2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
690
- qiskit-2.0.2.dist-info/RECORD,,
685
+ qiskit-2.0.3.dist-info/licenses/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
686
+ qiskit-2.0.3.dist-info/METADATA,sha256=lYLhtbMazGRyzcGkg4uc2COZEuJc1zqbZGET9S7ZZ_A,13013
687
+ qiskit-2.0.3.dist-info/WHEEL,sha256=DbN7S3h4YQA-y-B21gLEqncqJu4AuNAIA-Y5RA5Bkg0,99
688
+ qiskit-2.0.3.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
689
+ qiskit-2.0.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
690
+ qiskit-2.0.3.dist-info/RECORD,,
File without changes