qiskit 2.0.2__cp39-abi3-macosx_11_0_arm64.whl → 2.0.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.
- qiskit/VERSION.txt +1 -1
- qiskit/_accelerate.abi3.so +0 -0
- qiskit/circuit/library/arithmetic/adders/adder.py +1 -1
- qiskit/circuit/library/arithmetic/multipliers/multiplier.py +1 -1
- qiskit/circuit/library/quantum_volume.py +2 -1
- qiskit/circuit/quantumcircuit.py +2 -2
- qiskit/dagcircuit/__init__.py +11 -0
- qiskit/dagcircuit/collect_blocks.py +10 -6
- qiskit/qpy/__init__.py +1 -1
- qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py +1 -1
- qiskit/transpiler/__init__.py +9 -5
- qiskit/transpiler/passes/layout/apply_layout.py +2 -2
- qiskit/transpiler/passes/layout/vf2_utils.py +3 -1
- qiskit/transpiler/passes/routing/sabre_swap.py +8 -0
- qiskit/transpiler/passes/synthesis/hls_plugins.py +8 -3
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/METADATA +8 -8
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/RECORD +21 -21
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/WHEEL +0 -0
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/entry_points.txt +0 -0
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/licenses/LICENSE.txt +0 -0
- {qiskit-2.0.2.dist-info → qiskit-2.0.3.dist-info}/top_level.txt +0 -0
qiskit/VERSION.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.3
|
qiskit/_accelerate.abi3.so
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://
|
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://
|
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
|
-
|
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))
|
qiskit/circuit/quantumcircuit.py
CHANGED
@@ -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://
|
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::
|
qiskit/dagcircuit/__init__.py
CHANGED
@@ -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
|
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
|
-
|
342
|
-
:class:`~qiskit.dagcircuit.DAGCircuit`
|
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://
|
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://
|
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:
|
qiskit/transpiler/__init__.py
CHANGED
@@ -237,7 +237,7 @@ Initialization stage
|
|
237
237
|
--------------------
|
238
238
|
|
239
239
|
.. seealso::
|
240
|
-
`Init stage explanation <https://
|
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
|
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
|
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://
|
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://
|
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
|
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
|
-
|
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
|
-
|
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
|
-
|
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.
|
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://
|
9
|
-
Project-URL: API Reference, https://
|
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://
|
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://
|
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://
|
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://
|
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://
|
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,10 +1,10 @@
|
|
1
1
|
qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
|
2
2
|
qiskit/__init__.py,sha256=PkJcNRSj84w0sadJYoUVlJsFX4Kpl_ftp4Zwg2KZcxg,7182
|
3
|
-
qiskit/_accelerate.abi3.so,sha256=
|
3
|
+
qiskit/_accelerate.abi3.so,sha256=0WVuezIjVMM_iyxqqAOWvD8DSb_L8uWrlnZcu1F0gNA,9713760
|
4
4
|
qiskit/user_config.py,sha256=3ez0XDwu0WKnjdHB-LNk4XRTQl9Eu-WgqkXOC771pTs,10325
|
5
5
|
qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
|
6
6
|
qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
|
7
|
-
qiskit/VERSION.txt,sha256=
|
7
|
+
qiskit/VERSION.txt,sha256=vmlfyAkq03BtfX07UQTh6vj-aWZuWVjjdcmVKgb6lRQ,6
|
8
8
|
qiskit/visualization/circuit_visualization.py,sha256=6R-A96Uwb_RZOovsSB0LGVsC7lP5IhtLNp6VP2yVBwE,698
|
9
9
|
qiskit/visualization/counts_visualization.py,sha256=Gy-rPzK5lWVMmX7ZSYUlAFvxcnlI59ym_5LnfJkSHSQ,16979
|
10
10
|
qiskit/visualization/pass_manager_visualization.py,sha256=hJIvex7i-DQuOOq73TbPMzsQZDOaoElqrJO000v51ck,10972
|
@@ -45,7 +45,7 @@ qiskit/visualization/timeline/plotters/__init__.py,sha256=3uM5AgCcqxqBHhslUGjjmq
|
|
45
45
|
qiskit/transpiler/timing_constraints.py,sha256=TAFuarfaeLdH4AdWO1Cexv7jo8VC8IGhAOPYTDLBFdE,2382
|
46
46
|
qiskit/transpiler/layout.py,sha256=NI4dY-59KnaZmgz34B2Uiv6KEIxWSsTplmASpiQ7SKg,28321
|
47
47
|
qiskit/transpiler/coupling.py,sha256=Lrh6U3hFXqEPk-X0xHrLZzdB-SXkJEVkLlAVzwEmKrA,18603
|
48
|
-
qiskit/transpiler/__init__.py,sha256=
|
48
|
+
qiskit/transpiler/__init__.py,sha256=IhE6Klk-L8JEdAdPmXlYxODwBkK-izf6x5ZAbEEF0CU,55383
|
49
49
|
qiskit/transpiler/basepasses.py,sha256=ecLZAg1lCHb58EMufMTJsZTQBUFDL6AFufjcII2jVYM,7543
|
50
50
|
qiskit/transpiler/passmanager.py,sha256=sYcP_7B3wwfbpuUSAAZiPBCuHu9tCSHDWDWQXPYtggw,21179
|
51
51
|
qiskit/transpiler/passmanager_config.py,sha256=m99QAUuUocCVcDM--TvA2k4RIXFbz6QIChLrj5kyxFY,7278
|
@@ -82,7 +82,7 @@ qiskit/transpiler/passes/layout/enlarge_with_ancilla.py,sha256=1sEO0IHeuQuZWkzGE
|
|
82
82
|
qiskit/transpiler/passes/layout/full_ancilla_allocation.py,sha256=0_AB6qAMbY-JMAycddlEesF0KVopxHsLB7pI-GSWiwg,4573
|
83
83
|
qiskit/transpiler/passes/layout/vf2_layout.py,sha256=-E9opzrr5wbjAstKUBORlUK62eMley8OXRtQ6mfxt1I,11611
|
84
84
|
qiskit/transpiler/passes/layout/_csp_custom_solver.py,sha256=BnyCQim89cPPzdMczvTA9e0CZ_zxn6n6H72waJzu3Oc,2748
|
85
|
-
qiskit/transpiler/passes/layout/vf2_utils.py,sha256=
|
85
|
+
qiskit/transpiler/passes/layout/vf2_utils.py,sha256=OA5BDOHpi74MeWJJNsG4EFvu04BPY3L0VDNp1_5WBkY,9696
|
86
86
|
qiskit/transpiler/passes/layout/__init__.py,sha256=sS1jZFl4JORuzuU7uEjryZNhLbwqoo4dWAyfry4v-2Y,1042
|
87
87
|
qiskit/transpiler/passes/layout/set_layout.py,sha256=KJFDlhNsQUe58SWbJVhMlGHLQyN_mJMayT-qmBet74w,2514
|
88
88
|
qiskit/transpiler/passes/layout/layout_2q_distance.py,sha256=BC6zrKgVQD18fvnQZlZffeF2uhwSzWIqCUnOHbJODVE,2723
|
@@ -90,7 +90,7 @@ qiskit/transpiler/passes/layout/dense_layout.py,sha256=e73lXQT3FYfD6whFQeeK1tXFV
|
|
90
90
|
qiskit/transpiler/passes/layout/disjoint_utils.py,sha256=rf48bvP5j2C2eZf_CFFIlXnYJZxnw7rX23hD-pocNFs,9409
|
91
91
|
qiskit/transpiler/passes/layout/sabre_pre_layout.py,sha256=utjTNMcyAOI-7iCmP3AAP5HibsvYNlc3BTiSMGs5w5M,9429
|
92
92
|
qiskit/transpiler/passes/layout/csp_layout.py,sha256=J_IHZIYsZkEw0M5WcP-Rub9o6McJbYKyhycaxsMgPU4,5421
|
93
|
-
qiskit/transpiler/passes/layout/apply_layout.py,sha256=
|
93
|
+
qiskit/transpiler/passes/layout/apply_layout.py,sha256=C0FHcngUS2Ep7IczqwV1B5CzfCdznBAxwiiHfcJE7Js,5656
|
94
94
|
qiskit/transpiler/passes/layout/vf2_post_layout.py,sha256=p8qAG1KQ8fn0ruGpleBgnCnFtA0ae8h-AhyZ--TjUZI,17286
|
95
95
|
qiskit/transpiler/passes/layout/trivial_layout.py,sha256=vLtp3gr4-KRrEwtw2NEVrY5LKuFrMKOY0Cr7LhdoMBs,2379
|
96
96
|
qiskit/transpiler/passes/optimization/optimize_swap_before_measure.py,sha256=lAhs8RbLAMua2sJ5xQlMU1C8vJfa_n2y4zoqnoQAgVc,3024
|
@@ -147,7 +147,7 @@ qiskit/transpiler/passes/utils/gates_basis.py,sha256=9AQ8uKi4CmiGF0CBnLQfc07ca_H
|
|
147
147
|
qiskit/transpiler/passes/utils/barrier_before_final_measurements.py,sha256=1N8OMvteNo9UpRPn7aST62D56u8ikSTYK8ZFZWKOYGE,1530
|
148
148
|
qiskit/transpiler/passes/utils/fixed_point.py,sha256=AiwkNvu-SLHvodddJRKfFEl7FPC62u1f3CB9lRne9eY,1773
|
149
149
|
qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=fK5OjEqFo59dEcob6GFALfJDkULCvliJzQMA0CFuJW0,12016
|
150
|
-
qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=
|
150
|
+
qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=NwE-VHShW9rTU9w5YtGRYgbPrj86bv9hC08Jugu8R0w,74497
|
151
151
|
qiskit/transpiler/passes/synthesis/__init__.py,sha256=VYO9Sl_SJyoZ_bLronrkvK9u8kL-LW9G93LbWyWNEaM,925
|
152
152
|
qiskit/transpiler/passes/synthesis/plugin.py,sha256=VppNWxqyI4lNo6qnIbnulAB74Og7LLNXXt7teh50Kt4,30966
|
153
153
|
qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Q1r-52HMETK_7iWTMmJKGU39rNws-MrmGDHh7TgQVj4,1407
|
@@ -161,7 +161,7 @@ qiskit/transpiler/passes/routing/star_prerouting.py,sha256=eFGAFrerqAtLxCmImx2l2
|
|
161
161
|
qiskit/transpiler/passes/routing/utils.py,sha256=e00RmZyS65EQKbUKd6jv_R8-7dE3vuDMENp5uP_Ao_I,1920
|
162
162
|
qiskit/transpiler/passes/routing/basic_swap.py,sha256=SreeyuuPeeciL_Zu43w7V83JaRnu2lNZU5uyJmQK3FQ,6730
|
163
163
|
qiskit/transpiler/passes/routing/lookahead_swap.py,sha256=o4Itq4BsYk6LeqPzCJgttk59CkrJvWnHY4kS5RoEmSY,15255
|
164
|
-
qiskit/transpiler/passes/routing/sabre_swap.py,sha256=
|
164
|
+
qiskit/transpiler/passes/routing/sabre_swap.py,sha256=SCMoZ-8FLsGDCIpUc3hb-LUX8OH64SgvQJZyxG288ws,20442
|
165
165
|
qiskit/transpiler/passes/routing/commuting_2q_gate_routing/commuting_2q_block.py,sha256=LihCUwM6kX9J5e_52grD8iyOuvNDEgxcVREib5CtO74,2012
|
166
166
|
qiskit/transpiler/passes/routing/commuting_2q_gate_routing/pauli_2q_evolution_commutation.py,sha256=y7FbjU3Yu3cUa4G5AeKa48hDM1pyZK8f61F6zNdNFsY,5133
|
167
167
|
qiskit/transpiler/passes/routing/commuting_2q_gate_routing/__init__.py,sha256=9EmiNpQaoMwMwmQCFLASmR3xaIc5LRbxnAA9_IH3rGc,1230
|
@@ -229,7 +229,7 @@ qiskit/circuit/singleton.py,sha256=NCs1BeOkFwThKU3GIyT3AwW8Z81aW_jCoRemYswii7Q,3
|
|
229
229
|
qiskit/circuit/controlledgate.py,sha256=AimgMwjGI5xnr13-1pzJJix7B5bfBaOhDfRJ4eFSYyo,9792
|
230
230
|
qiskit/circuit/exceptions.py,sha256=QoT6kFuoVLe6lWUlTKkSMWufVtyfDCgaUe1kyv79WAY,691
|
231
231
|
qiskit/circuit/equivalence_library.py,sha256=7f2T6c7sbDWaVQNVALNJL0olLVFZmHgA9xzcy7_FdDQ,708
|
232
|
-
qiskit/circuit/quantumcircuit.py,sha256=
|
232
|
+
qiskit/circuit/quantumcircuit.py,sha256=HKo0EWBcSsKBYf-Pv3skejoriQ5p7TLMUoY2AK_LOnw,320470
|
233
233
|
qiskit/circuit/_standard_gates_commutations.py,sha256=1E6i6Atz3PkHGpguFFfTOcD9ffXCncCE1Jx6AlafMww,99006
|
234
234
|
qiskit/circuit/instruction.py,sha256=jWu4tCkrKoXaePFVrObgMebLhRO_Zb4wXT4f7QB38BY,20884
|
235
235
|
qiskit/circuit/equivalence.py,sha256=8KmspRNLHbMx3OYG76ESA5_nXZJRDfvoDb3mhy7eV4A,3436
|
@@ -246,7 +246,7 @@ qiskit/circuit/library/graph_state.py,sha256=uV7oNK9d2m26mLnJVe2-NRZPVgMvZ8T08m_
|
|
246
246
|
qiskit/circuit/library/iqp.py,sha256=SOwiIzg4CSXBERMvDq6D_FP52JzVL1DMlYjNzerBkIo,6092
|
247
247
|
qiskit/circuit/library/fourier_checking.py,sha256=kCVnbrhTDLVp-wqkqUpJ9IfrwxcA9Powg_HUxpW7l28,6386
|
248
248
|
qiskit/circuit/library/__init__.py,sha256=_7FYcalYqgpA10NPTHzXXKhrzLlksgLY9i1EkxSohpE,25512
|
249
|
-
qiskit/circuit/library/quantum_volume.py,sha256=
|
249
|
+
qiskit/circuit/library/quantum_volume.py,sha256=DWRWqNeiO0E_50XLFce1npeyntp1miE2o5HKxSnmyR4,7361
|
250
250
|
qiskit/circuit/library/phase_estimation.py,sha256=ptXPL6sM9-1ArafyLGF-szwfrFG8fB2tDoZkrqNCEH0,6590
|
251
251
|
qiskit/circuit/library/overlap.py,sha256=Q8u5SxQJ1M9V-ADfb3qzGFthES72AIP425CMFcZjSeo,7146
|
252
252
|
qiskit/circuit/library/grover_operator.py,sha256=fGyheiKM4f6z1TND_s4lY_MGqoIsr5AM2tV4jJL2jbQ,28470
|
@@ -299,8 +299,8 @@ qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=h0A_2Q
|
|
299
299
|
qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=MdHBDzhXIg5G0ePIFCVlBAAIr_inngSp4i2ElDukRvI,7456
|
300
300
|
qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=PRrSLxGAtAMm-9L6UIFnL3ta0NSYUIhEklpf_i9bE5s,743
|
301
301
|
qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=2EUoSPfOCrpO_n0n-aIcma3nA4HsmLL3J_joxXHqg_M,6019
|
302
|
-
qiskit/circuit/library/arithmetic/adders/adder.py,sha256=
|
303
|
-
qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=
|
302
|
+
qiskit/circuit/library/arithmetic/adders/adder.py,sha256=zgMYr9R2IBzvONeTBXP_2SY7DYD8iyfq76MN0I-THcs,7893
|
303
|
+
qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=VLBj97iUURV_uUAoChhB0zyeZzikkX4VcWsk9EJ27eI,7415
|
304
304
|
qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=vRtcHF2PRcyK_lfBQFqsWlpeaGwkcK3PK1KeduHvfOE,672
|
305
305
|
qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=oJIWVc2wFLz-GbU06jurKU3xcyxWdd7AbsH7SVMu0-c,6850
|
306
306
|
qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=fhFUM0wTyK8X8CLDQEKs05Ezzos5uS_kybCoj9zSeuw,6215
|
@@ -466,11 +466,11 @@ qiskit/converters/dagdependency_to_circuit.py,sha256=hBbcGS37UjgV3pCvKn20cPKJeVG
|
|
466
466
|
qiskit/converters/dag_to_circuit.py,sha256=cryxjYwHdDJmKD5IlteXGBiorfufS_ColziOE4-gfqs,2922
|
467
467
|
qiskit/converters/dag_to_dagdependency_v2.py,sha256=6dUYmBovXxZt3Ka-O2jWRT5PAYw0KWsBan1OqD85-is,1441
|
468
468
|
qiskit/converters/dag_to_dagdependency.py,sha256=KUB5KtUs5n_hBy_FJXbPBISnWasLL8HqL4pwRAiiZ-k,1778
|
469
|
-
qiskit/dagcircuit/collect_blocks.py,sha256=
|
469
|
+
qiskit/dagcircuit/collect_blocks.py,sha256=JUp0rWzLB9bi2tFKE4hOHepJRAEoMD1curnUpJXGvig,17157
|
470
470
|
qiskit/dagcircuit/dagdependency.py,sha256=12UExCdmyNPEHItjde9mHLveEcMBhZc5COvc6VAL7PQ,23083
|
471
471
|
qiskit/dagcircuit/dagdepnode.py,sha256=gdZAyL9eZQPTMj4ZDKxz_bXd57QJbRB3RIi-dhBkHH0,5255
|
472
472
|
qiskit/dagcircuit/dagdependency_v2.py,sha256=idiwpCFwktngNjDgBNKUJzj_DYM2xenpRN0OH0ZA90o,22148
|
473
|
-
qiskit/dagcircuit/__init__.py,sha256=
|
473
|
+
qiskit/dagcircuit/__init__.py,sha256=2lsl-xcOwgV9FuDwHcgBPIMSwr4UfVslnTPCRRIW0S4,1382
|
474
474
|
qiskit/dagcircuit/exceptions.py,sha256=Jy8-MnQBLRphHwwE1PAeDfj9HOY70qp7r0k1sC_CiZE,1234
|
475
475
|
qiskit/dagcircuit/dagnode.py,sha256=hAkE7IqBbDZo0Cla1ABgGdcPhduZ5P0r-FUmI9_zQRc,6732
|
476
476
|
qiskit/dagcircuit/dagcircuit.py,sha256=5Q-E4j-SmDU3ysdW50Iw5Wdww94HaSW3JZ8ov1XslKo,1041
|
@@ -601,7 +601,7 @@ qiskit/primitives/base/validation_v1.py,sha256=JxONmPI4c0wGXkbzjUvufIS_IFXDdl8Bf
|
|
601
601
|
qiskit/primitives/base/base_primitive_v1.py,sha256=Uzhy6Xdas9peEP7rAhiyoZDQj7ddtl4oQoONrxgSh-0,1271
|
602
602
|
qiskit/primitives/base/sampler_result_v1.py,sha256=6ySMh2On9Kli2zWRMYsl2-mzPSE5oZt7mX6UyvFttcg,1441
|
603
603
|
qiskit/qpy/interface.py,sha256=HVK0xJwLGs3ioemVfgU4jBKULbRTOVMdGO4tWQAPvYE,12558
|
604
|
-
qiskit/qpy/__init__.py,sha256=
|
604
|
+
qiskit/qpy/__init__.py,sha256=rZzeiE7VP5-iz16QcHIJiwJdMUAHgUTney3VXxZy-14,68040
|
605
605
|
qiskit/qpy/common.py,sha256=h1l3yPjwdUuc74pTRzjtOUJ5_SIdYuy_HQQq1Pj3sp4,12406
|
606
606
|
qiskit/qpy/type_keys.py,sha256=-m_JhZXz7TDhxNFr1MCPz5m1zcfQfszofrbwHN2PR5E,10723
|
607
607
|
qiskit/qpy/formats.py,sha256=MaKel58rJ5bsk2AWZSr0DFmdU3I1M6jlk6tZOjPeqbw,12825
|
@@ -653,7 +653,7 @@ qiskit/quantum_info/operators/symplectic/clifford.py,sha256=LP93kydYhfAPUhwF25pH
|
|
653
653
|
qiskit/quantum_info/operators/symplectic/random.py,sha256=mwdIw29GGVmCooU8swKx_Cp5Hsp2p9DSG7H1Gu60hdg,3827
|
654
654
|
qiskit/quantum_info/operators/symplectic/pauli_list.py,sha256=60SFVlraxTHbcbCwd6yZIhM-2HAB_Jv6K_6e030nqBE,46454
|
655
655
|
qiskit/quantum_info/operators/symplectic/pauli.py,sha256=hpWUNM6J40nAYmbspZKFR_9wboD5JrUWQqphT6qn9Oo,28594
|
656
|
-
qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=
|
656
|
+
qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=fpNLiHdsl31bccaqEQmi6Teday3kFpSJ-CTz2uYepYA,49244
|
657
657
|
qiskit/quantum_info/operators/dihedral/dihedral_circuits.py,sha256=XEvzlJxblN0ZYPJbYuAlmQyqmQ8pYz_IJXutuDkWK0g,8799
|
658
658
|
qiskit/quantum_info/operators/dihedral/dihedral.py,sha256=ZtCvzgazQrG6NN7FzY6EoL3HLf4cXv3jEYWMDoG8yXo,20301
|
659
659
|
qiskit/quantum_info/operators/dihedral/__init__.py,sha256=z_a63ppM7gZqDiB3XJccyEIDyka2c4LkpsKzkYWDb-Y,586
|
@@ -682,9 +682,9 @@ qiskit/quantum_info/states/densitymatrix.py,sha256=Xc21mIvH2WM-u_XxMbQImjgzGILH8
|
|
682
682
|
qiskit/quantum_info/states/quantum_state.py,sha256=v__EAFkAu2aJwafAfaVDce5_525fTkTrTaJdrdQhAr0,17774
|
683
683
|
qiskit/compiler/__init__.py,sha256=oDzbHDFJQlrjnwsRZFfJJ5m_2ioDP6untCZP-8S_2os,802
|
684
684
|
qiskit/compiler/transpiler.py,sha256=tVl3Z90mq3UZLc1BXrW-Sf7TAJjmRYjK94efA1da_z8,18048
|
685
|
-
qiskit-2.0.
|
686
|
-
qiskit-2.0.
|
687
|
-
qiskit-2.0.
|
688
|
-
qiskit-2.0.
|
689
|
-
qiskit-2.0.
|
690
|
-
qiskit-2.0.
|
685
|
+
qiskit-2.0.3.dist-info/RECORD,,
|
686
|
+
qiskit-2.0.3.dist-info/WHEEL,sha256=ABbCLNyMOjk3G47ycAleK7GxTLgTblZV1QN66WnLOkk,134
|
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/METADATA,sha256=TCIdqZseKGxDv2AqWrqVwSzK8L_sXdFqvlfsbF8TNBw,12793
|
690
|
+
qiskit-2.0.3.dist-info/licenses/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|