qiskit 1.3.0rc1__cp39-abi3-win32.whl → 1.3.1__cp39-abi3-win32.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.
Files changed (33) hide show
  1. qiskit/VERSION.txt +1 -1
  2. qiskit/_accelerate.pyd +0 -0
  3. qiskit/circuit/add_control.py +110 -92
  4. qiskit/circuit/library/__init__.py +37 -10
  5. qiskit/circuit/library/arithmetic/adders/adder.py +30 -5
  6. qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py +1 -1
  7. qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py +1 -1
  8. qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py +1 -1
  9. qiskit/circuit/library/arithmetic/multipliers/multiplier.py +9 -0
  10. qiskit/primitives/utils.py +1 -1
  11. qiskit/providers/__init__.py +2 -2
  12. qiskit/qpy/__init__.py +5 -5
  13. qiskit/quantum_info/operators/channel/chi.py +9 -9
  14. qiskit/quantum_info/operators/channel/choi.py +9 -9
  15. qiskit/quantum_info/operators/channel/ptm.py +9 -9
  16. qiskit/quantum_info/operators/channel/quantum_channel.py +3 -3
  17. qiskit/quantum_info/operators/channel/stinespring.py +9 -9
  18. qiskit/quantum_info/operators/channel/superop.py +5 -9
  19. qiskit/quantum_info/states/densitymatrix.py +17 -15
  20. qiskit/quantum_info/states/stabilizerstate.py +7 -6
  21. qiskit/quantum_info/states/statevector.py +15 -7
  22. qiskit/transpiler/passes/basis/decompose.py +24 -4
  23. qiskit/transpiler/passes/optimization/consolidate_blocks.py +10 -3
  24. qiskit/transpiler/passes/optimization/inverse_cancellation.py +2 -0
  25. qiskit/transpiler/passes/synthesis/high_level_synthesis.py +8 -9
  26. qiskit/transpiler/passes/synthesis/hls_plugins.py +89 -21
  27. qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py +4 -3
  28. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/METADATA +18 -18
  29. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/RECORD +33 -33
  30. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/WHEEL +1 -1
  31. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/entry_points.txt +1 -1
  32. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/LICENSE.txt +0 -0
  33. {qiskit-1.3.0rc1.dist-info → qiskit-1.3.1.dist-info}/top_level.txt +0 -0
@@ -263,11 +263,12 @@ Pauli Evolution Synthesis
263
263
  - Targeted connectivity
264
264
  * - ``"rustiq"``
265
265
  - :class:`~.PauliEvolutionSynthesisRustiq`
266
- - use a diagonalizing Clifford per Pauli term
266
+ - use the synthesis method from `Rustiq circuit synthesis library
267
+ <https://github.com/smartiel/rustiq-core>`_
267
268
  - all-to-all
268
269
  * - ``"default"``
269
270
  - :class:`~.PauliEvolutionSynthesisDefault`
270
- - use ``rustiq_core`` synthesis library
271
+ - use a diagonalizing Clifford per Pauli term
271
272
  - all-to-all
272
273
 
273
274
  .. autosummary::
@@ -299,6 +300,10 @@ Modular Adder Synthesis
299
300
  - :class:`.ModularAdderSynthesisD00`
300
301
  - 0
301
302
  - a QFT-based adder
303
+ * - ``"default"``
304
+ - :class:`~.ModularAdderSynthesisDefault`
305
+ - any
306
+ - chooses the best algorithm based on the ancillas available
302
307
 
303
308
  .. autosummary::
304
309
  :toctree: ../stubs/
@@ -306,6 +311,7 @@ Modular Adder Synthesis
306
311
  ModularAdderSynthesisC04
307
312
  ModularAdderSynthesisD00
308
313
  ModularAdderSynthesisV95
314
+ ModularAdderSynthesisDefault
309
315
 
310
316
  Half Adder Synthesis
311
317
  ''''''''''''''''''''
@@ -329,6 +335,10 @@ Half Adder Synthesis
329
335
  - :class:`.HalfAdderSynthesisD00`
330
336
  - 0
331
337
  - a QFT-based adder
338
+ * - ``"default"``
339
+ - :class:`~.HalfAdderSynthesisDefault`
340
+ - any
341
+ - chooses the best algorithm based on the ancillas available
332
342
 
333
343
  .. autosummary::
334
344
  :toctree: ../stubs/
@@ -336,6 +346,7 @@ Half Adder Synthesis
336
346
  HalfAdderSynthesisC04
337
347
  HalfAdderSynthesisD00
338
348
  HalfAdderSynthesisV95
349
+ HalfAdderSynthesisDefault
339
350
 
340
351
  Full Adder Synthesis
341
352
  ''''''''''''''''''''
@@ -355,12 +366,17 @@ Full Adder Synthesis
355
366
  - :class:`.FullAdderSynthesisV95`
356
367
  - :math:`n-1`, for :math:`n`-bit numbers
357
368
  - a ripple-carry adder
369
+ * - ``"default"``
370
+ - :class:`~.FullAdderSynthesisDefault`
371
+ - any
372
+ - chooses the best algorithm based on the ancillas available
358
373
 
359
374
  .. autosummary::
360
375
  :toctree: ../stubs/
361
376
 
362
377
  FullAdderSynthesisC04
363
378
  FullAdderSynthesisV95
379
+ FullAdderSynthesisDefault
364
380
 
365
381
 
366
382
  Multiplier Synthesis
@@ -375,7 +391,7 @@ Multiplier Synthesis
375
391
  - Description
376
392
  * - ``"cumulative"``
377
393
  - :class:`.MultiplierSynthesisH18`
378
- - depending on the :class:`.AdderGate` used
394
+ - depending on the :class:`.HalfAdderGate` used
379
395
  - a cumulative adder based on controlled adders
380
396
  * - ``"qft"``
381
397
  - :class:`.MultiplierSynthesisR17`
@@ -1211,10 +1227,26 @@ class ModularAdderSynthesisDefault(HighLevelSynthesisPlugin):
1211
1227
  if not isinstance(high_level_object, ModularAdderGate):
1212
1228
  return None
1213
1229
 
1214
- if options.get("num_clean_ancillas", 0) >= 1:
1215
- return adder_ripple_c04(high_level_object.num_state_qubits, kind="fixed")
1230
+ # For up to 5 qubits, the QFT-based adder is best
1231
+ if high_level_object.num_state_qubits <= 5:
1232
+ decomposition = ModularAdderSynthesisD00().run(
1233
+ high_level_object, coupling_map, target, qubits, **options
1234
+ )
1235
+ if decomposition is not None:
1236
+ return decomposition
1216
1237
 
1217
- return adder_qft_d00(high_level_object.num_state_qubits, kind="fixed")
1238
+ # Otherwise, the following decomposition is best (if there are enough ancillas)
1239
+ if (
1240
+ decomposition := ModularAdderSynthesisC04().run(
1241
+ high_level_object, coupling_map, target, qubits, **options
1242
+ )
1243
+ ) is not None:
1244
+ return decomposition
1245
+
1246
+ # Otherwise, use the QFT-adder again
1247
+ return ModularAdderSynthesisD00().run(
1248
+ high_level_object, coupling_map, target, qubits, **options
1249
+ )
1218
1250
 
1219
1251
 
1220
1252
  class ModularAdderSynthesisC04(HighLevelSynthesisPlugin):
@@ -1263,8 +1295,8 @@ class ModularAdderSynthesisV95(HighLevelSynthesisPlugin):
1263
1295
 
1264
1296
  num_state_qubits = high_level_object.num_state_qubits
1265
1297
 
1266
- # for more than 1 state qubit, we need an ancilla
1267
- if num_state_qubits > 1 > options.get("num_clean_ancillas", 1):
1298
+ # The synthesis method needs n-1 clean ancilla qubits
1299
+ if num_state_qubits - 1 > options.get("num_clean_ancillas", 0):
1268
1300
  return None
1269
1301
 
1270
1302
  return adder_ripple_v95(num_state_qubits, kind="fixed")
@@ -1308,10 +1340,26 @@ class HalfAdderSynthesisDefault(HighLevelSynthesisPlugin):
1308
1340
  if not isinstance(high_level_object, HalfAdderGate):
1309
1341
  return None
1310
1342
 
1311
- if options.get("num_clean_ancillas", 0) >= 1:
1312
- return adder_ripple_c04(high_level_object.num_state_qubits, kind="half")
1343
+ # For up to 3 qubits, ripple_v95 is better (if there are enough ancilla qubits)
1344
+ if high_level_object.num_state_qubits <= 3:
1345
+ decomposition = HalfAdderSynthesisV95().run(
1346
+ high_level_object, coupling_map, target, qubits, **options
1347
+ )
1348
+ if decomposition is not None:
1349
+ return decomposition
1313
1350
 
1314
- return adder_qft_d00(high_level_object.num_state_qubits, kind="half")
1351
+ # The next best option is to use ripple_c04 (if there are enough ancilla qubits)
1352
+ if (
1353
+ decomposition := HalfAdderSynthesisC04().run(
1354
+ high_level_object, coupling_map, target, qubits, **options
1355
+ )
1356
+ ) is not None:
1357
+ return decomposition
1358
+
1359
+ # The QFT-based adder does not require ancilla qubits and should always succeed
1360
+ return HalfAdderSynthesisD00().run(
1361
+ high_level_object, coupling_map, target, qubits, **options
1362
+ )
1315
1363
 
1316
1364
 
1317
1365
  class HalfAdderSynthesisC04(HighLevelSynthesisPlugin):
@@ -1359,8 +1407,8 @@ class HalfAdderSynthesisV95(HighLevelSynthesisPlugin):
1359
1407
 
1360
1408
  num_state_qubits = high_level_object.num_state_qubits
1361
1409
 
1362
- # for more than 1 state qubit, we need an ancilla
1363
- if num_state_qubits > 1 > options.get("num_clean_ancillas", 1):
1410
+ # The synthesis method needs n-1 clean ancilla qubits
1411
+ if num_state_qubits - 1 > options.get("num_clean_ancillas", 0):
1364
1412
  return None
1365
1413
 
1366
1414
  return adder_ripple_v95(num_state_qubits, kind="half")
@@ -1380,18 +1428,38 @@ class HalfAdderSynthesisD00(HighLevelSynthesisPlugin):
1380
1428
  return adder_qft_d00(high_level_object.num_state_qubits, kind="half")
1381
1429
 
1382
1430
 
1383
- class FullAdderSynthesisC04(HighLevelSynthesisPlugin):
1431
+ class FullAdderSynthesisDefault(HighLevelSynthesisPlugin):
1384
1432
  """A ripple-carry adder with a carry-in and a carry-out bit.
1385
1433
 
1386
- This plugin name is:``FullAdder.ripple_c04`` which can be used as the key on
1434
+ This plugin name is:``FullAdder.default`` which can be used as the key on
1387
1435
  an :class:`~.HLSConfig` object to use this method with :class:`~.HighLevelSynthesis`.
1436
+ """
1388
1437
 
1389
- This plugin requires at least one clean auxiliary qubit.
1438
+ def run(self, high_level_object, coupling_map=None, target=None, qubits=None, **options):
1439
+ if not isinstance(high_level_object, FullAdderGate):
1440
+ return None
1390
1441
 
1391
- The plugin supports the following plugin-specific options:
1442
+ # FullAdderSynthesisC04 requires no ancilla qubits and returns better results
1443
+ # than FullAdderSynthesisV95 in all cases except for n=1.
1444
+ if high_level_object.num_state_qubits == 1:
1445
+ decomposition = FullAdderSynthesisV95().run(
1446
+ high_level_object, coupling_map, target, qubits, **options
1447
+ )
1448
+ if decomposition is not None:
1449
+ return decomposition
1450
+
1451
+ return FullAdderSynthesisC04().run(
1452
+ high_level_object, coupling_map, target, qubits, **options
1453
+ )
1392
1454
 
1393
- * ``num_clean_ancillas``: The number of clean auxiliary qubits available.
1394
1455
 
1456
+ class FullAdderSynthesisC04(HighLevelSynthesisPlugin):
1457
+ """A ripple-carry adder with a carry-in and a carry-out bit.
1458
+
1459
+ This plugin name is:``FullAdder.ripple_c04`` which can be used as the key on
1460
+ an :class:`~.HLSConfig` object to use this method with :class:`~.HighLevelSynthesis`.
1461
+
1462
+ This plugin requires no auxiliary qubits.
1395
1463
  """
1396
1464
 
1397
1465
  def run(self, high_level_object, coupling_map=None, target=None, qubits=None, **options):
@@ -1408,7 +1476,7 @@ class FullAdderSynthesisV95(HighLevelSynthesisPlugin):
1408
1476
  an :class:`~.HLSConfig` object to use this method with :class:`~.HighLevelSynthesis`.
1409
1477
 
1410
1478
  For an adder on 2 registers with :math:`n` qubits each, this plugin requires at
1411
- least :math:`n-1` clean auxiliary qubit.
1479
+ least :math:`n-1` clean auxiliary qubits.
1412
1480
 
1413
1481
  The plugin supports the following plugin-specific options:
1414
1482
 
@@ -1421,8 +1489,8 @@ class FullAdderSynthesisV95(HighLevelSynthesisPlugin):
1421
1489
 
1422
1490
  num_state_qubits = high_level_object.num_state_qubits
1423
1491
 
1424
- # for more than 1 state qubit, we need an ancilla
1425
- if num_state_qubits > 1 > options.get("num_clean_ancillas", 1):
1492
+ # The synthesis method needs n-1 clean ancilla qubits
1493
+ if num_state_qubits - 1 > options.get("num_clean_ancillas", 0):
1426
1494
  return None
1427
1495
 
1428
1496
  return adder_ripple_v95(num_state_qubits, kind="full")
@@ -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.1
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
 
@@ -120,13 +120,13 @@ we use `measure_all(inplace=False)` to get a copy of the circuit in which all th
120
120
  qc_measured = qc_example.measure_all(inplace=False)
121
121
 
122
122
  # 3. Execute using the Sampler primitive
123
- from qiskit.primitives.sampler import Sampler
124
- sampler = Sampler()
125
- job = sampler.run(qc_measured, shots=1000)
123
+ from qiskit.primitives import StatevectorSampler
124
+ sampler = StatevectorSampler()
125
+ job = sampler.run([qc_measured], shots=1000)
126
126
  result = job.result()
127
- print(f" > Quasi probability distribution: {result.quasi_dists}")
127
+ print(f" > Counts: {result[0].data["meas"].get_counts()}")
128
128
  ```
129
- Running this will give an outcome similar to `{0: 0.497, 7: 0.503}` which is `000` 50% of the time and `111` 50% of the time up to statistical fluctuations.
129
+ Running this will give an outcome similar to `{'000': 497, '111': 503}` which is `000` 50% of the time and `111` 50% of the time up to statistical fluctuations.
130
130
  To illustrate the power of Estimator, we now use the quantum information toolbox to create the operator $XXY+XYX+YXX-YYY$ and pass it to the `run()` function, along with our quantum circuit. Note the Estimator requires a circuit _**without**_ measurement, so we use the `qc_example` circuit we created earlier.
131
131
 
132
132
  ```python
@@ -135,17 +135,17 @@ from qiskit.quantum_info import SparsePauliOp
135
135
  operator = SparsePauliOp.from_list([("XXY", 1), ("XYX", 1), ("YXX", 1), ("YYY", -1)])
136
136
 
137
137
  # 3. Execute using the Estimator primitive
138
- from qiskit.primitives import Estimator
139
- estimator = Estimator()
140
- job = estimator.run(qc_example, operator, shots=1000)
138
+ from qiskit.primitives import StatevectorEstimator
139
+ estimator = StatevectorEstimator()
140
+ job = estimator.run([(qc_example, operator)], precision=1e-3)
141
141
  result = job.result()
142
- print(f" > Expectation values: {result.values}")
142
+ print(f" > Expectation values: {result[0].data.evs}")
143
143
  ```
144
144
 
145
145
  Running this will give the outcome `4`. For fun, try to assign a value of +/- 1 to each single-qubit operator X and Y
146
146
  and see if you can achieve this outcome. (Spoiler alert: this is not possible!)
147
147
 
148
- Using the Qiskit-provided `qiskit.primitives.Sampler` and `qiskit.primitives.Estimator` will not take you very far.
148
+ Using the Qiskit-provided `qiskit.primitives.StatevectorSampler` and `qiskit.primitives.StatevectorEstimator` will not take you very far.
149
149
  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.
150
150
  However, running a quantum circuit on hardware requires rewriting to the basis gates and connectivity of the quantum hardware.
151
151
  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.
@@ -160,7 +160,7 @@ qc_transpiled = transpile(qc_example, basis_gates = ['cz', 'sx', 'rz'], coupling
160
160
  ### Executing your code on real quantum hardware
161
161
 
162
162
  Qiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides a compatible interface.
163
- The best way to use Qiskit is with a runtime environment that provides optimized implementations of `sampler` and `estimator` for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements `qiskit.primitives.BaseSampler` and `qiskit.primitives.BaseEstimator` interfaces. For example,
163
+ The best way to use Qiskit is with a runtime environment that provides optimized implementations of `sampler` and `estimator` for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements `qiskit.primitives.BaseSamplerV2` and `qiskit.primitives.BaseEstimatorV2` interfaces. For example,
164
164
  some packages that provide implementations of a runtime primitive implementation are:
165
165
 
166
166
  * https://github.com/Qiskit/qiskit-ibm-runtime
@@ -1,6 +1,6 @@
1
- qiskit/VERSION.txt,sha256=9ZVK4HfUDY65X5uAyfXYCem-YxD-V1MuRapLURHiVL4,10
1
+ qiskit/VERSION.txt,sha256=OVDuMNIw7J7CEWZdx8nDcmGG8JMl8X0JuW0gd61LzGU,7
2
2
  qiskit/__init__.py,sha256=rw44R_7d2DNPDAhHntvpEYC-uH61EZnOI3Lcwpa74w8,7629
3
- qiskit/_accelerate.pyd,sha256=pzQ32GKTFM856LEZCEP9Le2C7DDjxQfw7fWQPtzNgBA,8514048
3
+ qiskit/_accelerate.pyd,sha256=RXBdMNopR56XFn6wwGXqG4JcMr-ncW5wxwt_GXYrnO8,8509440
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=IKxY7cK1EX-GqkvPE4Lsss1NMoEcYie6Qq8hkNOtLJA,10371
@@ -14,7 +14,7 @@ qiskit/circuit/__init__.py,sha256=MEbmqje6kA6LfC-lzwJSBLfbVQ-AB21PXfxN8YgcPxg,62
14
14
  qiskit/circuit/_classical_resource_map.py,sha256=HhScd6Mjs74JEOXstQUTDicY9o74RM_B6EjnbrZeho8,7130
15
15
  qiskit/circuit/_standard_gates_commutations.py,sha256=AvuXIxBhO1OmMB3FOhxOJGi25t-ID2SBBMdPbFgrbjA,102855
16
16
  qiskit/circuit/_utils.py,sha256=MxIpuBs6ZsdfMDxT6ZCFgskp_32FbK7zVHp7sxmzoCQ,6614
17
- qiskit/circuit/add_control.py,sha256=ySXzDnukN1zOvRD45xpKMGa3TaWeUmjzMyoSgDEKjwI,11643
17
+ qiskit/circuit/add_control.py,sha256=PAQQHQhT3tvfhM125JQe3updbQ_NOEZdEAutkt2qZwI,10600
18
18
  qiskit/circuit/annotated_operation.py,sha256=RNxov21cwV6HiQRE5-wD2svq1wUuwNwrvsC8bSY1ME4,10766
19
19
  qiskit/circuit/barrier.py,sha256=svmfvEQ7dIEKLApfJjpfPfueXJQCe6DNX4qaVRxIRN8,1766
20
20
  qiskit/circuit/bit.py,sha256=k4P7vzLUdy9gCliU-7NHjMS9Uli14IeDbeFb3UzN4fs,3218
@@ -70,7 +70,7 @@ qiskit/circuit/controlflow/for_loop.py,sha256=kbZsuk0KNYA9HOTi8t1qCfm25oGURPyRsk
70
70
  qiskit/circuit/controlflow/if_else.py,sha256=0-PlHuxzAhECIj1XeLQU87_FzqZrGmmTikjZAbfVXtE,23047
71
71
  qiskit/circuit/controlflow/switch_case.py,sha256=zCkhdTMqd6mvW0KIsBkV19Fr84myEj_mf3J28tp_2TI,18171
72
72
  qiskit/circuit/controlflow/while_loop.py,sha256=gH5f1JC_JIakpk_k7cdVGXP93vxEpLfVXhDoo1_UCwo,6210
73
- qiskit/circuit/library/__init__.py,sha256=x3K1T5vOAqiDsh1f4Zy4N9nzkNyWzXEQH3U-4CMRAo8,15941
73
+ qiskit/circuit/library/__init__.py,sha256=rxhN71i-4DS4KXrhqlZpLxyvQCQ6NmkD7rSVAz0LVGQ,16553
74
74
  qiskit/circuit/library/blueprintcircuit.py,sha256=V5BwicE0HKj4XFxA8pbFPIS60MeJB5xFUfcHnRIs5HY,10218
75
75
  qiskit/circuit/library/fourier_checking.py,sha256=kQYdvHUO12pXlaeBRqav3sct_lxkRFF2U168PFmK8Pk,6410
76
76
  qiskit/circuit/library/graph_state.py,sha256=ArLTXMRMAO1R194XErqZJnvcy0wV17n4H10pbe-xqOM,6282
@@ -96,13 +96,13 @@ qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py,sha256=Y3O2Um343
96
96
  qiskit/circuit/library/arithmetic/quadratic_form.py,sha256=ZQqeIkHJw_rlzVaClGrBW0DgMymab7NcPlCopLVNy78,8288
97
97
  qiskit/circuit/library/arithmetic/weighted_adder.py,sha256=AUohqtGV0IR2reZU29YSDVo6kSMJoqncZNCEhBudvqM,13166
98
98
  qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=gHzRfBcGYvNiydkYuf42czLLnHmAaWeHUYaJ-Z07Hg8,761
99
- qiskit/circuit/library/arithmetic/adders/adder.py,sha256=RSAKw1mftpUuUFsGPWV4x7_d3tN4BdjYJi33dXvvzyU,6874
100
- qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=3HRsIx1n9H1Xi2rUqo1oNVd4Nhc4G4PaQBvLtCYLYtc,7579
101
- qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=LEWsXBo20GpHYRu0TkZj4R_mYfF-3DX8KEJr9xBGwL8,6164
102
- qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=vgQ5UEqbuVEEE7v3NElb24qTaolMChc5l7VCSwePjJk,5034
99
+ qiskit/circuit/library/arithmetic/adders/adder.py,sha256=YfBhUdpvrjpVJvadF-JyBoTGes6-2Mz5sm07BvgdywE,8122
100
+ qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=fLJkQDhvHW1Xcvww8DuDa8_NBy8-cKAz52BBgGU7vko,7583
101
+ qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=EWGCrS1DQYq-6tDjQRgWYpJ0Se3JSWBssLEyHCAInHk,6168
102
+ qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=U5OJAso7s4Y0oUuS4D18eZ7vmUC704eazVdyUBNpF2c,5038
103
103
  qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=Cw2e2xFpYZb1mB2bKiU38BAuZWIKfB7HdOVmqA3mrOY,689
104
104
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=BVYzcLL34f7KLW_2L61VBtuh9LIfXlmfW7JW6cAL4xs,6995
105
- qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=_bhW2WOM_Z-GB5RDNWMkGWecundkqAocZsjibP8Jqrk,7159
105
+ qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=k55s1CQU2PHKcNGwBiCoTN31Kq4NOw-L1Fx5t7Br20w,7610
106
106
  qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=BWyK6ou7_gqvG_aFzqk2cmsjaYljrhPb9V8eIeup8u0,6323
107
107
  qiskit/circuit/library/basis_change/__init__.py,sha256=NPfRl5EZurnELm_5BPwT48YWRAta2naePDbCvSDTSBk,563
108
108
  qiskit/circuit/library/basis_change/qft.py,sha256=983bkfwyl9VA5Xzrht2w0-4NnVsVcgpnkO0InbSTD6A,10942
@@ -293,7 +293,7 @@ qiskit/primitives/primitive_job.py,sha256=IhDsqtP3eYHi8ekW4ITM5EttrmQqm3qNYTeE7e
293
293
  qiskit/primitives/sampler.py,sha256=xQ7ys2fssrpvQNM4ppVr6pQ4Wsn33gIY838BljIeGb0,6023
294
294
  qiskit/primitives/statevector_estimator.py,sha256=7BabLm-RQNW9loEC7ygdhcQHJDGZ1DRhItsZYt1rZrc,7274
295
295
  qiskit/primitives/statevector_sampler.py,sha256=YNcbqCHMFwf1G-XwHNJBUBIlB_t92ECGMjG8-YmuVj0,11285
296
- qiskit/primitives/utils.py,sha256=tzEPj0ddxLI0swA3jPOh_ANN9TjCn1oYRmBl7zGTwac,8594
296
+ qiskit/primitives/utils.py,sha256=cFFsOEDRK8y0X7i_qcmshoDen3ufgPoUVo6u8VI744Y,8593
297
297
  qiskit/primitives/base/__init__.py,sha256=HZji4i_Lrf9KqcSufJwSNqe8Wt-c1RWmKzFeRNt8vxo,784
298
298
  qiskit/primitives/base/base_estimator.py,sha256=kpEXcE2Lx3YqVRxlBctjJI_T1RYnaapk3kMW7vd7VQ8,9016
299
299
  qiskit/primitives/base/base_primitive.py,sha256=TT7g3oFy9iIpzbeZxMLculQFBY9labxViTxbRQDtr-I,1314
@@ -315,7 +315,7 @@ qiskit/primitives/containers/pub_result.py,sha256=OQV7fy2W6ZeuZkVT56FjUFQXHoG7Y7
315
315
  qiskit/primitives/containers/sampler_pub.py,sha256=LQgkp3X_ERyrYTSwX_cecqLVWZU4v0lkT5tUoDbOmTg,6860
316
316
  qiskit/primitives/containers/sampler_pub_result.py,sha256=fkMyYsQPwDD-6FVfeVk06E2m81DyXjm5tZHju7y0wrk,2864
317
317
  qiskit/primitives/containers/shape.py,sha256=JQTms4horYzCNyR_HhEvLxvMyvV-zcDu9jwzNCOfthU,3995
318
- qiskit/providers/__init__.py,sha256=Dh1IR6jnyW-0JQHIr9S8MQwHyIC1c_T7-cZ9REZxpWc,36267
318
+ qiskit/providers/__init__.py,sha256=wCz2V5ehsu1R0Kgr0y3y9EQgu1yxUkaM57oQKh6IbPg,36271
319
319
  qiskit/providers/backend.py,sha256=fgWGmdrCYJgYnnneZKcUYjkjH8NRskib_TBhqNDPRcg,26091
320
320
  qiskit/providers/backend_compat.py,sha256=ylcPvMWgjzxBsWjKxRfEJ8jwXIupqr3o1i-McjpmwYU,20138
321
321
  qiskit/providers/exceptions.py,sha256=-bvWhJW0KXjIamvZP3xyUnlGovIr_eoFO5hQxy2_zQE,1214
@@ -429,7 +429,7 @@ qiskit/qobj/utils.py,sha256=lcn2b4gvt5j6xw_Gb0LEwzROzFJA9nka2n0O5DWhiUY,1355
429
429
  qiskit/qobj/converters/__init__.py,sha256=eouPijW91tEX8ptE86TbAOYw53VWNC8lqZpxe4O8LKY,709
430
430
  qiskit/qobj/converters/lo_config.py,sha256=Au6xQJpTzsnzWrQfcG0AeQQhfjGmOoFbnjK6QEqeoRU,7089
431
431
  qiskit/qobj/converters/pulse_instruction.py,sha256=_AiUUZ5xT4p65pAYMPD3RUbtpwBYMFuj1O-PVKRKhZA,31466
432
- qiskit/qpy/__init__.py,sha256=KdZeXUYv4l72W5Ilua5E-5u9Ineuyw0Tk2-SvkwwQUQ,64888
432
+ qiskit/qpy/__init__.py,sha256=BGdJuGrmsAFROxwuybrsj2Cmsld4oy88Oo0n9BvOXYE,64895
433
433
  qiskit/qpy/common.py,sha256=Xn99CjXUNg2kmvz49PoDpcp9uGP3_V00IWhO_HKzmAk,12608
434
434
  qiskit/qpy/exceptions.py,sha256=BX1ILW35oUPDmotmttybw2bY1IvUwziOVpsf7z_mIkY,1900
435
435
  qiskit/qpy/formats.py,sha256=J8_gNHZg_TUtA6qm-Zrq0rUWJY1g1nZ_b_gtEyu578I,11921
@@ -459,13 +459,13 @@ qiskit/quantum_info/operators/predicates.py,sha256=N0mthxvOsrPmIq0MjaQzEnixA6X6W
459
459
  qiskit/quantum_info/operators/random.py,sha256=8tkswigDimRYVJAGsf1_OoW_c0VnSemE3Wry4t4qmFA,5380
460
460
  qiskit/quantum_info/operators/scalar_op.py,sha256=WqvzXdIk7WrX4ukb8c-p7DID7SBNzv-Z3tBF5O0IcCg,9099
461
461
  qiskit/quantum_info/operators/channel/__init__.py,sha256=U_og7RQ29WKHTR1vC6rh-1GRhCQLwnUNf7BuU9aOuBE,969
462
- qiskit/quantum_info/operators/channel/chi.py,sha256=4hnlP9EERkN93YjVNWZJGllPToj03Kifn6hWZX8YGUo,7973
463
- qiskit/quantum_info/operators/channel/choi.py,sha256=rVjT5fiPiSK6W9i7U1SlHFDcTQz3npyhMAUrSMNw1lQ,8800
462
+ qiskit/quantum_info/operators/channel/chi.py,sha256=-vywQ9uIJRU9bTmdGvktXVxs-3Jn1VHNIUCqhjjOb7I,7852
463
+ qiskit/quantum_info/operators/channel/choi.py,sha256=ZBqZOoSQK_UK-r2stHyJYPmh6sUPuImkCEas4dengWE,8679
464
464
  qiskit/quantum_info/operators/channel/kraus.py,sha256=naGurQqQj9_wi_FOuCvR2xackUKnb1WuQaWD5u88WM4,13596
465
- qiskit/quantum_info/operators/channel/ptm.py,sha256=AuNbODSlDFOhbXsEiQdaoRLgWQfUJKc5yFtm_lSuh8E,8115
466
- qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=1GoZbOGUe_RACS-C11pfM2hS8LO3RD_zZiVPAPxzzyc,14329
467
- qiskit/quantum_info/operators/channel/stinespring.py,sha256=ZuYuvAT0dmOgVzwWezAt-ba94Q_6hpXXvuSCulgeMCo,11856
468
- qiskit/quantum_info/operators/channel/superop.py,sha256=422iJdFGoMGZWtFlAy0W2ZUNsMO_Pr-Yj_JuR5dLY-o,16236
465
+ qiskit/quantum_info/operators/channel/ptm.py,sha256=E2FdhMgA45arDMJyMbxELtxMEAxym8ws-u_9kWmCzJ8,7994
466
+ qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=k04g_p25BUYXwV-xOBwZDNrrJULeuK2_Q1QL5k8yrx0,14297
467
+ qiskit/quantum_info/operators/channel/stinespring.py,sha256=NPyYS0s7XANbzccyHcPihn8lYk3DPUk_dnlHXhwnHzM,11735
468
+ qiskit/quantum_info/operators/channel/superop.py,sha256=XlKTsusuVMos3djvYZ9rqlkHL_Mnf9r0ovCpC_s0bPs,16058
469
469
  qiskit/quantum_info/operators/channel/transformations.py,sha256=bt5R-Msdwf1QTncbDPwGPkliHpRZHnNZ78gfHzndEZg,18099
470
470
  qiskit/quantum_info/operators/dihedral/__init__.py,sha256=02VunTrkQrbCi5R2_yR4igvfx5IcVXogB9h5wpjPOM8,604
471
471
  qiskit/quantum_info/operators/dihedral/dihedral.py,sha256=1zHdgVLxl5EebRY4USHhSARNfvT4ywbWElRtSUGj_v4,20774
@@ -492,12 +492,12 @@ qiskit/quantum_info/operators/utils/anti_commutator.py,sha256=rTJvRxRxK1-CvCABRD
492
492
  qiskit/quantum_info/operators/utils/commutator.py,sha256=xGwTSrqUvlt93VLdKknmxx4xRKtHRAYmovRY-364gWk,993
493
493
  qiskit/quantum_info/operators/utils/double_commutator.py,sha256=ZyOLsHapKx7QUWCjGjbud_u0YefY-lnjzdzCc8HgpIQ,2054
494
494
  qiskit/quantum_info/states/__init__.py,sha256=nT27suyomny62ANAJI_5ISpI4zS1ygwYtgKJERiwbyo,925
495
- qiskit/quantum_info/states/densitymatrix.py,sha256=gQHRTwQ6IGwslib0I0IQtgTkDT7c6uk-e2bPkhZFUGM,33737
495
+ qiskit/quantum_info/states/densitymatrix.py,sha256=su714MJryVSFdOcMF9ZeH_hKmC5cZmMweiOWj6Hd2uY,33541
496
496
  qiskit/quantum_info/states/measures.py,sha256=BoULnQ-1d9_bHzH6X79wtP7zTxkeVKgV3vZ8aoMqqis,10041
497
497
  qiskit/quantum_info/states/quantum_state.py,sha256=ErmVJR0Quw5X00UAtvxsADd-vbWIycAA6gUcLRyOdPc,18277
498
498
  qiskit/quantum_info/states/random.py,sha256=OUZXAZ9qYhbB9LogfAPhSrBphwapK9aI44xerJqWKlo,5219
499
- qiskit/quantum_info/states/stabilizerstate.py,sha256=-StDch_tIIiD-z1zZJwD1aKvdHXHzy9tJiLAB_hq1UU,30486
500
- qiskit/quantum_info/states/statevector.py,sha256=9fK9PVkdBxduv5S49Dej4ugsot8goaDe72LFqWT26P4,37764
499
+ qiskit/quantum_info/states/stabilizerstate.py,sha256=u_YHziSK4RtfSK2ElpUg_k4-E4dgMuKVfrWfkdbU-Ls,30443
500
+ qiskit/quantum_info/states/statevector.py,sha256=NcXbCs-7ItyqTX8Okei8X1izCfDOSSPOl1C4phj0lIc,37762
501
501
  qiskit/quantum_info/states/utils.py,sha256=cujjjFSIzNjvRdZyCyJerf9K5aa0g95ebN1tx8Nbteg,9005
502
502
  qiskit/result/__init__.py,sha256=7KjootVBUTZFwdbpUMzxBfbcnNioU3w9-wGK1C7sHXk,1849
503
503
  qiskit/result/counts.py,sha256=ti18MUnObmfoTMpQoCiObwyCOFL9UWCJIsDquJj23M4,8418
@@ -627,7 +627,7 @@ qiskit/transpiler/passes/analysis/size.py,sha256=t2RnSg0MmdZTIowof3AlUWH2XvmTjf2
627
627
  qiskit/transpiler/passes/analysis/width.py,sha256=IfKX5ca9tKAcFa7rQE6YPLzUarCdCFzlGiOzKCr91S8,940
628
628
  qiskit/transpiler/passes/basis/__init__.py,sha256=tDBL0U1lnJN8LB8L_W-x0dbniB1X3_5VhB9qn5dJt3o,802
629
629
  qiskit/transpiler/passes/basis/basis_translator.py,sha256=oArrcNY6Gqc16v9y7qVlFxIzZC6uNA6nm4p1zJXnUjk,6299
630
- qiskit/transpiler/passes/basis/decompose.py,sha256=sK5NGUBHH-IXMrxPZbl_EjRpGEaJyvnCvu4DB6aHvL4,5098
630
+ qiskit/transpiler/passes/basis/decompose.py,sha256=DRWXSRRT6VHXG3ZXUYcbE4Z0pnrXNbjLybZOiqc8B5I,6274
631
631
  qiskit/transpiler/passes/basis/translate_parameterized.py,sha256=AUmO-DdFjSVv15CH8RBeAh8tm5wHiysKnBOCoDaPw2I,7600
632
632
  qiskit/transpiler/passes/basis/unroll_3q_or_more.py,sha256=Y2rOq2UBBDuIBpxbwf4JcEt_i1vfnvynDtOzFaVh9rs,3814
633
633
  qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=1A8sDywhKsBkObu4B4Og-3oTe4lknaTQhEn3GNbFxyY,4558
@@ -666,12 +666,12 @@ qiskit/transpiler/passes/optimization/collect_multiqubit_blocks.py,sha256=bFqmRq
666
666
  qiskit/transpiler/passes/optimization/commutation_analysis.py,sha256=3-dyfsqf4QOr0ZdNfAYwiDvFCFT6mtrH0M9rs0U4nIg,1837
667
667
  qiskit/transpiler/passes/optimization/commutative_cancellation.py,sha256=2z1ZOQAdshjhdTANPqXTy-ojx9F1SSCbqGxq_ucnHI8,3356
668
668
  qiskit/transpiler/passes/optimization/commutative_inverse_cancellation.py,sha256=IkvZoTUm5xsR3_YWZIufoZxP0XSuyBKnkFrEEGcGvks,5693
669
- qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=-pU6tQTwGXrcLvHmb4A1sNNDWA5AOt6lGCT5xd83XyU,5496
669
+ qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=MspJuijgrp4PyoTolmMxYNu553mfxpGbDSkhB-_1Tz0,5759
670
670
  qiskit/transpiler/passes/optimization/cx_cancellation.py,sha256=0e-7eMwdhy4NG6YllXUosWecPm1UwMQYngi-hyuuxak,2401
671
671
  qiskit/transpiler/passes/optimization/echo_rzx_weyl_decomposition.py,sha256=U-6Da8e2sh9oR7BghBcntnsnuB3BIDDMEZEtu59cUyE,7280
672
672
  qiskit/transpiler/passes/optimization/elide_permutations.py,sha256=k7CrGy5iKs15uI97GUCJOQKpBxzCk7sr9X8bNaxN-HE,4146
673
673
  qiskit/transpiler/passes/optimization/hoare_opt.py,sha256=xdSqEmWinuAVkgBGIiFNS-PB7NnzkSFwN-h_BugZOgE,16711
674
- qiskit/transpiler/passes/optimization/inverse_cancellation.py,sha256=LzBw1FzMgj5WeSnRjSxa0wqYBanvDYQLKV3un5kYdxU,3527
674
+ qiskit/transpiler/passes/optimization/inverse_cancellation.py,sha256=T_wrRl2TY_fp0kWXunap0AQwUV5-nR93OPOsTgDi_zQ,3619
675
675
  qiskit/transpiler/passes/optimization/normalize_rx_angle.py,sha256=AbnCL0yvtCp-4O1O8lpFzj8fSzMZ3QYG6gjmJI7uHAE,6404
676
676
  qiskit/transpiler/passes/optimization/optimize_1q_commutation.py,sha256=uwoaomez83bG7CgG078cJO55EIe5qjXEIESG4hjqAJU,10583
677
677
  qiskit/transpiler/passes/optimization/optimize_1q_decomposition.py,sha256=YgzGFQw_D1aCDtCHGbmq7GHm9KLCx9SWXIaDYaND7WE,10205
@@ -731,8 +731,8 @@ qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py,sha256=oh_1Gb6G
731
731
  qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py,sha256=FmQSvPbI67L1MvF4A1tbM3Z_8r_7bx6exAyt2Iy-uVw,2918
732
732
  qiskit/transpiler/passes/synthesis/__init__.py,sha256=Q18fvaIkZ1PXp680Y53DkatyPg81zNVrdUp_hTJ7k_c,945
733
733
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=y3eoBqsHfugseAa2wYvY-5eWF1GME_TOWnHke9z8NTI,5496
734
- qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=VruZtdMvxcwF2chiuJvFkaHIWm6LpZVSdD9pvHFU9Bg,41435
735
- qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=ng5Hqtdwd-qySwb8kU4_Feq53-C_NUJS2KTFmu5onCo,59730
734
+ qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=ISzAhwsYLHCZHEzwPqFjOpPCPEfbi5mrjoaEEVgNrSU,41439
735
+ qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=v-HTLVxUehQBnw47FUy3WSR6y6xc_VD8lXz5odBaDiU,62572
736
736
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Sit6NoTlFXNBDrDxlyMar9ro7VunRJQxWb5NeG2JTZc,1448
737
737
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=7yE9-J2CkSRmxsdpMkSkEDZ7lTonsXUeWfj-IQEJNM8,31540
738
738
  qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=_Fq3gVuzTUu-ezCtyp3mBQ1tOMrW96igGcsgybXSD8s,11349
@@ -758,7 +758,7 @@ qiskit/transpiler/passes/utils/unroll_forloops.py,sha256=mkjucqYOXyfJpCT3dtXUMJe
758
758
  qiskit/transpiler/preset_passmanagers/__init__.py,sha256=DIC_jvndc-sN6x3F7mag-TPV67QN5QqCS3AC2qvuqsw,2831
759
759
  qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=g-EO8nNDuvtAkSL-fWxju9-ETmJinL2_JfEhSFBbRs0,45014
760
760
  qiskit/transpiler/preset_passmanagers/common.py,sha256=WIyb4sDZdfWTonF-ApLK6v3c_Cz8XihBCH0mpWMUrnw,27171
761
- qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=YVrIzj-viNuX8r2igm5u8Y7iT_4RVtMyk2m5brJrrLo,31475
761
+ qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=seWSKTlj-kV1NtwbD_Usk9QUhHq3T8_aifUXJBtf8Ik,31516
762
762
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=-X8y92rTBnvYlbXnWcFgwkF78FZK9Gn2Z9Pd9h0dvfA,4390
763
763
  qiskit/transpiler/preset_passmanagers/level1.py,sha256=Cxw99_TL8px-pavkr_XRkMFi9z8F5xnXuDiKRCTbFQE,4926
764
764
  qiskit/transpiler/preset_passmanagers/level2.py,sha256=cSOrYsVVJC5DJpjnJ4lNRtkZe_lKH4w385lsb8bogWU,4850
@@ -828,9 +828,9 @@ qiskit/visualization/timeline/types.py,sha256=jtpipQWUpahayNPQYKUst4GG6BqauovO0q
828
828
  qiskit/visualization/timeline/plotters/__init__.py,sha256=Klg9a1cSUIQhc815g8OpnD5vO1hcI51L9KlFfKzcuRg,588
829
829
  qiskit/visualization/timeline/plotters/base_plotter.py,sha256=taRkL2ZbyorRUEf6nJS8egdzKW2eznQ3w5oBLtMG_U8,1805
830
830
  qiskit/visualization/timeline/plotters/matplotlib.py,sha256=lqqNH3-bdf1F1cS2mDla9dLr5qEOeIFuqVl9Rhdg-Dw,7086
831
- qiskit-1.3.0rc1.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
832
- qiskit-1.3.0rc1.dist-info/METADATA,sha256=qTFOF4eMK6wtWHaSaXDozCkQAr36AoFEYF-EZMuMJuc,13099
833
- qiskit-1.3.0rc1.dist-info/WHEEL,sha256=4IQ1P53m-xeOuBBShI63tOno6crr8d99DEYgfjkru7o,95
834
- qiskit-1.3.0rc1.dist-info/entry_points.txt,sha256=5Xf0jdIYmLoQN2KoTrdTAfJm9FSd0-w4O0fckxQl7KQ,5669
835
- qiskit-1.3.0rc1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
836
- qiskit-1.3.0rc1.dist-info/RECORD,,
831
+ qiskit-1.3.1.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
832
+ qiskit-1.3.1.dist-info/METADATA,sha256=XXzaR3ijX3ODub1T2n4CrhN-Y6NW16lFktaOcJNT8fE,13170
833
+ qiskit-1.3.1.dist-info/WHEEL,sha256=wJnV1hFq2E5q4TvostNGn3-ixLXKp09vo4QOYNspKEA,95
834
+ qiskit-1.3.1.dist-info/entry_points.txt,sha256=8f4O6ZbFAIr5AzsP3wWosbp6n4_WI-sYGkgID9Y9JSE,5673
835
+ qiskit-1.3.1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
836
+ qiskit-1.3.1.dist-info/RECORD,,
@@ -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-win32
5
5
 
@@ -1,5 +1,5 @@
1
1
  [qiskit.synthesis]
2
- FullAdder.default = qiskit.transpiler.passes.synthesis.hls_plugins:FullAdderSynthesisC04
2
+ FullAdder.default = qiskit.transpiler.passes.synthesis.hls_plugins:FullAdderSynthesisDefault
3
3
  FullAdder.ripple_c04 = qiskit.transpiler.passes.synthesis.hls_plugins:FullAdderSynthesisC04
4
4
  FullAdder.ripple_v95 = qiskit.transpiler.passes.synthesis.hls_plugins:FullAdderSynthesisV95
5
5
  HalfAdder.default = qiskit.transpiler.passes.synthesis.hls_plugins:HalfAdderSynthesisDefault