qiskit 1.3.0rc1__cp39-abi3-macosx_11_0_arm64.whl → 1.3.1__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.
Files changed (33) hide show
  1. qiskit/VERSION.txt +1 -1
  2. qiskit/_accelerate.abi3.so +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,10 +1,10 @@
1
1
  qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
2
2
  qiskit/__init__.py,sha256=MHSxG7bMhoESBIzoz9DdWdolCdPTwnwHJ80zjWMoRd4,7483
3
- qiskit/_accelerate.abi3.so,sha256=NlsFLTyDfoLYocte-eoLclwwUTYamrhnYdQwJ2jKG8Q,8746344
3
+ qiskit/_accelerate.abi3.so,sha256=xAdaGASiTrPOiqdc1-N8BvHr8rgM6u2afXu3gCptbro,8695864
4
4
  qiskit/user_config.py,sha256=I7QCF9W2IDpleWunxDjgYGySsVUlq57gfj_137o0Dac,10109
5
5
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
6
6
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
7
- qiskit/VERSION.txt,sha256=oF8wcE1KomvaQ5YkAnT5Eqcilzx2jXMriqOqa8SgqQA,9
7
+ qiskit/VERSION.txt,sha256=EOLhF7AVI4kconGmFa426dXlI0j9fWQvZnJ2AsG43L4,6
8
8
  qiskit/visualization/circuit_visualization.py,sha256=6R-A96Uwb_RZOovsSB0LGVsC7lP5IhtLNp6VP2yVBwE,698
9
9
  qiskit/visualization/counts_visualization.py,sha256=rgoEqV0gucL9Auz33wf1LiRWR3yFQzjK94zzBF830iY,16791
10
10
  qiskit/visualization/pass_manager_visualization.py,sha256=19m4pUdYG0csZgQbuxfFP-zfoVGnk0pJr0HVToD1Y04,10886
@@ -147,13 +147,13 @@ qiskit/transpiler/passes/optimization/normalize_rx_angle.py,sha256=23ZddjkU924Yc
147
147
  qiskit/transpiler/passes/optimization/commutative_cancellation.py,sha256=2IA7m3K-iIV9xMUpUyOiGlpu2JCA6w0dTXJZBAa8ZrQ,3274
148
148
  qiskit/transpiler/passes/optimization/collect_cliffords.py,sha256=IYxqCHBu7ZsdLQ2VQT4nOeP60IFgwE5Wt7G_qA_7xRE,3572
149
149
  qiskit/transpiler/passes/optimization/collect_multiqubit_blocks.py,sha256=MppN-ahGFLNfVsnUCnoBhjz1dZqZJslSqeiJYwgLDpQ,9840
150
- qiskit/transpiler/passes/optimization/inverse_cancellation.py,sha256=2noeu1bmqDcZeKCwCsGJ2mt7trcNo6JNBxaotgY2qCM,3434
150
+ qiskit/transpiler/passes/optimization/inverse_cancellation.py,sha256=V9jj9BQlt5KfkwfPwjxExTlpme3UI0XD-AkbwjSfMzw,3524
151
151
  qiskit/transpiler/passes/optimization/_gate_extension.py,sha256=_rOObudQUvzSnaa9wAYbdKX7ZVc-vpazKc4pSWhXICw,3306
152
152
  qiskit/transpiler/passes/optimization/template_optimization.py,sha256=biZ_UD1AJcpZ9bLknXumMgk1KGui7i-ZkeyKD2B7aFU,6733
153
153
  qiskit/transpiler/passes/optimization/optimize_1q_decomposition.py,sha256=UMrjcUB5cbHCuuSTp6kA8664IBV1R7WwLBWaKj_PjHs,9951
154
154
  qiskit/transpiler/passes/optimization/optimize_cliffords.py,sha256=GXX8c_M1i4I6l6sCbftGpZpjXROL4arLbH6_l1hWSBE,3221
155
155
  qiskit/transpiler/passes/optimization/optimize_annotated.py,sha256=3lGbhP_KwOgM8qfkkqxIf13T80h55JVwn3nqoPD3kaw,18785
156
- qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=bzKn4TmdHDJ_z0PgPKvVhVCdZ7o59oGOBG7J3enGKl4,5354
156
+ qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=nEDNl8wbg95eAhD_TpZRvYLk7GwNfSr5S7bWoJgQFNM,5610
157
157
  qiskit/transpiler/passes/optimization/reset_after_measure_simplification.py,sha256=2PZ_1lheWvq8Y9ualZjn-qIzHH6dnX2BMUtjOir-efs,2011
158
158
  qiskit/transpiler/passes/optimization/optimize_1q_commutation.py,sha256=svyl0lMrgv0nGm5F59Yc-fgQXuJ2SngNmi_v6t6iZMQ,10315
159
159
  qiskit/transpiler/passes/optimization/template_matching/template_matching.py,sha256=Rmry8mO4rgB1uWvQ4UC7XGVjh53VT8eR-uQzRO3o9Xs,17655
@@ -181,11 +181,11 @@ qiskit/transpiler/passes/utils/gates_basis.py,sha256=9AQ8uKi4CmiGF0CBnLQfc07ca_H
181
181
  qiskit/transpiler/passes/utils/barrier_before_final_measurements.py,sha256=1N8OMvteNo9UpRPn7aST62D56u8ikSTYK8ZFZWKOYGE,1530
182
182
  qiskit/transpiler/passes/utils/fixed_point.py,sha256=AiwkNvu-SLHvodddJRKfFEl7FPC62u1f3CB9lRne9eY,1773
183
183
  qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=xM0KHNaH8N9-tn5rhC5tAGc5-faID8GvVFbH6HCqnsE,11052
184
- qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=WqMhSA0kBXjMgE7weLNp-JqKnvTQJiOrDyX-VtfP8Aw,58172
184
+ qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=4iWj6k4UDBTtRjjPU-mbXUzCuDXLJepb2JHqWmo4-Zg,60946
185
185
  qiskit/transpiler/passes/synthesis/__init__.py,sha256=VYO9Sl_SJyoZ_bLronrkvK9u8kL-LW9G93LbWyWNEaM,925
186
186
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=LnvGzGJ8Q5gSPKSJNmJ7fvnUub8lzG5iGGTqOTODpes,30806
187
187
  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
188
+ qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=rTORc72gdQhty_0XE8VMESznuRbNiDdAp2O4QfCZl74,40585
189
189
  qiskit/transpiler/passes/synthesis/unitary_synthesis.py,sha256=0Y97BlIvXgR1-PoQscwGHFiYDR8fyT2S1R9DMLQa-30,45663
190
190
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=SDgHqcCHR0hON50ckSHQDrVnBzOc-I7hYibE6r6oaB8,5343
191
191
  qiskit/transpiler/passes/routing/__init__.py,sha256=SHAsTgVHmWlf1wp9WirLqN5kz9HOK-RkwjOxX4qzMMQ,942
@@ -205,7 +205,7 @@ qiskit/transpiler/passes/routing/algorithms/util.py,sha256=0mZFWUKp8z-8K2HjPRxwu
205
205
  qiskit/transpiler/passes/routing/algorithms/__init__.py,sha256=xqgItNZmE9Asul94FzsBbUdU2d6h7j9bOY5p7q0QKYc,1403
206
206
  qiskit/transpiler/passes/routing/algorithms/types.py,sha256=9yX3_8JFvA4T5_tXWb3T304EscCnETkoFY0_Q_Gzr-A,1708
207
207
  qiskit/transpiler/passes/routing/algorithms/token_swapper.py,sha256=_Xxnk5rasIJ5DIQqR6AwMVdxTe5xgJ_bA_RL2FCGfs0,4118
208
- qiskit/transpiler/passes/basis/decompose.py,sha256=eGGAiuA3ugeFytkTnkK6cnFzGZKtKfc5iEtF3hk1EP4,4967
208
+ qiskit/transpiler/passes/basis/decompose.py,sha256=_P9TuT8Ui75OhTi-iROcdtGKrThvY-FcatS05gjT6dc,6123
209
209
  qiskit/transpiler/passes/basis/translate_parameterized.py,sha256=jNekE2530Pj-WGlxDPfCa8bErISDFhRUsC3j0GtrxCs,7425
210
210
  qiskit/transpiler/passes/basis/__init__.py,sha256=JF0s79eUZOJo-8T8rFUlq0nvF7Q-FS7sqjB1A2Jy7Yo,783
211
211
  qiskit/transpiler/passes/basis/unroll_3q_or_more.py,sha256=g2Fsuv5WCgufdh7tw0hMQUUQFkyeExIU9ENaWGqTZpo,3726
@@ -214,7 +214,7 @@ qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=X5YkxVycMGDbz
214
214
  qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=H94fshiPOA8c-M0WfkvV3LmjdgRbQYWbi7yP8PgTl08,43969
215
215
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=emrcxdh3Rnv5pyAo5WuMJlY3tfz6WnkKJlGao7vSYAI,4277
216
216
  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
217
+ qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=oxkjpVKJ0Dup3eKhn4LRXCFGlqnmoERc28C_pC2xKDE,30890
218
218
  qiskit/transpiler/preset_passmanagers/level1.py,sha256=15OG8az6JecM-3CjyFNgIrTL8HW_2hiFRmoZvpu8c_k,4806
219
219
  qiskit/transpiler/preset_passmanagers/common.py,sha256=_y0ABya647oTEbl8s8EcnXr8bInYVztN7BCnB5iFjRk,26522
220
220
  qiskit/transpiler/preset_passmanagers/level2.py,sha256=Bt0EAyreXQb5cxAR6JF_4XoieaJVwi2qO5UyxYSHZiY,4731
@@ -267,7 +267,7 @@ qiskit/circuit/classicalregister.py,sha256=oLKotR8jFREs6i2M1K7Jrvm5rrfG7TzLgaB0-
267
267
  qiskit/circuit/operation.py,sha256=ecfuw_bkQYFsHyEPdf1z-vJhY99NYSFLYps_X1DF3jc,2015
268
268
  qiskit/circuit/quantumregister.py,sha256=S_4lTalKmDI0LiVq3WJUyqDQwrx7-7mVDOMO-YIs4qI,2032
269
269
  qiskit/circuit/parameterexpression.py,sha256=INJe0jYbeujGltUQIoJ-70s3nRmCtd1ECL_gLUJ_adA,27041
270
- qiskit/circuit/add_control.py,sha256=F1l4ZiZum3CtCAtE_bSkZvd0dBCchqN83DirtBoBC9g,11369
270
+ qiskit/circuit/add_control.py,sha256=jT_PaSowKSFa3g_upN0PP0qCLIKsFpkP4h11H-T55js,10308
271
271
  qiskit/circuit/delay.py,sha256=4tWlJU86nifIvZfb0q5m6F25Ckf9kRQPIBxh6IYm1hc,4926
272
272
  qiskit/circuit/twirling.py,sha256=HmpR4EzfKEkI5hW50gstzg2S6f464jF6MbtGquyGbG8,6213
273
273
  qiskit/circuit/gate.py,sha256=62_KeRCnxEk1m7WffSWSmEaONuNTkiNi5pB7uISLPYU,10242
@@ -301,7 +301,7 @@ qiskit/circuit/library/blueprintcircuit.py,sha256=Iqh8gGTfAHwBzeCW1Iy1foUnBBCLAD
301
301
  qiskit/circuit/library/graph_state.py,sha256=bOCAj8qsC7k-OS6qWkhUH8nBBd2I5uKOkrzLh2Aek1g,6113
302
302
  qiskit/circuit/library/iqp.py,sha256=0NtQQFsp2HcdbPGkIzjugQ6ym6uow0IOHX_-mTvmrEk,5754
303
303
  qiskit/circuit/library/fourier_checking.py,sha256=h81zaCc4AWF3luFyy8stGoU-UWcubP-Srqs92duqDQw,6252
304
- qiskit/circuit/library/__init__.py,sha256=AUVh1_a8ia9OHV09MGakHrKXpQYLV9lxT4o-kRCFvHU,15300
304
+ qiskit/circuit/library/__init__.py,sha256=jo55p9TvRYOO-qlNanHILFsYF1gryw5J8d5zuW7n9kA,15885
305
305
  qiskit/circuit/library/quantum_volume.py,sha256=YsK0LdG0aofbR9RTJ46EpdN_eqTICDF4Zs9kPE-XS1c,6614
306
306
  qiskit/circuit/library/phase_estimation.py,sha256=Sc5SjPTOjuqkO-liA5iybqzjEfMJyMbMlFfnOwhPplU,6456
307
307
  qiskit/circuit/library/overlap.py,sha256=JTSg9L6lMKL4xnatIWnQupb8GJYJrDV-DM8wXJsjjhU,7085
@@ -350,12 +350,12 @@ qiskit/circuit/library/arithmetic/polynomial_pauli_rotations.py,sha256=yRJCMelQy
350
350
  qiskit/circuit/library/arithmetic/weighted_adder.py,sha256=Eie1pZuUYF67QbtrVavAwaXswWp44rYAKloUMYdIBWs,12829
351
351
  qiskit/circuit/library/arithmetic/functional_pauli_rotations.py,sha256=dM5UO0YraoIXYKXOnaGpH78JZUfeKYMxPdqKDVeP7cQ,3615
352
352
  qiskit/circuit/library/arithmetic/piecewise_polynomial_pauli_rotations.py,sha256=gphgftLaugjiC8bSLlGG0l7xmJRx02X3uhguvgbusHY,11791
353
- qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=h0A_2Q8Ixw8QcxOYboVAhhd7XVqES0AoxU4Rlx6BWwA,4939
354
- qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=MdHBDzhXIg5G0ePIFCVlBAAIr_inngSp4i2ElDukRvI,7456
353
+ qiskit/circuit/library/arithmetic/adders/vbe_ripple_carry_adder.py,sha256=hSk8Yis542uIJl7xn4UsdVYWUBG0Igvf4eFYxiGdG3M,4943
354
+ qiskit/circuit/library/arithmetic/adders/cdkm_ripple_carry_adder.py,sha256=6_t_r2qB9Ancp24EnrZ8bOB0k9W-_akT7rcRDmPz-CE,7460
355
355
  qiskit/circuit/library/arithmetic/adders/__init__.py,sha256=PRrSLxGAtAMm-9L6UIFnL3ta0NSYUIhEklpf_i9bE5s,743
356
- 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
358
- qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=ie_IV_oX4axsjJyI6tdr0p69w28pdvBBrxlOzxuPBNY,6967
356
+ qiskit/circuit/library/arithmetic/adders/draper_qft_adder.py,sha256=bUV7q1nbQoftKVjX0D-HcW_kyJqWrJpP8muXnV7SeRU,6039
357
+ qiskit/circuit/library/arithmetic/adders/adder.py,sha256=DM0FmgeGK8S9cOmX_E_Nyk9Q1H_fnJ3vxUMvwp1Ar-E,7887
358
+ qiskit/circuit/library/arithmetic/multipliers/multiplier.py,sha256=L487WCWB6YN9EAACm2Aih6e0GhuQaYk-mbA_ACWeP9Q,7409
359
359
  qiskit/circuit/library/arithmetic/multipliers/__init__.py,sha256=vRtcHF2PRcyK_lfBQFqsWlpeaGwkcK3PK1KeduHvfOE,672
360
360
  qiskit/circuit/library/arithmetic/multipliers/hrs_cumulative_multiplier.py,sha256=oJIWVc2wFLz-GbU06jurKU3xcyxWdd7AbsH7SVMu0-c,6850
361
361
  qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=fhFUM0wTyK8X8CLDQEKs05Ezzos5uS_kybCoj9zSeuw,6215
@@ -500,7 +500,7 @@ qiskit/providers/providerutils.py,sha256=yz5irsmPJAFcbiZsWi24Yp96SWQUIUuisK3r3Aq
500
500
  qiskit/providers/provider.py,sha256=he8imx5J_XiElFfaWPbjDYPx2xuTR54G9l84iRFQ-mA,3182
501
501
  qiskit/providers/jobstatus.py,sha256=KZH3Dgcg6Gk__lkfOhTkDY0kCrO07CnR9Mqrgp-_JnU,990
502
502
  qiskit/providers/job.py,sha256=bl452OQlamT98hbHNI6l9F6pFoLayMvR4M49p_pYq80,5048
503
- qiskit/providers/__init__.py,sha256=ZpN-CdBhJhc8Uq7CoWmVC4xetxfWVcp2WxaRsnta4Qc,35464
503
+ qiskit/providers/__init__.py,sha256=jzxclSA7PaP6bdMO_Qvqg0kSHIXQqxtGY6jnbSOqYxw,35468
504
504
  qiskit/providers/exceptions.py,sha256=cXxlril0FQI0suiLBUlBQmtBAzhFrvEZRAo5iV4CFFM,1169
505
505
  qiskit/providers/backend_compat.py,sha256=E_vtTyuTWVmQzMNtoT0Dj8wOc9IVOll6nUfr9ahhomA,19666
506
506
  qiskit/providers/fake_provider/fake_1q.py,sha256=pzBYc48EvR1-9OfdivBMPBF8VHD6uSgCP2pJNAyYN4w,3102
@@ -710,7 +710,7 @@ qiskit/primitives/statevector_estimator.py,sha256=JwxjQQQG0kH6r457E8AMTM3veQmpvo
710
710
  qiskit/primitives/statevector_sampler.py,sha256=7IkvHKw0sPsuKPzjHb_b4TyA0ONc0Uabh3M505TX0hY,10993
711
711
  qiskit/primitives/__init__.py,sha256=HvNeFcnzLd3yH34dB3lul7xHFKEg087TUHfq3vMsWS8,16899
712
712
  qiskit/primitives/primitive_job.py,sha256=qImFX0DlKQCQqPe_YOLV4narEa2sU_LAY4KArDh1GwI,2617
713
- qiskit/primitives/utils.py,sha256=d5B2RvCa_vN7wFvpTbEpyxBZ7LiIq262tXXe6IR5MUs,8347
713
+ qiskit/primitives/utils.py,sha256=32gJvSOdFOh08DLlUBvZ2js4ijkrKk2vBGHViZHd20s,8346
714
714
  qiskit/primitives/backend_sampler.py,sha256=7V3-oWVNWS-UUQp2aI19NKFHgD-q1Y9qudmu-YNQA1Y,8272
715
715
  qiskit/primitives/estimator.py,sha256=Y7bxOSDPmZ5L9Ut-Y48SJtP0iT1maojsnFhpBgyEM1w,6734
716
716
  qiskit/primitives/sampler.py,sha256=H2sgcx66xTZsodunf4CpfdZ12aVLLNUYHjR7VmaUkj0,5861
@@ -737,7 +737,7 @@ qiskit/primitives/base/estimator_result.py,sha256=YUNMS8uKaHVGBn4j2QKJBijh3nsQkE
737
737
  qiskit/primitives/base/base_primitive_job.py,sha256=E9JZPlHeDU-Zx2ccje73dpEAkt0rCYD1yrMb-WEmgbk,2834
738
738
  qiskit/primitives/base/validation.py,sha256=KMWbPhGUSyr1XYSoh11YgNBabjgtgVpbTFYu9-0TvjU,8846
739
739
  qiskit/qpy/interface.py,sha256=Cd089X6aInCjNEz3GA3Ea75A_Lo09Vkx43aQBsEVdkU,14131
740
- qiskit/qpy/__init__.py,sha256=i74jxPkXR1oX9zGxDElxtLQ7rDkUNC6_IajmZ_g24HA,63066
740
+ qiskit/qpy/__init__.py,sha256=pG7qBgFVy8vtin_5adA6mrgcANR1AXcXaLe4MqesLz8,63073
741
741
  qiskit/qpy/common.py,sha256=kKcrLZAdEbXssanEPCHQ693FznmtNmucmmApDnd1e9I,12258
742
742
  qiskit/qpy/type_keys.py,sha256=_2FKRgX1H6B5L6UOt3RCBzbeecNh0LPISZUr75felQg,15761
743
743
  qiskit/qpy/formats.py,sha256=E9I8sxK1Zj5Nhk5-BbyHbSaBrdsj15AR3DGoVvTrL0k,11520
@@ -806,31 +806,31 @@ qiskit/quantum_info/operators/utils/anti_commutator.py,sha256=mn8j5qsW4ZRED8OMcZ
806
806
  qiskit/quantum_info/operators/utils/__init__.py,sha256=E-Z7NJUaWRxqJN1lcYdDqSupLLKE1QUejl9ttQ8_04U,704
807
807
  qiskit/quantum_info/operators/utils/double_commutator.py,sha256=fXW2YPgzPyzHOSbPW0HQZ6WYzjHHD1zd0sJunMzpvOc,1978
808
808
  qiskit/quantum_info/operators/utils/commutator.py,sha256=BR7lgW4tD6SZKxiQIQE7CQSCYGKRaqPFzWaO03QLuY8,957
809
- qiskit/quantum_info/operators/channel/ptm.py,sha256=U0Ybr8NBvh4zVGXgaQuwX4EzwqRshXWjCsP36pSzv0s,7911
809
+ qiskit/quantum_info/operators/channel/ptm.py,sha256=23HzPAj5ondGqxSnunQJaSbL1ogtVJjWef1-oHIVQcc,7790
810
810
  qiskit/quantum_info/operators/channel/transformations.py,sha256=vtNroGYrTtABB1ERI8dNjSBwM3FzaI-nLNSwyoVXGGA,17624
811
- qiskit/quantum_info/operators/channel/choi.py,sha256=zy5y7HIGAUd8VA74flqASVpbAFBKv0ymEuS8BAYMZXk,8582
812
- qiskit/quantum_info/operators/channel/stinespring.py,sha256=pWOhoD50zpEjaduIXZp68GaoUkp0xwQPclf4If7Y35g,11560
811
+ qiskit/quantum_info/operators/channel/choi.py,sha256=O_8a2M2zL8z_mxcq0LChINwrl2XzGMHsM5D8vmU681Q,8461
812
+ qiskit/quantum_info/operators/channel/stinespring.py,sha256=QgSMgc6ZFs_dUu3rFgTS43G468SU4arLZKxErQEkUvk,11439
813
813
  qiskit/quantum_info/operators/channel/__init__.py,sha256=CeahSP9rvIa-dgQNQkTqI7MTRMLebR19jmLhOEhr5Ps,940
814
- qiskit/quantum_info/operators/channel/superop.py,sha256=qf90bicH9QzmBitdXEbbX65n_TLw0jzd1wn1pQpyBqE,15859
814
+ qiskit/quantum_info/operators/channel/superop.py,sha256=1UvaRfApud0rOw2QyuD-u5J-OIyBfdWQxDTnCgS-sSQ,15685
815
815
  qiskit/quantum_info/operators/channel/kraus.py,sha256=P_pB739LfvC9n13L9LwMVzLXLmsNoOk53CaD3pEsENo,13259
816
- qiskit/quantum_info/operators/channel/chi.py,sha256=uyEetmFAOZaft22AfhNPrUIPfdNXDRnXkxBw4jSsouM,7782
817
- qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=T8ohen29CZUyrnAWvt_uRpu_ETU7w3P1HfR9U5oVKWY,13981
818
- qiskit/quantum_info/states/stabilizerstate.py,sha256=XX2iNbTXtyelFOc4smcFz1nqytgcJdYoDzX__e4T-AI,29713
819
- qiskit/quantum_info/states/statevector.py,sha256=SzC5VI6yx7JLfS4HnrNTfBYV2kfj4jPxcjRMgUXQfTw,36806
816
+ qiskit/quantum_info/operators/channel/chi.py,sha256=eGgaPgaVXe38LLdPdJuep6uRnxJzv4PIg3uv3ngDXMk,7661
817
+ qiskit/quantum_info/operators/channel/quantum_channel.py,sha256=eRVP5rBJ_TdURD83UrU7YSY7hLDkGosLm3N03c9tFUQ,13949
818
+ qiskit/quantum_info/states/stabilizerstate.py,sha256=7af0aYkdH1f8mAKDvhLNH_x_OJFKtQLymCUddhWQkoQ,29669
819
+ qiskit/quantum_info/states/statevector.py,sha256=_SwAGdUOmzwu__VSCNBOPywU4vS1GnIRb4G28S12iGs,36796
820
820
  qiskit/quantum_info/states/__init__.py,sha256=Zepc7tCs93UIRVkLJYks3FH3pCoIe48f-rVtQ0X6qoQ,897
821
821
  qiskit/quantum_info/states/random.py,sha256=oxQWWdCpZVxTnbrBUfdRodVKhRhhFD-pW4zcxUt5dM0,5062
822
822
  qiskit/quantum_info/states/measures.py,sha256=9YvouvJ5I9D8_BZBe3oiyrQwdtOIapV12bhCYCuWZUo,9753
823
823
  qiskit/quantum_info/states/utils.py,sha256=Trw5T6EX3FHpjgKoQm6788wZwe4JtFJIvD4V-MA0Qwg,8758
824
- qiskit/quantum_info/states/densitymatrix.py,sha256=fvupK0BPPVYO5ONQX1CqPFnq-OrcFqU2QXgTP5DJyHs,32892
824
+ qiskit/quantum_info/states/densitymatrix.py,sha256=fTpAa2Cq1hspA1vWCe8cdJsGSShZLu6jQPNfKD2EsGg,32694
825
825
  qiskit/quantum_info/states/quantum_state.py,sha256=v__EAFkAu2aJwafAfaVDce5_525fTkTrTaJdrdQhAr0,17774
826
826
  qiskit/compiler/sequencer.py,sha256=uvwF1e3R8gLpf91zD3Fr7UzgfQw9mcv_orHsYVhSOz0,3210
827
827
  qiskit/compiler/__init__.py,sha256=Far4-zXOyDGCqdNmFP4Q8zV47meApMw6sbIdd1t_wM4,989
828
828
  qiskit/compiler/assembler.py,sha256=nsF7XRgHJVgBrJ5BIj44YsGpNsN5OpqvTYCrGVl9IlY,27813
829
829
  qiskit/compiler/transpiler.py,sha256=dJ_MpUw1COntDag6pefwoVB09zk4sg-5taNEaKiQzO8,26504
830
830
  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=1qErML6YqFxN_XS_V-1-ngeCgl7YYuC6riQVNLLZepI,107
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
831
+ qiskit-1.3.1.dist-info/RECORD,,
832
+ qiskit-1.3.1.dist-info/WHEEL,sha256=UKjR--1pVIq9MkMJj-FaHQIj2iexFlBKvgRqgi4PbrA,107
833
+ qiskit-1.3.1.dist-info/entry_points.txt,sha256=8f4O6ZbFAIr5AzsP3wWosbp6n4_WI-sYGkgID9Y9JSE,5673
834
+ qiskit-1.3.1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
835
+ qiskit-1.3.1.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
836
+ qiskit-1.3.1.dist-info/METADATA,sha256=3u8vll5ehxG_o8KlC2Im1VjUmXlI7BOWnkyZngPjk_s,12948
@@ -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_11_0_arm64
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