qiskit 1.3.0rc1__cp39-abi3-macosx_10_9_x86_64.whl → 1.3.0rc2__cp39-abi3-macosx_10_9_x86_64.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
- 1.3.0rc1
1
+ 1.3.0rc2
Binary file
@@ -36,7 +36,7 @@ For example, to append a multi-controlled CNOT:
36
36
  circuit.append(gate, [0, 1, 4, 2, 3])
37
37
  circuit.draw('mpl')
38
38
 
39
- The library is organized in several sections. The function
39
+ The library is organized in several sections. The function
40
40
  :func:`.get_standard_gate_name_mapping` allows you to see the available standard gates and operations.
41
41
 
42
42
  .. autofunction:: get_standard_gate_name_mapping
@@ -221,10 +221,10 @@ or of a set of qubit states.
221
221
  OrGate
222
222
  XOR
223
223
  BitwiseXorGate
224
+ random_bitwise_xor
224
225
  InnerProduct
225
226
  InnerProductGate
226
227
 
227
- .. autofunction:: random_bitwise_xor
228
228
 
229
229
  Basis Change Circuits
230
230
  =====================
@@ -280,6 +280,9 @@ Adders
280
280
  CDKMRippleCarryAdder
281
281
  VBERippleCarryAdder
282
282
  WeightedAdder
283
+ ModularAdderGate
284
+ HalfAdderGate
285
+ FullAdderGate
283
286
 
284
287
  Multipliers
285
288
  -----------
@@ -290,6 +293,7 @@ Multipliers
290
293
 
291
294
  HRSCumulativeMultiplier
292
295
  RGQFTMultiplier
296
+ MultiplierGate
293
297
 
294
298
  Comparators
295
299
  -----------
@@ -321,29 +325,40 @@ Other arithmetic functions
321
325
  Particular Quantum Circuits
322
326
  ===========================
323
327
 
328
+ The following gates and quantum circuits define specific
329
+ quantum circuits of interest:
330
+
324
331
  .. autosummary::
325
332
  :toctree: ../stubs/
326
333
  :template: autosummary/class_no_inherited_members.rst
327
334
 
328
335
  FourierChecking
329
- fourier_checking
330
336
  GraphState
331
337
  GraphStateGate
332
338
  HiddenLinearFunction
333
- hidden_linear_function
334
339
  IQP
335
- iqp
336
- random_iqp
337
340
  QuantumVolume
338
- quantum_volume
339
341
  PhaseEstimation
340
- phase_estimation
341
342
  GroverOperator
342
- grover_operator
343
343
  PhaseOracle
344
344
  PauliEvolutionGate
345
345
  HamiltonianGate
346
346
  UnitaryOverlap
347
+
348
+ For circuits that have a well-defined structure it is preferrable
349
+ to use the following functions to construct them:
350
+
351
+ .. autosummary::
352
+ :toctree: ../stubs/
353
+ :template: autosummary/class_no_inherited_members.rst
354
+
355
+ fourier_checking
356
+ hidden_linear_function
357
+ iqp
358
+ random_iqp
359
+ quantum_volume
360
+ phase_estimation
361
+ grover_operator
347
362
  unitary_overlap
348
363
 
349
364
 
@@ -362,6 +377,7 @@ a broad set of variational quantum algorithms:
362
377
  real_amplitudes
363
378
  pauli_two_design
364
379
  excitation_preserving
380
+ qaoa_ansatz
365
381
  hamiltonian_variational_ansatz
366
382
  evolved_operator_ansatz
367
383
 
@@ -386,7 +402,7 @@ They are heavily used in near-term algorithms in e.g. Chemistry, Physics or Opti
386
402
  Data encoding circuits
387
403
  ======================
388
404
 
389
- The following functions return a parameterized :class:`.QuantumCircuit` to use as data
405
+ The following functions return a parameterized :class:`.QuantumCircuit` to use as data
390
406
  encoding circuits in a series of variational quantum algorithms:
391
407
 
392
408
  .. autosummary::
@@ -407,6 +423,17 @@ data in quantum states and are used as feature maps for classification.
407
423
  PauliFeatureMap
408
424
  ZFeatureMap
409
425
  ZZFeatureMap
426
+
427
+
428
+ Data preparation circuits
429
+ =========================
430
+
431
+ The following operations are used for state preparation:
432
+
433
+ .. autosummary::
434
+ :toctree: ../stubs/
435
+ :template: autosummary/class_no_inherited_members.rst
436
+
410
437
  StatePreparation
411
438
  Initialize
412
439
 
@@ -21,7 +21,7 @@ from qiskit.utils.deprecation import deprecate_func
21
21
  class Adder(QuantumCircuit):
22
22
  r"""Compute the sum of two equally sized qubit registers.
23
23
 
24
- For two registers :math:`|a\rangle_n` and :math:|b\rangle_n` with :math:`n` qubits each, an
24
+ For two registers :math:`|a\rangle_n` and :math:`|b\rangle_n` with :math:`n` qubits each, an
25
25
  adder performs the following operation
26
26
 
27
27
  .. math::
@@ -74,7 +74,7 @@ class Adder(QuantumCircuit):
74
74
  class HalfAdderGate(Gate):
75
75
  r"""Compute the sum of two equally-sized qubit registers, including a carry-out bit.
76
76
 
77
- For two registers :math:`|a\rangle_n` and :math:|b\rangle_n` with :math:`n` qubits each, an
77
+ For two registers :math:`|a\rangle_n` and :math:`|b\rangle_n` with :math:`n` qubits each, an
78
78
  adder performs the following operation
79
79
 
80
80
  .. math::
@@ -120,7 +120,7 @@ class HalfAdderGate(Gate):
120
120
  class ModularAdderGate(Gate):
121
121
  r"""Compute the sum modulo :math:`2^n` of two :math:`n`-sized qubit registers.
122
122
 
123
- For two registers :math:`|a\rangle_n` and :math:|b\rangle_n` with :math:`n` qubits each, an
123
+ For two registers :math:`|a\rangle_n` and :math:`|b\rangle_n` with :math:`n` qubits each, an
124
124
  adder performs the following operation
125
125
 
126
126
  .. math::
@@ -166,12 +166,12 @@ class ModularAdderGate(Gate):
166
166
  class FullAdderGate(Gate):
167
167
  r"""Compute the sum of two :math:`n`-sized qubit registers, including carry-in and -out bits.
168
168
 
169
- For two registers :math:`|a\rangle_n` and :math:|b\rangle_n` with :math:`n` qubits each, an
169
+ For two registers :math:`|a\rangle_n` and :math:`|b\rangle_n` with :math:`n` qubits each, an
170
170
  adder performs the following operation
171
171
 
172
172
  .. math::
173
173
 
174
- |c_{\text{in}\rangle_1 |a\rangle_n |b\rangle_n
174
+ |c_{\text{in}}\rangle_1 |a\rangle_n |b\rangle_n
175
175
  \mapsto |a\rangle_n |c_{\text{in}} + a + b \rangle_{n + 1}.
176
176
 
177
177
  The quantum register :math:`|a\rangle_n` (and analogously :math:`|b\rangle_n`)
@@ -82,7 +82,7 @@ def init_observable(observable: BaseOperator | str) -> SparsePauliOp:
82
82
  since="1.2",
83
83
  additional_msg="Use ``QuantumCircuit.layout`` and ``SparsePauliOp.apply_layout`` "
84
84
  + "to adjust an operator for a layout. Otherwise, use ``mthree.utils.final_measurement_mapping``. "
85
- + "See https://qiskit-extensions.github.io/mthree/apidocs/utils.html for details.",
85
+ + "See <https://qiskit.github.io/qiskit-addon-mthree/apidocs/utils> for details.",
86
86
  )
87
87
  def final_measurement_mapping(circuit: QuantumCircuit) -> dict[int, int]:
88
88
  """Return the final measurement mapping for the circuit.
@@ -160,7 +160,7 @@ steps for writing a provider are:
160
160
  interacting with a running job.
161
161
 
162
162
  For a simple example of a provider, see the
163
- `qiskit-aqt-provider <https://github.com/Qiskit-Partners/qiskit-aqt-provider>`__
163
+ `qiskit-aqt-provider <https://github.com/qiskit-community/qiskit-aqt-provider>`__
164
164
 
165
165
  Provider
166
166
  --------
@@ -664,7 +664,7 @@ that abstract away the mechanics of getting the best result efficiently, to
664
664
  concentrate on higher level applications using these outputs.
665
665
 
666
666
  For example, if your backends were well suited to leverage
667
- `mthree <https://github.com/Qiskit-Partners/mthree/>`__ measurement
667
+ `mthree <https://github.com/Qiskit/qiskit-addon-mthree>`__ measurement
668
668
  mitigation to improve the quality of the results, you could implement a
669
669
  provider-specific :class:`~.Sampler` implementation that leverages the
670
670
  ``M3Mitigation`` class internally to run the circuits and return
@@ -476,7 +476,7 @@ class Statevector(QuantumState, TolerancesMixin):
476
476
  pauli_phase = (-1j) ** pauli.phase if pauli.phase else 1
477
477
 
478
478
  if x_mask + z_mask == 0:
479
- return pauli_phase * np.linalg.norm(self.data)
479
+ return pauli_phase * np.linalg.norm(self.data) ** 2
480
480
 
481
481
  if x_mask == 0:
482
482
  return pauli_phase * expval_pauli_no_x(self.data, self.num_qubits, z_mask)
@@ -12,9 +12,11 @@
12
12
 
13
13
  """Replace each block of consecutive gates by a single Unitary node."""
14
14
  from __future__ import annotations
15
+ from math import pi
15
16
 
16
17
  from qiskit.synthesis.two_qubit import TwoQubitBasisDecomposer
17
- from qiskit.circuit.library.standard_gates import CXGate, CZGate, iSwapGate, ECRGate
18
+ from qiskit.circuit.library.standard_gates import CXGate, CZGate, iSwapGate, ECRGate, RXXGate
19
+
18
20
  from qiskit.transpiler.basepasses import TransformationPass
19
21
  from qiskit.transpiler.passmanager import PassManager
20
22
  from qiskit._accelerate.consolidate_blocks import consolidate_blocks
@@ -27,6 +29,7 @@ KAK_GATE_NAMES = {
27
29
  "cz": CZGate(),
28
30
  "iswap": iSwapGate(),
29
31
  "ecr": ECRGate(),
32
+ "rxx": RXXGate(pi / 2),
30
33
  }
31
34
 
32
35
 
@@ -70,7 +73,6 @@ class ConsolidateBlocks(TransformationPass):
70
73
  if basis_gates is not None:
71
74
  self.basis_gates = set(basis_gates)
72
75
  self.force_consolidate = force_consolidate
73
-
74
76
  if kak_basis_gate is not None:
75
77
  self.decomposer = TwoQubitBasisDecomposer(kak_basis_gate)
76
78
  elif basis_gates is not None:
@@ -79,8 +81,12 @@ class ConsolidateBlocks(TransformationPass):
79
81
  self.decomposer = TwoQubitBasisDecomposer(
80
82
  KAK_GATE_NAMES[kak_gates.pop()], basis_fidelity=approximation_degree or 1.0
81
83
  )
84
+ elif "rzx" in basis_gates:
85
+ self.decomposer = TwoQubitBasisDecomposer(
86
+ CXGate(), basis_fidelity=approximation_degree or 1.0
87
+ )
82
88
  else:
83
- self.decomposer = TwoQubitBasisDecomposer(CXGate())
89
+ self.decomposer = None
84
90
  else:
85
91
  self.decomposer = TwoQubitBasisDecomposer(CXGate())
86
92
 
@@ -103,6 +109,7 @@ class ConsolidateBlocks(TransformationPass):
103
109
  consolidate_blocks(
104
110
  dag,
105
111
  self.decomposer._inner_decomposer,
112
+ self.decomposer.gate.name,
106
113
  self.force_consolidate,
107
114
  target=self.target,
108
115
  basis_gates=self.basis_gates,
@@ -382,7 +382,7 @@ class HighLevelSynthesis(TransformationPass):
382
382
 
383
383
  # If the synthesis changed the operation (i.e. it is not None), store the result.
384
384
  if synthesized is not None:
385
- synthesized_nodes[node] = (synthesized, synthesized_context)
385
+ synthesized_nodes[node._node_id] = (synthesized, synthesized_context)
386
386
 
387
387
  # If the synthesis did not change anything, just update the qubit tracker.
388
388
  elif not processed:
@@ -407,8 +407,9 @@ class HighLevelSynthesis(TransformationPass):
407
407
  outer_to_local = context.to_local_mapping()
408
408
 
409
409
  for node in dag.topological_op_nodes():
410
- if node in synthesized_nodes:
411
- op, op_context = synthesized_nodes[node]
410
+
411
+ if op_tuple := synthesized_nodes.get(node._node_id, None):
412
+ op, op_context = op_tuple
412
413
 
413
414
  if isinstance(op, Operation):
414
415
  out.apply_operation_back(op, node.qargs, node.cargs)
@@ -813,6 +814,7 @@ class HighLevelSynthesis(TransformationPass):
813
814
  dag._has_calibration_for(node)
814
815
  or len(node.qargs) < self._min_qubits
815
816
  or node.is_directive()
817
+ or (self._instruction_supported(node.name, qubits) and not node.is_control_flow())
816
818
  ):
817
819
  return True
818
820
 
@@ -830,15 +832,12 @@ class HighLevelSynthesis(TransformationPass):
830
832
  # If all the above constraints hold, and it's already supported or the basis translator
831
833
  # can handle it, we'll leave it be.
832
834
  and (
833
- self._instruction_supported(node.name, qubits)
834
835
  # This uses unfortunately private details of `EquivalenceLibrary`, but so does the
835
836
  # `BasisTranslator`, and this is supposed to just be temporary til this is moved
836
837
  # into Rust space.
837
- or (
838
- self._equiv_lib is not None
839
- and equivalence.Key(name=node.name, num_qubits=node.num_qubits)
840
- in self._equiv_lib.keys()
841
- )
838
+ self._equiv_lib is not None
839
+ and equivalence.Key(name=node.name, num_qubits=node.num_qubits)
840
+ in self._equiv_lib.keys()
842
841
  )
843
842
  )
844
843
 
@@ -479,10 +479,11 @@ def _parse_basis_gates(basis_gates, backend, inst_map, skip_target):
479
479
  if inst not in standard_gates and inst not in default_gates:
480
480
  warnings.warn(
481
481
  category=DeprecationWarning,
482
- message="Providing custom gates through the ``basis_gates`` argument is deprecated "
483
- "for both ``transpile`` and ``generate_preset_pass_manager`` as of Qiskit 1.3.0. "
482
+ message=f"Providing non-standard gates ({inst}) through the ``basis_gates`` "
483
+ "argument is deprecated for both ``transpile`` and ``generate_preset_pass_manager`` "
484
+ "as of Qiskit 1.3.0. "
484
485
  "It will be removed in Qiskit 2.0. The ``target`` parameter should be used instead. "
485
- "You can build a target instance using ``Target.from_configuration()`` and provide"
486
+ "You can build a target instance using ``Target.from_configuration()`` and provide "
486
487
  "custom gate definitions with the ``custom_name_mapping`` argument.",
487
488
  )
488
489
  skip_target = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qiskit
3
- Version: 1.3.0rc1
3
+ Version: 1.3.0rc2
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
@@ -37,12 +37,6 @@ Requires-Dist: python-dateutil>=2.8.0
37
37
  Requires-Dist: stevedore>=3.0.0
38
38
  Requires-Dist: typing-extensions
39
39
  Requires-Dist: symengine<0.14,>=0.11
40
- Provides-Extra: all
41
- Requires-Dist: qiskit[crosstalk-pass,csp-layout-pass,qasm3-import,visualization]; extra == "all"
42
- Provides-Extra: crosstalk-pass
43
- Requires-Dist: z3-solver>=4.7; extra == "crosstalk-pass"
44
- Provides-Extra: csp-layout-pass
45
- Requires-Dist: python-constraint>=1.4; extra == "csp-layout-pass"
46
40
  Provides-Extra: qasm3-import
47
41
  Requires-Dist: qiskit-qasm3-import>=0.1.0; extra == "qasm3-import"
48
42
  Provides-Extra: visualization
@@ -51,6 +45,12 @@ Requires-Dist: pydot; extra == "visualization"
51
45
  Requires-Dist: Pillow>=4.2.1; extra == "visualization"
52
46
  Requires-Dist: pylatexenc>=1.4; extra == "visualization"
53
47
  Requires-Dist: seaborn>=0.9.0; extra == "visualization"
48
+ Provides-Extra: crosstalk-pass
49
+ Requires-Dist: z3-solver>=4.7; extra == "crosstalk-pass"
50
+ Provides-Extra: csp-layout-pass
51
+ Requires-Dist: python-constraint>=1.4; extra == "csp-layout-pass"
52
+ Provides-Extra: all
53
+ Requires-Dist: qiskit[crosstalk-pass,csp-layout-pass,qasm3-import,visualization]; extra == "all"
54
54
 
55
55
  # Qiskit
56
56
 
@@ -1,10 +1,16 @@
1
+ qiskit-1.3.0rc2.dist-info/RECORD,,
2
+ qiskit-1.3.0rc2.dist-info/WHEEL,sha256=edS9s77x7eHkiDECY0nHWmN4fBaPkadPRYFqtq-IrFk,108
3
+ qiskit-1.3.0rc2.dist-info/entry_points.txt,sha256=5Xf0jdIYmLoQN2KoTrdTAfJm9FSd0-w4O0fckxQl7KQ,5669
4
+ qiskit-1.3.0rc2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
5
+ qiskit-1.3.0rc2.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
6
+ qiskit-1.3.0rc2.dist-info/METADATA,sha256=EV44bmC9FyDIKkQmjGQxI45pa3Bd8oP662zABXRsQ_Y,12877
1
7
  qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
2
8
  qiskit/__init__.py,sha256=MHSxG7bMhoESBIzoz9DdWdolCdPTwnwHJ80zjWMoRd4,7483
3
- qiskit/_accelerate.abi3.so,sha256=WMVfeSTLEZzMS0ERtdfQ2ACu3xlOPBeS6oWfmhuR5Hc,9517720
9
+ qiskit/_accelerate.abi3.so,sha256=jMNPU90TqtlvmpbkmBLxJCSEnSN3nC31Otus_24HwkI,9483488
4
10
  qiskit/user_config.py,sha256=I7QCF9W2IDpleWunxDjgYGySsVUlq57gfj_137o0Dac,10109
5
11
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
6
12
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
7
- qiskit/VERSION.txt,sha256=oF8wcE1KomvaQ5YkAnT5Eqcilzx2jXMriqOqa8SgqQA,9
13
+ qiskit/VERSION.txt,sha256=r95dG9fQIByf4Q7CIBmxKyjOzzsZL6L_Pfpaswfhnz0,9
8
14
  qiskit/visualization/circuit_visualization.py,sha256=6R-A96Uwb_RZOovsSB0LGVsC7lP5IhtLNp6VP2yVBwE,698
9
15
  qiskit/visualization/counts_visualization.py,sha256=rgoEqV0gucL9Auz33wf1LiRWR3yFQzjK94zzBF830iY,16791
10
16
  qiskit/visualization/pass_manager_visualization.py,sha256=19m4pUdYG0csZgQbuxfFP-zfoVGnk0pJr0HVToD1Y04,10886
@@ -153,7 +159,7 @@ qiskit/transpiler/passes/optimization/template_optimization.py,sha256=biZ_UD1AJc
153
159
  qiskit/transpiler/passes/optimization/optimize_1q_decomposition.py,sha256=UMrjcUB5cbHCuuSTp6kA8664IBV1R7WwLBWaKj_PjHs,9951
154
160
  qiskit/transpiler/passes/optimization/optimize_cliffords.py,sha256=GXX8c_M1i4I6l6sCbftGpZpjXROL4arLbH6_l1hWSBE,3221
155
161
  qiskit/transpiler/passes/optimization/optimize_annotated.py,sha256=3lGbhP_KwOgM8qfkkqxIf13T80h55JVwn3nqoPD3kaw,18785
156
- qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=bzKn4TmdHDJ_z0PgPKvVhVCdZ7o59oGOBG7J3enGKl4,5354
162
+ qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=nEDNl8wbg95eAhD_TpZRvYLk7GwNfSr5S7bWoJgQFNM,5610
157
163
  qiskit/transpiler/passes/optimization/reset_after_measure_simplification.py,sha256=2PZ_1lheWvq8Y9ualZjn-qIzHH6dnX2BMUtjOir-efs,2011
158
164
  qiskit/transpiler/passes/optimization/optimize_1q_commutation.py,sha256=svyl0lMrgv0nGm5F59Yc-fgQXuJ2SngNmi_v6t6iZMQ,10315
159
165
  qiskit/transpiler/passes/optimization/template_matching/template_matching.py,sha256=Rmry8mO4rgB1uWvQ4UC7XGVjh53VT8eR-uQzRO3o9Xs,17655
@@ -185,7 +191,7 @@ qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=WqMhSA0kBXjMgE7weLNp-Jq
185
191
  qiskit/transpiler/passes/synthesis/__init__.py,sha256=VYO9Sl_SJyoZ_bLronrkvK9u8kL-LW9G93LbWyWNEaM,925
186
192
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=LnvGzGJ8Q5gSPKSJNmJ7fvnUub8lzG5iGGTqOTODpes,30806
187
193
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Q1r-52HMETK_7iWTMmJKGU39rNws-MrmGDHh7TgQVj4,1407
188
- qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=BMXJQAoNovO28dfCk7Yx0oR5cKZjOYJIDF-gEHoItoI,40580
194
+ qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=rTORc72gdQhty_0XE8VMESznuRbNiDdAp2O4QfCZl74,40585
189
195
  qiskit/transpiler/passes/synthesis/unitary_synthesis.py,sha256=0Y97BlIvXgR1-PoQscwGHFiYDR8fyT2S1R9DMLQa-30,45663
190
196
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=SDgHqcCHR0hON50ckSHQDrVnBzOc-I7hYibE6r6oaB8,5343
191
197
  qiskit/transpiler/passes/routing/__init__.py,sha256=SHAsTgVHmWlf1wp9WirLqN5kz9HOK-RkwjOxX4qzMMQ,942
@@ -214,7 +220,7 @@ qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=X5YkxVycMGDbz
214
220
  qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=H94fshiPOA8c-M0WfkvV3LmjdgRbQYWbi7yP8PgTl08,43969
215
221
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=emrcxdh3Rnv5pyAo5WuMJlY3tfz6WnkKJlGao7vSYAI,4277
216
222
  qiskit/transpiler/preset_passmanagers/__init__.py,sha256=i6t27h2cHewTwN6g8JAyR98obTTP9Aimzqdl2SRdiwQ,2758
217
- qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=P7-8j2mbdWrqwDhPNCy-va_Q9Lzhc8jUUUs4FLkO9CM,30850
223
+ qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=oxkjpVKJ0Dup3eKhn4LRXCFGlqnmoERc28C_pC2xKDE,30890
218
224
  qiskit/transpiler/preset_passmanagers/level1.py,sha256=15OG8az6JecM-3CjyFNgIrTL8HW_2hiFRmoZvpu8c_k,4806
219
225
  qiskit/transpiler/preset_passmanagers/common.py,sha256=_y0ABya647oTEbl8s8EcnXr8bInYVztN7BCnB5iFjRk,26522
220
226
  qiskit/transpiler/preset_passmanagers/level2.py,sha256=Bt0EAyreXQb5cxAR6JF_4XoieaJVwi2qO5UyxYSHZiY,4731
@@ -301,7 +307,7 @@ qiskit/circuit/library/blueprintcircuit.py,sha256=Iqh8gGTfAHwBzeCW1Iy1foUnBBCLAD
301
307
  qiskit/circuit/library/graph_state.py,sha256=bOCAj8qsC7k-OS6qWkhUH8nBBd2I5uKOkrzLh2Aek1g,6113
302
308
  qiskit/circuit/library/iqp.py,sha256=0NtQQFsp2HcdbPGkIzjugQ6ym6uow0IOHX_-mTvmrEk,5754
303
309
  qiskit/circuit/library/fourier_checking.py,sha256=h81zaCc4AWF3luFyy8stGoU-UWcubP-Srqs92duqDQw,6252
304
- qiskit/circuit/library/__init__.py,sha256=AUVh1_a8ia9OHV09MGakHrKXpQYLV9lxT4o-kRCFvHU,15300
310
+ qiskit/circuit/library/__init__.py,sha256=jo55p9TvRYOO-qlNanHILFsYF1gryw5J8d5zuW7n9kA,15885
305
311
  qiskit/circuit/library/quantum_volume.py,sha256=YsK0LdG0aofbR9RTJ46EpdN_eqTICDF4Zs9kPE-XS1c,6614
306
312
  qiskit/circuit/library/phase_estimation.py,sha256=Sc5SjPTOjuqkO-liA5iybqzjEfMJyMbMlFfnOwhPplU,6456
307
313
  qiskit/circuit/library/overlap.py,sha256=JTSg9L6lMKL4xnatIWnQupb8GJYJrDV-DM8wXJsjjhU,7085
@@ -354,7 +360,7 @@ qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=h0A_2Q
354
360
  qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=MdHBDzhXIg5G0ePIFCVlBAAIr_inngSp4i2ElDukRvI,7456
355
361
  qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=PRrSLxGAtAMm-9L6UIFnL3ta0NSYUIhEklpf_i9bE5s,743
356
362
  qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=LSSf_JNjtslMGYDfoykZzrZcp-Cu2EqgG_rTyfRIiE4,6035
357
- qiskit/circuit/library/arithmetic/adders/adder.py,sha256=nXr5arh1aX2Vkh_IVD3bY3KAd336_kCojDc_wpmzRo4,6664
363
+ qiskit/circuit/library/arithmetic/adders/adder.py,sha256=nE-I8_yAB7_CLSIIm_LcRH-_r72wVnd5N9JnlSilc9Q,6669
358
364
  qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=ie_IV_oX4axsjJyI6tdr0p69w28pdvBBrxlOzxuPBNY,6967
359
365
  qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=vRtcHF2PRcyK_lfBQFqsWlpeaGwkcK3PK1KeduHvfOE,672
360
366
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=oJIWVc2wFLz-GbU06jurKU3xcyxWdd7AbsH7SVMu0-c,6850
@@ -500,7 +506,7 @@ qiskit/providers/providerutils.py,sha256=yz5irsmPJAFcbiZsWi24Yp96SWQUIUuisK3r3Aq
500
506
  qiskit/providers/provider.py,sha256=he8imx5J_XiElFfaWPbjDYPx2xuTR54G9l84iRFQ-mA,3182
501
507
  qiskit/providers/jobstatus.py,sha256=KZH3Dgcg6Gk__lkfOhTkDY0kCrO07CnR9Mqrgp-_JnU,990
502
508
  qiskit/providers/job.py,sha256=bl452OQlamT98hbHNI6l9F6pFoLayMvR4M49p_pYq80,5048
503
- qiskit/providers/__init__.py,sha256=ZpN-CdBhJhc8Uq7CoWmVC4xetxfWVcp2WxaRsnta4Qc,35464
509
+ qiskit/providers/__init__.py,sha256=jzxclSA7PaP6bdMO_Qvqg0kSHIXQqxtGY6jnbSOqYxw,35468
504
510
  qiskit/providers/exceptions.py,sha256=cXxlril0FQI0suiLBUlBQmtBAzhFrvEZRAo5iV4CFFM,1169
505
511
  qiskit/providers/backend_compat.py,sha256=E_vtTyuTWVmQzMNtoT0Dj8wOc9IVOll6nUfr9ahhomA,19666
506
512
  qiskit/providers/fake_provider/fake_1q.py,sha256=pzBYc48EvR1-9OfdivBMPBF8VHD6uSgCP2pJNAyYN4w,3102
@@ -710,7 +716,7 @@ qiskit/primitives/statevector_estimator.py,sha256=JwxjQQQG0kH6r457E8AMTM3veQmpvo
710
716
  qiskit/primitives/statevector_sampler.py,sha256=7IkvHKw0sPsuKPzjHb_b4TyA0ONc0Uabh3M505TX0hY,10993
711
717
  qiskit/primitives/__init__.py,sha256=HvNeFcnzLd3yH34dB3lul7xHFKEg087TUHfq3vMsWS8,16899
712
718
  qiskit/primitives/primitive_job.py,sha256=qImFX0DlKQCQqPe_YOLV4narEa2sU_LAY4KArDh1GwI,2617
713
- qiskit/primitives/utils.py,sha256=d5B2RvCa_vN7wFvpTbEpyxBZ7LiIq262tXXe6IR5MUs,8347
719
+ qiskit/primitives/utils.py,sha256=32gJvSOdFOh08DLlUBvZ2js4ijkrKk2vBGHViZHd20s,8346
714
720
  qiskit/primitives/backend_sampler.py,sha256=7V3-oWVNWS-UUQp2aI19NKFHgD-q1Y9qudmu-YNQA1Y,8272
715
721
  qiskit/primitives/estimator.py,sha256=Y7bxOSDPmZ5L9Ut-Y48SJtP0iT1maojsnFhpBgyEM1w,6734
716
722
  qiskit/primitives/sampler.py,sha256=H2sgcx66xTZsodunf4CpfdZ12aVLLNUYHjR7VmaUkj0,5861
@@ -816,7 +822,7 @@ qiskit/quantum_info/operators/channel/kraus.py,sha256=P_pB739LfvC9n13L9LwMVzLXLm
816
822
  qiskit/quantum_info/operators/channel/chi.py,sha256=uyEetmFAOZaft22AfhNPrUIPfdNXDRnXkxBw4jSsouM,7782
817
823
  qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=T8ohen29CZUyrnAWvt_uRpu_ETU7w3P1HfR9U5oVKWY,13981
818
824
  qiskit/quantum_info/states/stabilizerstate.py,sha256=XX2iNbTXtyelFOc4smcFz1nqytgcJdYoDzX__e4T-AI,29713
819
- qiskit/quantum_info/states/statevector.py,sha256=SzC5VI6yx7JLfS4HnrNTfBYV2kfj4jPxcjRMgUXQfTw,36806
825
+ qiskit/quantum_info/states/statevector.py,sha256=t1g8uhLhuKxXImWJuH2Fp3KyyLML8Z9mU8sA1o_j4tE,36811
820
826
  qiskit/quantum_info/states/__init__.py,sha256=Zepc7tCs93UIRVkLJYks3FH3pCoIe48f-rVtQ0X6qoQ,897
821
827
  qiskit/quantum_info/states/random.py,sha256=oxQWWdCpZVxTnbrBUfdRodVKhRhhFD-pW4zcxUt5dM0,5062
822
828
  qiskit/quantum_info/states/measures.py,sha256=9YvouvJ5I9D8_BZBe3oiyrQwdtOIapV12bhCYCuWZUo,9753
@@ -828,9 +834,3 @@ qiskit/compiler/__init__.py,sha256=Far4-zXOyDGCqdNmFP4Q8zV47meApMw6sbIdd1t_wM4,9
828
834
  qiskit/compiler/assembler.py,sha256=nsF7XRgHJVgBrJ5BIj44YsGpNsN5OpqvTYCrGVl9IlY,27813
829
835
  qiskit/compiler/transpiler.py,sha256=dJ_MpUw1COntDag6pefwoVB09zk4sg-5taNEaKiQzO8,26504
830
836
  qiskit/compiler/scheduler.py,sha256=RYwAaSym3Y4GwRhbx356FtsvF_JN_rhOLwKP84nUp9E,4532
831
- qiskit-1.3.0rc1.dist-info/RECORD,,
832
- qiskit-1.3.0rc1.dist-info/WHEEL,sha256=s8FAQ446cYjeqS8A6ZH1rVTZMHzfBmUKZG3Ychc_lhY,108
833
- qiskit-1.3.0rc1.dist-info/entry_points.txt,sha256=5Xf0jdIYmLoQN2KoTrdTAfJm9FSd0-w4O0fckxQl7KQ,5669
834
- qiskit-1.3.0rc1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
835
- qiskit-1.3.0rc1.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
836
- qiskit-1.3.0rc1.dist-info/METADATA,sha256=UVN5eR3xeqOk1K41cLSRwjBB4BObCtc4Q95D67au2_w,12877
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-abi3-macosx_10_9_x86_64
5
5