qiskit 2.0.0rc2__cp39-abi3-macosx_11_0_arm64.whl → 2.0.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 (52) hide show
  1. qiskit/VERSION.txt +1 -1
  2. qiskit/__init__.py +1 -4
  3. qiskit/_accelerate.abi3.so +0 -0
  4. qiskit/circuit/__init__.py +11 -5
  5. qiskit/circuit/classical/expr/constructors.py +0 -12
  6. qiskit/circuit/library/__init__.py +449 -163
  7. qiskit/circuit/library/graph_state.py +1 -0
  8. qiskit/circuit/library/n_local/efficient_su2.py +1 -1
  9. qiskit/circuit/library/n_local/excitation_preserving.py +1 -1
  10. qiskit/circuit/library/quantum_volume.py +9 -0
  11. qiskit/circuit/library/standard_gates/r.py +4 -3
  12. qiskit/circuit/library/standard_gates/x.py +1 -2
  13. qiskit/circuit/quantumcircuit.py +405 -80
  14. qiskit/converters/circuit_to_dag.py +2 -2
  15. qiskit/converters/dag_to_circuit.py +2 -3
  16. qiskit/dagcircuit/dagdependency_v2.py +3 -2
  17. qiskit/primitives/statevector_estimator.py +1 -1
  18. qiskit/qpy/__init__.py +21 -0
  19. qiskit/qpy/binary_io/circuits.py +5 -0
  20. qiskit/result/models.py +1 -2
  21. qiskit/result/result.py +10 -8
  22. qiskit/synthesis/discrete_basis/commutator_decompose.py +30 -6
  23. qiskit/synthesis/discrete_basis/gate_sequence.py +10 -4
  24. qiskit/synthesis/discrete_basis/generate_basis_approximations.py +1 -1
  25. qiskit/synthesis/discrete_basis/solovay_kitaev.py +36 -13
  26. qiskit/transpiler/passes/__init__.py +2 -0
  27. qiskit/transpiler/passes/basis/basis_translator.py +1 -1
  28. qiskit/transpiler/passes/layout/full_ancilla_allocation.py +2 -3
  29. qiskit/transpiler/passes/layout/sabre_layout.py +3 -1
  30. qiskit/transpiler/passes/layout/vf2_utils.py +2 -5
  31. qiskit/transpiler/passes/optimization/__init__.py +1 -0
  32. qiskit/transpiler/passes/scheduling/alignments/check_durations.py +1 -1
  33. qiskit/transpiler/passes/scheduling/padding/base_padding.py +2 -2
  34. qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py +5 -5
  35. qiskit/transpiler/passes/scheduling/padding/pad_delay.py +1 -1
  36. qiskit/transpiler/passes/scheduling/time_unit_conversion.py +10 -6
  37. qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py +29 -19
  38. qiskit/transpiler/passes/synthesis/unitary_synthesis.py +2 -1
  39. qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py +13 -7
  40. qiskit/transpiler/target.py +11 -0
  41. qiskit/visualization/circuit/text.py +1 -1
  42. qiskit/visualization/counts_visualization.py +4 -0
  43. qiskit/visualization/library.py +4 -1
  44. qiskit/visualization/state_visualization.py +13 -2
  45. qiskit/visualization/timeline/core.py +1 -1
  46. qiskit/visualization/timeline/plotters/matplotlib.py +4 -1
  47. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info}/METADATA +4 -3
  48. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info}/RECORD +52 -52
  49. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info}/WHEEL +1 -1
  50. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info}/entry_points.txt +0 -0
  51. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info/licenses}/LICENSE.txt +0 -0
  52. {qiskit-2.0.0rc2.dist-info → qiskit-2.0.1.dist-info}/top_level.txt +0 -0
@@ -207,7 +207,7 @@ class SolovayKitaevSynthesis(UnitarySynthesisPlugin):
207
207
 
208
208
  Supported parameters in the dictionary:
209
209
 
210
- basis_approximations (str | dict):
210
+ basic_approximations (str | dict):
211
211
  The basic approximations for the finding the best discrete decomposition at the root of the
212
212
  recursion. If a string, it specifies the ``.npy`` file to load the approximations from.
213
213
  If a dictionary, it contains ``{label: SO(3)-matrix}`` pairs. If None, a default based on
@@ -215,19 +215,31 @@ class SolovayKitaevSynthesis(UnitarySynthesisPlugin):
215
215
 
216
216
  basis_gates (list):
217
217
  A list of strings specifying the discrete basis gates to decompose to. If None,
218
- defaults to ``["h", "t", "tdg"]``.
218
+ it defaults to ``["h", "t", "tdg"]``. If ``basic_approximations`` is not None,
219
+ ``basis_set`` is required to correspond to the basis set that was used to
220
+ generate it.
219
221
 
220
222
  depth (int):
221
223
  The gate-depth of the basic approximations. All possible, unique combinations of the
222
224
  basis gates up to length ``depth`` are considered. If None, defaults to 10.
225
+ If ``basic_approximations`` is not None, ``depth`` is required to correspond to the
226
+ depth that was used to generate it.
223
227
 
224
228
  recursion_degree (int):
225
229
  The number of times the decomposition is recursively improved. If None, defaults to 3.
226
230
  """
227
231
 
228
- # we cache an instance of the Solovay-Kitaev class to generate the
229
- # computationally expensive basis approximation of single qubit gates only once
232
+ # Generating basic approximations of single-qubit gates is computationally expensive.
233
+ # We cache the instance of the Solovay-Kitaev class (which contains the approximations),
234
+ # as well as the basis gates and the depth (used to generate it).
235
+ # When the plugin is called again, we check if the specified basis gates and depth are
236
+ # the same as before. If so, the stored basic approximations are reused, and if not, the
237
+ # approximations are re-generated. In practice (when the plugin is run as a part of the
238
+ # UnitarySynthesis transpiler pass), the basis gates and the depth do not change, and
239
+ # basic approximations are not re-generated.
230
240
  _sk = None
241
+ _basis_gates = None
242
+ _depth = None
231
243
 
232
244
  @property
233
245
  def max_qubits(self):
@@ -277,27 +289,25 @@ class SolovayKitaevSynthesis(UnitarySynthesisPlugin):
277
289
  return False
278
290
 
279
291
  def run(self, unitary, **options):
292
+ """Run the SolovayKitaevSynthesis synthesis plugin on the given unitary."""
280
293
 
281
- # Runtime imports to avoid the overhead of these imports for
282
- # plugin discovery and only use them if the plugin is run/used
283
294
  config = options.get("config") or {}
284
-
295
+ basis_gates = options.get("basis_gates", ["h", "t", "tdg"])
296
+ depth = config.get("depth", 10)
297
+ basic_approximations = config.get("basic_approximations", None)
285
298
  recursion_degree = config.get("recursion_degree", 3)
286
299
 
287
- # if we didn't yet construct the Solovay-Kitaev instance, which contains
288
- # the basic approximations, do it now
289
- if SolovayKitaevSynthesis._sk is None:
290
- basic_approximations = config.get("basic_approximations", None)
291
- basis_gates = options.get("basis_gates", ["h", "t", "tdg"])
292
-
293
- # if the basic approximations are not generated and not given,
294
- # try to generate them if the basis set is specified
300
+ # Check if we didn't yet construct the Solovay-Kitaev instance (which contains the basic
301
+ # approximations) or if the basic approximations need need to be recomputed.
302
+ if (SolovayKitaevSynthesis._sk is None) or (
303
+ (basis_gates != SolovayKitaevSynthesis._basis_gates)
304
+ or (depth != SolovayKitaevSynthesis._depth)
305
+ ):
295
306
  if basic_approximations is None:
296
- depth = config.get("depth", 10)
297
307
  basic_approximations = generate_basic_approximations(basis_gates, depth)
298
308
 
309
+ SolovayKitaevSynthesis._basis_gates = basis_gates
310
+ SolovayKitaevSynthesis._depth = depth
299
311
  SolovayKitaevSynthesis._sk = SolovayKitaevDecomposition(basic_approximations)
300
-
301
312
  approximate_circuit = SolovayKitaevSynthesis._sk.run(unitary, recursion_degree)
302
- dag_circuit = circuit_to_dag(approximate_circuit)
303
- return dag_circuit
313
+ return circuit_to_dag(approximate_circuit)
@@ -223,6 +223,7 @@ class UnitarySynthesis(TransformationPass):
223
223
  self._min_qubits,
224
224
  self._target,
225
225
  self._basis_gates,
226
+ self._synth_gates,
226
227
  _coupling_edges,
227
228
  self._approximation_degree,
228
229
  self._natural_direction,
@@ -294,7 +295,7 @@ class UnitarySynthesis(TransformationPass):
294
295
 
295
296
  out_dag = dag.copy_empty_like()
296
297
  for node in dag.topological_op_nodes():
297
- if node.name == "unitary" and len(node.qargs) >= self._min_qubits:
298
+ if node.name in self._synth_gates and len(node.qargs) >= self._min_qubits:
298
299
  synth_dag = None
299
300
  unitary = node.matrix
300
301
  n_qubits = len(node.qargs)
@@ -13,7 +13,7 @@
13
13
  """
14
14
  Preset pass manager generation function
15
15
  """
16
-
16
+ import copy
17
17
  import warnings
18
18
 
19
19
  from qiskit.circuit.controlflow import CONTROL_FLOW_OP_NAMES, get_control_flow_name_mapping
@@ -129,9 +129,9 @@ def generate_preset_pass_manager(
129
129
  :class:`~.StagedPassManager`. You can see a list of installed plugins by using
130
130
  :func:`~.list_stage_plugins` with ``"layout"`` for the ``stage_name`` argument.
131
131
  routing_method (str): The pass to use for routing qubits on the
132
- architecture. Valid choices are ``'basic'``, ``'lookahead'``, ``'stochastic'``,
132
+ architecture. Valid choices are ``'basic'``, ``'lookahead'``,
133
133
  ``'sabre'``, and ``'none'`` representing :class:`~.BasicSwap`,
134
- :class:`~.LookaheadSwap`, :class:`~.StochasticSwap`, :class:`~.SabreSwap`, and
134
+ :class:`~.LookaheadSwap`, :class:`~.SabreSwap`, and
135
135
  erroring if routing is required respectively. This can also be the external plugin
136
136
  name to use for the ``routing`` stage of the output :class:`~.StagedPassManager`.
137
137
  You can see a list of installed plugins by using :func:`~.list_stage_plugins` with
@@ -200,12 +200,14 @@ def generate_preset_pass_manager(
200
200
  # If there are no loose constraints => use backend target if available
201
201
  _no_loose_constraints = basis_gates is None and coupling_map is None and dt is None
202
202
 
203
+ # If the only loose constraint is dt => use backend target and modify dt
204
+ _adjust_dt = backend is not None and dt is not None
205
+
203
206
  # Warn about inconsistencies in backend + loose constraints path (dt shouldn't be a problem)
204
207
  if backend is not None and (coupling_map is not None or basis_gates is not None):
205
208
  warnings.warn(
206
209
  "Providing `coupling_map` and/or `basis_gates` along with `backend` is not "
207
- "recommended. This may introduce inconsistencies in the transpilation target, "
208
- "leading to potential errors.",
210
+ "recommended, as this will invalidate the backend's gate durations and error rates.",
209
211
  category=UserWarning,
210
212
  stacklevel=2,
211
213
  )
@@ -226,13 +228,17 @@ def generate_preset_pass_manager(
226
228
  raise ValueError(
227
229
  f"Gates with 3 or more qubits ({gate}) in `basis_gates` or `backend` are "
228
230
  "incompatible with a custom `coupling_map`. To include 3-qubit or larger "
229
- " gates in the transpilation basis, use a custom `target` instance instead."
231
+ " gates in the transpilation basis, provide a custom `target` instead."
230
232
  )
231
233
 
232
234
  if target is None:
233
235
  if backend is not None and _no_loose_constraints:
234
236
  # If a backend is specified without loose constraints, use its target directly.
235
237
  target = backend.target
238
+ elif _adjust_dt:
239
+ # If a backend is specified with loose dt, use its target and adjust the dt value.
240
+ target = copy.deepcopy(backend.target)
241
+ target.dt = dt
236
242
  else:
237
243
  if basis_gates is not None:
238
244
  # Build target from constraints.
@@ -255,7 +261,7 @@ def generate_preset_pass_manager(
255
261
  dt=dt,
256
262
  )
257
263
 
258
- # update loose constraints to populate pm options
264
+ # Update loose constraints to populate pm options
259
265
  if coupling_map is None:
260
266
  coupling_map = target.build_coupling_map()
261
267
  if basis_gates is None and len(target.operation_names) > 0:
@@ -270,6 +270,17 @@ class Target(BaseTarget):
270
270
  self._instruction_durations = None
271
271
  self._instruction_schedule_map = None
272
272
 
273
+ @property
274
+ def dt(self):
275
+ """Return dt."""
276
+ return self._dt
277
+
278
+ @dt.setter
279
+ def dt(self, dt):
280
+ """Set dt and invalidate instruction duration cache"""
281
+ self._dt = dt
282
+ self._instruction_durations = None
283
+
273
284
  def add_instruction(self, instruction, properties=None, name=None):
274
285
  """Add a new instruction to the :class:`~qiskit.transpiler.Target`
275
286
 
@@ -1396,7 +1396,7 @@ class TextDrawing:
1396
1396
  layers.append(flow_layer2.full_layer)
1397
1397
 
1398
1398
  # Draw the right box for End
1399
- flow_layer = self.draw_flow_box(node, flow_wire_map, CF_RIGHT, conditional=False)
1399
+ flow_layer = self.draw_flow_box(node, wire_map, CF_RIGHT, conditional=False)
1400
1400
  layers.append(flow_layer.full_layer)
1401
1401
 
1402
1402
  def draw_flow_box(self, node, flow_wire_map, section, circ_num=0, conditional=False):
@@ -408,6 +408,10 @@ def _plotting_core(
408
408
  if fig:
409
409
  matplotlib_close_if_inline(fig)
410
410
  if filename is None:
411
+ try:
412
+ fig.tight_layout()
413
+ except AttributeError:
414
+ pass
411
415
  return fig
412
416
  else:
413
417
  return fig.savefig(filename)
@@ -23,15 +23,18 @@ def _generate_circuit_library_visualization(circuit: QuantumCircuit):
23
23
  import matplotlib.pyplot as plt
24
24
 
25
25
  circuit = circuit.decompose()
26
+ global_phase, circuit.global_phase = circuit.global_phase, 0
26
27
  ops = circuit.count_ops()
27
28
  num_nl = circuit.num_nonlocal_gates()
28
- _fig, (ax0, ax1) = plt.subplots(2, 1)
29
+ _fig, (ax0, ax1) = plt.subplots(2, 1, figsize=(6.4, 9.6))
29
30
  circuit.draw("mpl", ax=ax0)
31
+ circuit.global_phase = global_phase
30
32
  ax1.axis("off")
31
33
  ax1.grid(visible=None)
32
34
  ax1.table(
33
35
  [[circuit.name], [circuit.width()], [circuit.depth()], [sum(ops.values())], [num_nl]],
34
36
  rowLabels=["Circuit Name", "Width", "Depth", "Total Gates", "Non-local Gates"],
37
+ loc="top",
35
38
  )
36
39
  plt.tight_layout()
37
40
  plt.show()
@@ -281,7 +281,8 @@ def plot_bloch_multivector(
281
281
  reverse_bits (bool): If True, plots qubits following Qiskit's convention [Default:False].
282
282
  font_size (float): Font size for the Bloch ball figures.
283
283
  title_font_size (float): Font size for the title.
284
- title_pad (float): Padding for the title (suptitle `y` position is `y=1+title_pad/100`).
284
+ title_pad (float): Padding for the title (suptitle ``y`` position is ``0.98``
285
+ and the image height will be extended by ``1 + title_pad/100``).
285
286
 
286
287
  Returns:
287
288
  :class:`matplotlib:matplotlib.figure.Figure` :
@@ -345,6 +346,8 @@ def plot_bloch_multivector(
345
346
  width *= num
346
347
  else:
347
348
  width, height = plt.figaspect(1 / num)
349
+ if len(title) > 0:
350
+ height += 1 + title_pad / 100 # additional space for the title
348
351
  default_title_font_size = font_size if font_size is not None else 16
349
352
  title_font_size = title_font_size if title_font_size is not None else default_title_font_size
350
353
  fig = plt.figure(figsize=(width, height))
@@ -354,9 +357,13 @@ def plot_bloch_multivector(
354
357
  plot_bloch_vector(
355
358
  bloch_data[i], "qubit " + str(pos), ax=ax, figsize=figsize, font_size=font_size
356
359
  )
357
- fig.suptitle(title, fontsize=title_font_size, y=1.0 + title_pad / 100)
360
+ fig.suptitle(title, fontsize=title_font_size, y=0.98)
358
361
  matplotlib_close_if_inline(fig)
359
362
  if filename is None:
363
+ try:
364
+ fig.tight_layout()
365
+ except AttributeError:
366
+ pass
360
367
  return fig
361
368
  else:
362
369
  return fig.savefig(filename)
@@ -726,6 +733,10 @@ def plot_state_paulivec(state, title="", figsize=None, color=None, ax=None, *, f
726
733
  if return_fig:
727
734
  matplotlib_close_if_inline(fig)
728
735
  if filename is None:
736
+ try:
737
+ fig.tight_layout()
738
+ except AttributeError:
739
+ pass
729
740
  return fig
730
741
  else:
731
742
  return fig.savefig(filename)
@@ -260,7 +260,7 @@ class DrawerCanvas:
260
260
  self.add_data(datum)
261
261
 
262
262
  # update time range
263
- t_end = max(program.duration, self.formatter["margin.minimum_duration"])
263
+ t_end = max(program._duration, self.formatter["margin.minimum_duration"])
264
264
  self.set_time_range(t_start=0, t_end=t_end)
265
265
 
266
266
  def set_time_range(self, t_start: int, t_end: int):
@@ -188,5 +188,8 @@ class MplPlotter(BasePlotter):
188
188
 
189
189
  if self.figure and interactive:
190
190
  self.figure.show()
191
-
191
+ try:
192
+ self.figure.tight_layout()
193
+ except AttributeError:
194
+ pass
192
195
  return self.figure
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: qiskit
3
- Version: 2.0.0rc2
3
+ Version: 2.0.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
@@ -51,6 +51,7 @@ Provides-Extra: csp-layout-pass
51
51
  Requires-Dist: python-constraint>=1.4; extra == "csp-layout-pass"
52
52
  Provides-Extra: all
53
53
  Requires-Dist: qiskit[crosstalk-pass,csp-layout-pass,qasm3-import,visualization]; extra == "all"
54
+ Dynamic: license-file
54
55
 
55
56
  # Qiskit
56
57
 
@@ -121,7 +122,7 @@ from qiskit.primitives import StatevectorSampler
121
122
  sampler = StatevectorSampler()
122
123
  job = sampler.run([qc_measured], shots=1000)
123
124
  result = job.result()
124
- print(f" > Counts: {result[0].data["meas"].get_counts()}")
125
+ print(f" > Counts: {result[0].data['meas'].get_counts()}")
125
126
  ```
126
127
  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.
127
128
  To illustrate the power of the 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 that the Estimator requires a circuit _**without**_ measurements, so we use the `qc` circuit we created earlier.
@@ -1,15 +1,15 @@
1
1
  qiskit/version.py,sha256=MiraFeJt5GQEspFyvP3qJedHen2C1e8dNEttzg0u7YU,2498
2
- qiskit/__init__.py,sha256=BAdBBkA5KfLScFyiI6le8qONUJysnbFwidu1DchfbWw,7408
3
- qiskit/_accelerate.abi3.so,sha256=Sfn0lrQmnPn_qaPX5xKaXj1obzHL9KFeLSoe72C6eLY,9646896
2
+ qiskit/__init__.py,sha256=PkJcNRSj84w0sadJYoUVlJsFX4Kpl_ftp4Zwg2KZcxg,7182
3
+ qiskit/_accelerate.abi3.so,sha256=ZVEurf_nycCjcnnAYlnt9Hx9-CCU55Y8LGhsKjJFLDQ,9715680
4
4
  qiskit/user_config.py,sha256=3ez0XDwu0WKnjdHB-LNk4XRTQl9Eu-WgqkXOC771pTs,10325
5
5
  qiskit/_numpy_compat.py,sha256=ZlnDTF2KBTKcVF489ZuxoBk6r9KLsMuhAlozFhOn0a8,2815
6
6
  qiskit/exceptions.py,sha256=78bbfww9680_v4CaNgepavY5DwGTN7_j47Ckob3lLPM,5619
7
- qiskit/VERSION.txt,sha256=7aptyQ-2F8VHC1PykWxcrN6WGOVK7BfF8Ehq-dyauQY,9
7
+ qiskit/VERSION.txt,sha256=_oQPUvtVeNP3frSXEV6wLGA2YBw6U-YN95lccna6p3o,6
8
8
  qiskit/visualization/circuit_visualization.py,sha256=6R-A96Uwb_RZOovsSB0LGVsC7lP5IhtLNp6VP2yVBwE,698
9
- qiskit/visualization/counts_visualization.py,sha256=qBJHQyD6oSAa9nacOQvUPu6WpGGJ7baxy2Y6YerAWVU,16887
9
+ qiskit/visualization/counts_visualization.py,sha256=Gy-rPzK5lWVMmX7ZSYUlAFvxcnlI59ym_5LnfJkSHSQ,16979
10
10
  qiskit/visualization/pass_manager_visualization.py,sha256=hJIvex7i-DQuOOq73TbPMzsQZDOaoElqrJO000v51ck,10972
11
- qiskit/visualization/state_visualization.py,sha256=QSDrAbLoXkLLgmccBDrTKeytD0ROPIIHAD3vX176Frk,52976
12
- qiskit/visualization/library.py,sha256=oCzruZqrshriwA17kSfCeY0ujZehr6WZnWvZNmvUw7g,1295
11
+ qiskit/visualization/state_visualization.py,sha256=BCL7sT3j49YraKNqswd69tO8RGfGwDwpzalzI9_hTrQ,53300
12
+ qiskit/visualization/library.py,sha256=t9HYIE5z6jsObS4jlPn-zdsNpOOGFTzYo4wgltTn-Dk,1439
13
13
  qiskit/visualization/bloch.py,sha256=M9QL6q8OeEt3l9C-BS1Bz8DOh1kyEmYNH_DJMqM-3lc,30214
14
14
  qiskit/visualization/transition_visualization.py,sha256=zVMSf0p2amqGdHgoevtNlVQCHAQgGp47MJTd6rCAEgs,12264
15
15
  qiskit/visualization/gate_map.py,sha256=O-5P0gq3CFaxV_4WqqXfmLFszqe95-QQoz1BQROSSIA,34629
@@ -21,7 +21,7 @@ qiskit/visualization/array.py,sha256=lbSi6rO7FQOvm3C47LIgZ0rbfReXKEN1FaNVniQ_aYg
21
21
  qiskit/visualization/circuit/circuit_visualization.py,sha256=rIDWexQpDRdIT9gBOTIUHIZ63CNw6opmLP-mpWIxSjU,29562
22
22
  qiskit/visualization/circuit/matplotlib.py,sha256=D7Vg6roIxtNYxi6bhjj9ofzKFWh8uwk4cBRVG3xac74,79075
23
23
  qiskit/visualization/circuit/__init__.py,sha256=nsSvXY3I5Htg52GHr2SyXMx9cb__jrX7dWj9x5esyTw,573
24
- qiskit/visualization/circuit/text.py,sha256=UIMaGbSEuCDtBXzHCbQJuyEPXdfH_bJEfc_KOtlfBSY,71503
24
+ qiskit/visualization/circuit/text.py,sha256=ah6Tj8QXTy1XZjSwsje_wMCXqEPfRc2aJ5CuCf8cuxg,71498
25
25
  qiskit/visualization/circuit/qcstyle.py,sha256=dh7UGOimKm4aO6BVnAiHaqTQ1ZAJMcw39RzhYIW6LgA,10633
26
26
  qiskit/visualization/circuit/latex.py,sha256=DsvKYmOWjRTBlQVHMJnunme8jUpsHJ1Tyu0s1X5XwvQ,26232
27
27
  qiskit/visualization/circuit/_utils.py,sha256=UfviujnkxcYcUIT2q19OLie1Qcu2qotNtddjgfHVRew,24497
@@ -34,13 +34,13 @@ qiskit/visualization/circuit/styles/textbook.json,sha256=iRDk82xHfS7kVvivWaEpTwR
34
34
  qiskit/visualization/timeline/drawings.py,sha256=RCOw9TKZWbLwCVx1n7COPgzyC-2Id9l7F_67_PqQc18,9721
35
35
  qiskit/visualization/timeline/interface.py,sha256=0AwoeVTowce3nnEt7Jy67oUPQCJkV0WPIJH2W7suhvo,21519
36
36
  qiskit/visualization/timeline/__init__.py,sha256=Xr7ejeUy4xwJDHzhTW4ZpaltmQum9xK-953zDHdUnzQ,701
37
- qiskit/visualization/timeline/core.py,sha256=TjVrsIc4aA7XIYRitwdjQn7PnmCs4T6jGyPuSJjEY4M,19609
37
+ qiskit/visualization/timeline/core.py,sha256=EL74uRrhWjU3gLQ-DW4z0l4EQskDDNeKCirCe1VK-BE,19610
38
38
  qiskit/visualization/timeline/types.py,sha256=-mp8Oh7FrDvmCJGfFjViuY_SGuJMZZdkxJdhsaTTOAU,4627
39
39
  qiskit/visualization/timeline/generators.py,sha256=SwoPHpssTayvOTNke9jsJFxh0u8dNhluUYUChK7cb-E,15259
40
40
  qiskit/visualization/timeline/stylesheet.py,sha256=S62ob_aO7GvS5KGdyB6xve53vNtNunWcG7Yx3D2Fd1A,10914
41
41
  qiskit/visualization/timeline/layouts.py,sha256=hVfzIjX9H_l6vvptGGpy7dR-EnPCoJkzHqaFsTsZWlA,3187
42
42
  qiskit/visualization/timeline/plotters/base_plotter.py,sha256=1do-sZjHjUzqh3HI3MtN4jXJiLEE1j1f56JSXaR_C68,1747
43
- qiskit/visualization/timeline/plotters/matplotlib.py,sha256=4PfgOQCJa4dzwEpGR9me403DKyJ7W6Gk2PVINOTxQpM,6894
43
+ qiskit/visualization/timeline/plotters/matplotlib.py,sha256=15dka2ohGPUs8889JcUqITdo4dCoehicwCrbbpntmkU,6993
44
44
  qiskit/visualization/timeline/plotters/__init__.py,sha256=3uM5AgCcqxqBHhslUGjjmqEL6Q04hVSGvl3d2bsUtTI,572
45
45
  qiskit/transpiler/timing_constraints.py,sha256=TAFuarfaeLdH4AdWO1Cexv7jo8VC8IGhAOPYTDLBFdE,2382
46
46
  qiskit/transpiler/layout.py,sha256=NI4dY-59KnaZmgz34B2Uiv6KEIxWSsTplmASpiQ7SKg,28321
@@ -50,9 +50,9 @@ qiskit/transpiler/basepasses.py,sha256=ecLZAg1lCHb58EMufMTJsZTQBUFDL6AFufjcII2jV
50
50
  qiskit/transpiler/passmanager.py,sha256=sYcP_7B3wwfbpuUSAAZiPBCuHu9tCSHDWDWQXPYtggw,21179
51
51
  qiskit/transpiler/passmanager_config.py,sha256=m99QAUuUocCVcDM--TvA2k4RIXFbz6QIChLrj5kyxFY,7278
52
52
  qiskit/transpiler/exceptions.py,sha256=ZxZk41x0T3pCcaEsDmpDg25SwIbCLQ6T1D-V54vwb1A,1710
53
- qiskit/transpiler/target.py,sha256=rNmbERTNvyCEE7qUV3y1-fqbNVyaH8C9gwWbLToKoDo,40714
53
+ qiskit/transpiler/target.py,sha256=XeLYvQ3fdhWFkM4vAJRjoXX8L9PMj23FjzufMUgHm5c,40962
54
54
  qiskit/transpiler/instruction_durations.py,sha256=sXX_-jbf6I5R4cHpBBheQaTaRRa4b24Fp7E750AhrC0,11236
55
- qiskit/transpiler/passes/__init__.py,sha256=XhzfNBGXsHRAllmHCKZK4hOl-edPJ7tAA8KH1ZxJGGc,6960
55
+ qiskit/transpiler/passes/__init__.py,sha256=Lry74MlcSE4QfdGX7AqZO_RM7sPp__ffhzDNpC_1vuA,7009
56
56
  qiskit/transpiler/passes/analysis/dag_longest_path.py,sha256=bOUWUR_2Y91pyvtXjEmAQxSgWyXaqo3XhSysn-3L-4E,957
57
57
  qiskit/transpiler/passes/analysis/num_tensor_factors.py,sha256=KK5DcFja8JsO0pfYvmYGnyEAPMZPYUTJpT9xWhwiYWI,950
58
58
  qiskit/transpiler/passes/analysis/__init__.py,sha256=zFkmqBW9ZfrVg0Ol6krRE7D0h-S5sF89qkfDdW_t5Eg,875
@@ -64,25 +64,25 @@ qiskit/transpiler/passes/analysis/depth.py,sha256=jXHZh9d1Jaz37hhwiphri3BupneLYf
64
64
  qiskit/transpiler/passes/analysis/width.py,sha256=M1OdalctWGZKoH8KPqtG8qixZ2UpwrWdk--SEgk5-9s,913
65
65
  qiskit/transpiler/passes/analysis/count_ops.py,sha256=7SksGCe0VqXfnu7o61NffbQdE4HcohiSENUn5gTsF0w,991
66
66
  qiskit/transpiler/passes/scheduling/__init__.py,sha256=rUNEcSLgolzQu7QAg_I375pIMPCnR0VSp8SEKMhC6DE,871
67
- qiskit/transpiler/passes/scheduling/time_unit_conversion.py,sha256=WFtqBxqndwAxHi1FePZQiASvR0gFOIfH3JHbVai3KxI,9417
67
+ qiskit/transpiler/passes/scheduling/time_unit_conversion.py,sha256=lyHaRYlNZ11QmKl_cUNrpcPqw_ctfxWwtlSowhQ-1FA,9601
68
68
  qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=KD-iUyP_T0vcGREpp0mXfduxGIcVNOGey2zt_GpWDk8,3958
69
69
  qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py,sha256=Iaugc8TIaSxocmUHMe_bBokXS_2dKtDz0oicKdhq3VM,3288
70
70
  qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=j9kq0m8giXi9uTZnHYT5cxsJzUWp7H_jL_J8wt6C450,4292
71
71
  qiskit/transpiler/passes/scheduling/scheduling/__init__.py,sha256=nuRmai-BprATkKLqoHzH-2vLu-E7VRPS9hbhTY8xiDo,654
72
72
  qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py,sha256=NzdU1K_aBt5yQCIuUHUSjkwZhdVtk6SG3uOMT5bZVsU,2854
73
- qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py,sha256=LxVWlb5JqGnaTJcX1UjoPFxiZMgfCya2znG6UXJiyvw,19133
74
- qiskit/transpiler/passes/scheduling/padding/pad_delay.py,sha256=PqChujOs9dEzsbcECdCZ6qVuseCAdWjuzAugBLL_Wnk,3066
73
+ qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py,sha256=Wu280IavGYEbpJMY5dHVNXzv4-swIfgmteKP4zAtUGk,19138
74
+ qiskit/transpiler/passes/scheduling/padding/pad_delay.py,sha256=SuZT5vViyPBfnf_vEs-v26aDC5rWZXnNYs2-SqDEjXo,3067
75
75
  qiskit/transpiler/passes/scheduling/padding/__init__.py,sha256=SFLOuwUFgrBv5zRCemIWW5JQvlwCd0acsC3FytrYzII,629
76
- qiskit/transpiler/passes/scheduling/padding/base_padding.py,sha256=CFN-pPIRYvlII8uPk8pbig8HvsFmMHM1vw9tENsQ1kc,11680
76
+ qiskit/transpiler/passes/scheduling/padding/base_padding.py,sha256=GTr3Lw8rjiGaAjeWiQM4C3Qnd53N3gWEG9HS7NFp7_A,11682
77
77
  qiskit/transpiler/passes/scheduling/alignments/reschedule.py,sha256=qhS4K6F9EP2v959UGwXmDI_SnhE7iyUrQeai3XaSgJk,10546
78
78
  qiskit/transpiler/passes/scheduling/alignments/__init__.py,sha256=ay4z7sEIOososKRPD0yoNdEkMzLe6H_RlknTrjN1zJk,4044
79
- qiskit/transpiler/passes/scheduling/alignments/check_durations.py,sha256=1wMn1X97OwkMW0IWGqvUCDojsbQqQE4XaY7eAGTUfOA,2998
80
- qiskit/transpiler/passes/layout/sabre_layout.py,sha256=JFwjVY3VO_BRsMvkdOLFlwW1TxvKjkZsATD6Vah1EkI,23790
79
+ qiskit/transpiler/passes/scheduling/alignments/check_durations.py,sha256=xFgBP0BLnp9o52evz_7tChrBAnyPf4NA3SvwYSh4VEQ,3027
80
+ qiskit/transpiler/passes/layout/sabre_layout.py,sha256=Rl47881v42oSSRdV9HnBl1Y-IjkGcWds4cmUb38EDOU,23868
81
81
  qiskit/transpiler/passes/layout/enlarge_with_ancilla.py,sha256=1sEO0IHeuQuZWkzGE-CQaB7oPs6Y1g-kO1_Vuor_Dyk,1724
82
- qiskit/transpiler/passes/layout/full_ancilla_allocation.py,sha256=UxBEYZ7AJz_7_LJpvCnCziAWWRJVkrmYvT6iW9ORIdg,4624
82
+ qiskit/transpiler/passes/layout/full_ancilla_allocation.py,sha256=0_AB6qAMbY-JMAycddlEesF0KVopxHsLB7pI-GSWiwg,4573
83
83
  qiskit/transpiler/passes/layout/vf2_layout.py,sha256=-E9opzrr5wbjAstKUBORlUK62eMley8OXRtQ6mfxt1I,11611
84
84
  qiskit/transpiler/passes/layout/_csp_custom_solver.py,sha256=BnyCQim89cPPzdMczvTA9e0CZ_zxn6n6H72waJzu3Oc,2748
85
- qiskit/transpiler/passes/layout/vf2_utils.py,sha256=55yXoJipwV8TqZHP3m-9EoF4zrpV2puW5Y3URomzQfU,9635
85
+ qiskit/transpiler/passes/layout/vf2_utils.py,sha256=bf9ruwAGPit_fQegLypwBOgG5jncHWyMszGvIlc42Ag,9580
86
86
  qiskit/transpiler/passes/layout/__init__.py,sha256=sS1jZFl4JORuzuU7uEjryZNhLbwqoo4dWAyfry4v-2Y,1042
87
87
  qiskit/transpiler/passes/layout/set_layout.py,sha256=KJFDlhNsQUe58SWbJVhMlGHLQyN_mJMayT-qmBet74w,2514
88
88
  qiskit/transpiler/passes/layout/layout_2q_distance.py,sha256=BC6zrKgVQD18fvnQZlZffeF2uhwSzWIqCUnOHbJODVE,2723
@@ -107,7 +107,7 @@ qiskit/transpiler/passes/optimization/remove_identity_equiv.py,sha256=BNHGVOzzE4
107
107
  qiskit/transpiler/passes/optimization/commutation_analysis.py,sha256=s7If4XhnH4l6K54lT7AtqQK5mMKxzDIndyMwAEEl2GU,1804
108
108
  qiskit/transpiler/passes/optimization/collect_2q_blocks.py,sha256=IVQDvs70ZPzlX5VVCwNFGTuivTDk0atcNCzD5wXvtEk,1224
109
109
  qiskit/transpiler/passes/optimization/commutative_inverse_cancellation.py,sha256=JSo2J9PIXKmr44_zQ5_z3q8N3zsytUq-_0TLDk2jvmc,5553
110
- qiskit/transpiler/passes/optimization/__init__.py,sha256=VHwRs7F-johUOMKrUKCEaE3tmp8wfC4O6LT4VSvmPWI,2110
110
+ qiskit/transpiler/passes/optimization/__init__.py,sha256=R7weGtxO9pi7DjEXhV5gJHhr07SJxGvgEHGlka2UiYY,2144
111
111
  qiskit/transpiler/passes/optimization/remove_reset_in_zero_state.py,sha256=xE5ok4OOLQ8idRN534W8Rev1E6QWeTZgcHVZ-tWPaYI,1247
112
112
  qiskit/transpiler/passes/optimization/commutative_cancellation.py,sha256=2IA7m3K-iIV9xMUpUyOiGlpu2JCA6w0dTXJZBAa8ZrQ,3274
113
113
  qiskit/transpiler/passes/optimization/collect_cliffords.py,sha256=ZFsOmfok3KOx1phNPZdvwDCITdRi6vXmO3QggxUrPIE,3857
@@ -146,13 +146,13 @@ qiskit/transpiler/passes/utils/filter_op_nodes.py,sha256=iTy_oBNIFJOTFEEUUe3qW6_
146
146
  qiskit/transpiler/passes/utils/gates_basis.py,sha256=9AQ8uKi4CmiGF0CBnLQfc07ca_H5LBOyGshpcKW4UnA,1987
147
147
  qiskit/transpiler/passes/utils/barrier_before_final_measurements.py,sha256=1N8OMvteNo9UpRPn7aST62D56u8ikSTYK8ZFZWKOYGE,1530
148
148
  qiskit/transpiler/passes/utils/fixed_point.py,sha256=AiwkNvu-SLHvodddJRKfFEl7FPC62u1f3CB9lRne9eY,1773
149
- qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=7dyP7aHhBA-iCGuYN3L1yJn4Bbp2glysUncDzWIbtJM,11122
149
+ qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=fK5OjEqFo59dEcob6GFALfJDkULCvliJzQMA0CFuJW0,12016
150
150
  qiskit/transpiler/passes/synthesis/hls_plugins.py,sha256=uh9tQ0hmbWvLvuk--k4kWC-W9v5-Xawwp4tRtDoDSPs,74210
151
151
  qiskit/transpiler/passes/synthesis/__init__.py,sha256=VYO9Sl_SJyoZ_bLronrkvK9u8kL-LW9G93LbWyWNEaM,925
152
152
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=VppNWxqyI4lNo6qnIbnulAB74Og7LLNXXt7teh50Kt4,30966
153
153
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Q1r-52HMETK_7iWTMmJKGU39rNws-MrmGDHh7TgQVj4,1407
154
154
  qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=8RgceAqPgTJYCc5uBhQpyfWr39hF6EHd2HKyUMTawdY,19932
155
- qiskit/transpiler/passes/synthesis/unitary_synthesis.py,sha256=by-YJOAhf2sLsWuD-E9725UKfNDypOdgNJya6gXpLLc,18956
155
+ qiskit/transpiler/passes/synthesis/unitary_synthesis.py,sha256=U0JZOEuVCjAfeCk4jkrBLuwQ6wppP6zAMTA6A57VTAg,18999
156
156
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=SDgHqcCHR0hON50ckSHQDrVnBzOc-I7hYibE6r6oaB8,5343
157
157
  qiskit/transpiler/passes/synthesis/default_unitary_synth_plugin.py,sha256=24klmHSXXsd5hWCXaXR70-8qXirervLNJVMzkV0N2AM,25800
158
158
  qiskit/transpiler/passes/routing/__init__.py,sha256=OL-E0K_-kEaYf_7Dxtlg6-7alBNnC_LCxPD5ODwVA5o,898
@@ -175,12 +175,12 @@ qiskit/transpiler/passes/basis/decompose.py,sha256=keUaMMYlMei4y7E19g6duuXNVw-Oa
175
175
  qiskit/transpiler/passes/basis/translate_parameterized.py,sha256=jNekE2530Pj-WGlxDPfCa8bErISDFhRUsC3j0GtrxCs,7425
176
176
  qiskit/transpiler/passes/basis/__init__.py,sha256=JF0s79eUZOJo-8T8rFUlq0nvF7Q-FS7sqjB1A2Jy7Yo,783
177
177
  qiskit/transpiler/passes/basis/unroll_3q_or_more.py,sha256=K33LIqI0HPUrY4qvf0nKGLnP6UQ_Vqohytx-MskGt0Q,3589
178
- qiskit/transpiler/passes/basis/basis_translator.py,sha256=2Rs3Se4kl6HXJkrXBsmlbxx2qgnIjPLu3IsFrFfykmk,6381
178
+ qiskit/transpiler/passes/basis/basis_translator.py,sha256=VwIucxhx_QieSSszvuR_Yfqy5LkgK1-J59MjEVFtdpQ,6375
179
179
  qiskit/transpiler/passes/basis/unroll_custom_definitions.py,sha256=x7Kxdaw8mBvMJsVSZVZC_w83zZsX0YhKf0fWvNdJ9-c,4409
180
180
  qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=suZ78YjTmoFHzEwsN4FodBPXtv9dUYxizHS9reTAefQ,41083
181
181
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=duJK0fkqhIWdf4Eht7rye6l11sr9EbrZblg4_31CJko,3942
182
182
  qiskit/transpiler/preset_passmanagers/__init__.py,sha256=vMORfd0SYw2sbKqThg9nbB8K1pkUgfQ4dBGBgnhlUZA,3305
183
- qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=GWLnp6WIQfb3IPcfWWawfcQy7Fm_fWDZdclBxZZI7FU,20616
183
+ qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=0GJ-XvyRdCuslcm6uZ9JGE_QA36KuxkORuTqvCkBTuU,20871
184
184
  qiskit/transpiler/preset_passmanagers/level1.py,sha256=784FfnLDunsRZP_2o8_x5J3sbVpsaQVzz6wbRXZAwvo,4212
185
185
  qiskit/transpiler/preset_passmanagers/common.py,sha256=M0gjA4HMPGlarcqqM57g5aA0MC8NCZCacIsEtzmpmvE,27402
186
186
  qiskit/transpiler/preset_passmanagers/level2.py,sha256=cYQ1HG0QlZ-bT9UuX22IQkNh_Bxaerx0VL4W4yawdd8,4292
@@ -192,11 +192,11 @@ qiskit/qasm3/__init__.py,sha256=sPoFMVaRnJtVRrIl7SlKaMgQaeKQptoiZbkfmfePGzs,1335
192
192
  qiskit/qasm3/ast.py,sha256=7dEFPe9BmDRUdxyOoOsnCeKLT2YSrF-klq178m6ND_Q,18411
193
193
  qiskit/qasm3/exceptions.py,sha256=jNfCnD7kXAGCF_DbtLPfyJCidThqf0Vdp2ORPDqvm2c,909
194
194
  qiskit/qasm3/printer.py,sha256=9RrqV-6tNGnHvjmbuP0uHFZ4_8ELS030UbwUvRIgpIg,22466
195
- qiskit/result/models.py,sha256=Vf3tDZQEZwG9zjj4PPh6xxQJP5H14jaHxdROxXI7mDs,8436
195
+ qiskit/result/models.py,sha256=eJsopbTE0844coClbAm5NhOwFJKHo3TvlKT_0PGsjQI,8420
196
196
  qiskit/result/sampled_expval.py,sha256=QUy04CvelKzxiZ5KmWSSzy1L7J-VDBfkYF6CV3x16Mw,2746
197
197
  qiskit/result/postprocess.py,sha256=Bezcctrhbf5M1trxNIrzepZ8HMMdXHJdRBp8pm-9qkU,7876
198
198
  qiskit/result/__init__.py,sha256=jr-z-38DbVpJCTGu14fBRRA2BdZCxhfI-kjrFU4l3UM,1460
199
- qiskit/result/result.py,sha256=ie7LqQm1gEBmat95GdA7oJC8Bz38B1X8zvcDD8zToos,15346
199
+ qiskit/result/result.py,sha256=LYt49ZljXUYNvwtBWtgnNXCTUw7EdsYrkFq-okKPDBc,15302
200
200
  qiskit/result/utils.py,sha256=qGstQWOURswsPK3INdv5I8L4aaWMnWxtDYs5WxlL_V0,12454
201
201
  qiskit/result/exceptions.py,sha256=laQ7x4aZ37bMNv8JkJNuN3BfQNxehL146OPib1kANo0,1256
202
202
  qiskit/result/counts.py,sha256=9pY4AcLX2bDqzGoRWsUFON5RjUOTGNEXeuSxYcgPRIk,8229
@@ -217,7 +217,7 @@ qiskit/circuit/annotated_operation.py,sha256=9TPDzb_iFHjz1Qb-zekywdwD2FIe1J2kZM1
217
217
  qiskit/circuit/barrier.py,sha256=4dhN4lie1DhcHrlwi5OJ8ghJ_xmdb75PDzmEm173vKk,1586
218
218
  qiskit/circuit/reset.py,sha256=ZN1fPET4Lqsw8N03kyp4JVdM6auxnsiS1Hy_u_JHn24,1196
219
219
  qiskit/circuit/duration.py,sha256=_nN8cP9vjjurDXu74a_wiFOsP7bDmDcQgbjmzkQadGo,2439
220
- qiskit/circuit/__init__.py,sha256=OtAgmKZEosWdp5UqZIOSG_V-bsTnN8IQnI26ky653f0,61953
220
+ qiskit/circuit/__init__.py,sha256=ntwHV1UDyUbGTwULs4BtvawgkjjevNmOkVcft-FLavU,62164
221
221
  qiskit/circuit/operation.py,sha256=5SrIb_ap6EVKRHMNud5t-Iu7RU3Hz_KFSFjUUfHuf9w,2077
222
222
  qiskit/circuit/_add_control.py,sha256=YfJMZjonGp14emNNk67wFJMOnh5G_NF_xtozw0jvWUc,10987
223
223
  qiskit/circuit/parameterexpression.py,sha256=qZlcvGdtN9qaeAOc-WHDQOGAsGzjO-6VeIjfFbARbOY,27542
@@ -229,7 +229,7 @@ qiskit/circuit/singleton.py,sha256=NCs1BeOkFwThKU3GIyT3AwW8Z81aW_jCoRemYswii7Q,3
229
229
  qiskit/circuit/controlledgate.py,sha256=AimgMwjGI5xnr13-1pzJJix7B5bfBaOhDfRJ4eFSYyo,9792
230
230
  qiskit/circuit/exceptions.py,sha256=QoT6kFuoVLe6lWUlTKkSMWufVtyfDCgaUe1kyv79WAY,691
231
231
  qiskit/circuit/equivalence_library.py,sha256=7f2T6c7sbDWaVQNVALNJL0olLVFZmHgA9xzcy7_FdDQ,708
232
- qiskit/circuit/quantumcircuit.py,sha256=TZRUr-h5YfbOPy6a9xzjSzlj-VdWGuMR0pFbmYdAKKc,309486
232
+ qiskit/circuit/quantumcircuit.py,sha256=Fwlflumt2DqnIEp8qqDXOydkjFud4HZh3UTZn71_rcs,320461
233
233
  qiskit/circuit/_standard_gates_commutations.py,sha256=1E6i6Atz3PkHGpguFFfTOcD9ffXCncCE1Jx6AlafMww,99006
234
234
  qiskit/circuit/instruction.py,sha256=jWu4tCkrKoXaePFVrObgMebLhRO_Zb4wXT4f7QB38BY,20884
235
235
  qiskit/circuit/equivalence.py,sha256=8KmspRNLHbMx3OYG76ESA5_nXZJRDfvoDb3mhy7eV4A,3436
@@ -242,11 +242,11 @@ qiskit/circuit/tools/__init__.py,sha256=_Rpdz9Yqiksplpw9CSGq0gOAJDIxoXQ26BRkHi1x
242
242
  qiskit/circuit/library/pauli_evolution.py,sha256=yv5H-xiUoOqeAvPUtFrSh-v10fqXHdK2eVKe9i0DN-c,6929
243
243
  qiskit/circuit/library/hidden_linear_function.py,sha256=2X_9jf8alqG2gbg7rJRWP1qDhSJFuH9MXC8Ct824Jek,5670
244
244
  qiskit/circuit/library/blueprintcircuit.py,sha256=zHeB3hpW_svujtkQqpDoOEGMlrUXKJehV2ItuugT3i4,10980
245
- qiskit/circuit/library/graph_state.py,sha256=jZqgdTzAwE1i5Y6ag9jDMOXt_kVTGmohI6AsTEHMakA,6240
245
+ qiskit/circuit/library/graph_state.py,sha256=uV7oNK9d2m26mLnJVe2-NRZPVgMvZ8T08m_pSm7PaMM,6276
246
246
  qiskit/circuit/library/iqp.py,sha256=SOwiIzg4CSXBERMvDq6D_FP52JzVL1DMlYjNzerBkIo,6092
247
247
  qiskit/circuit/library/fourier_checking.py,sha256=kCVnbrhTDLVp-wqkqUpJ9IfrwxcA9Powg_HUxpW7l28,6386
248
- qiskit/circuit/library/__init__.py,sha256=yilgPQ0hnbIDyT6fJWR2_TCA2NxGV9t22cxMQFbE58E,16707
249
- qiskit/circuit/library/quantum_volume.py,sha256=tkqGE28hYT2lfn7m0eg4CY3DHD4OTihrwAMgc1ccHj8,6818
248
+ qiskit/circuit/library/__init__.py,sha256=_7FYcalYqgpA10NPTHzXXKhrzLlksgLY9i1EkxSohpE,25512
249
+ qiskit/circuit/library/quantum_volume.py,sha256=dtd0B8Og7ds_OFF4QQ4VM8MlD0rixLSnTMTms8kPseE,7311
250
250
  qiskit/circuit/library/phase_estimation.py,sha256=ptXPL6sM9-1ArafyLGF-szwfrFG8fB2tDoZkrqNCEH0,6590
251
251
  qiskit/circuit/library/overlap.py,sha256=Q8u5SxQJ1M9V-ADfb3qzGFthES72AIP425CMFcZjSeo,7146
252
252
  qiskit/circuit/library/grover_operator.py,sha256=fGyheiKM4f6z1TND_s4lY_MGqoIsr5AM2tV4jJL2jbQ,28470
@@ -307,11 +307,11 @@ qiskit/circuit/library/arithmetic/multipliers/rg_qft_multiplier.py,sha256=fhFUM0
307
307
  qiskit/circuit/library/standard_gates/s.py,sha256=yJRxBpKnJW8H6u8ZZPeoEp98saE5lzDK3U5MyDNjUpo,12457
308
308
  qiskit/circuit/library/standard_gates/rz.py,sha256=Y_JCZujQb_ol3jyWWRKokv2VJo9aqkQ_u90kKU0xN-8,10541
309
309
  qiskit/circuit/library/standard_gates/u1.py,sha256=5F5q4U4xuO_QWJ2A7RSuPvCzdFedit40bjI7WNDc6wY,15700
310
- qiskit/circuit/library/standard_gates/r.py,sha256=11eurd-8yvZbdJsHX5fbYNiig4Tw8_q2qBfrdcZqFWY,3867
310
+ qiskit/circuit/library/standard_gates/r.py,sha256=R_oGEYXQ27IZw8277fvnIgCH5ea3QLXxySe1YYPAbwQ,3897
311
311
  qiskit/circuit/library/standard_gates/swap.py,sha256=WcfCalCRDcEnvrKSktezCJIFwe271XZZR5usa5jMq5I,8732
312
312
  qiskit/circuit/library/standard_gates/y.py,sha256=lvngibtU_ci-3qfzhKzWtOUsDbefdiOHPfIJi89RFBQ,7682
313
313
  qiskit/circuit/library/standard_gates/__init__.py,sha256=8wIoY7hEet-xOJQijyo-p4fAjaxaTfr0mohbdk5jaPY,3906
314
- qiskit/circuit/library/standard_gates/x.py,sha256=J-JD94A-QIMCrplTBeQyoPzV5Dyaz2Do19tP1TArFf0,50359
314
+ qiskit/circuit/library/standard_gates/x.py,sha256=Ngp_Dg04Fvl0TuKCD_e32E383Vq7ZOiHnxaOVxU42l4,50303
315
315
  qiskit/circuit/library/standard_gates/global_phase.py,sha256=KQQmbQwJUMi2Z8ClN_L0tXLULV8Kzk-8SNbySEjDgDY,2832
316
316
  qiskit/circuit/library/standard_gates/rzz.py,sha256=XiOydSoQz20x1-MNp-Iu3AtrQ6zoug5Dl2Rj-6PCR8M,6389
317
317
  qiskit/circuit/library/standard_gates/xx_minus_yy.py,sha256=P9Yz2qQ-JrdjFPcIQZSgVUF30PrV1G16zVwh781aJPQ,6724
@@ -412,11 +412,11 @@ qiskit/circuit/library/templates/rzx/rzx_zz1.py,sha256=Wo_-ijdk0CP3HIGfFfJ2YEwAQ
412
412
  qiskit/circuit/library/n_local/evolved_operator_ansatz.py,sha256=TJUYyFtz7jybV1a3eC1UCQlWeawviGUuDnyUqa6QdGo,20093
413
413
  qiskit/circuit/library/n_local/__init__.py,sha256=sEpYKg36aPCdssHMZEN3yPreSmfL-Un3-bH_2xOrrJ8,1440
414
414
  qiskit/circuit/library/n_local/n_local.py,sha256=eRp-el0abF2-8knlx_OzO3nuZNd2yV1YhDwgOsGIb7s,61083
415
- qiskit/circuit/library/n_local/efficient_su2.py,sha256=Pw1EpB2VwRJefSbYi9lsbZo1cYuJtTHrOc4b4RjJSgQ,15539
415
+ qiskit/circuit/library/n_local/efficient_su2.py,sha256=jEQvGltoj8JmqGsgFarYv3nVYdIdhdgjMZjK6VbHaRE,15557
416
416
  qiskit/circuit/library/n_local/real_amplitudes.py,sha256=Hn0WHRPSwSI8nGOCHNapnEtwnlcXbdnEDqPNz9KkuZI,19657
417
417
  qiskit/circuit/library/n_local/qaoa_ansatz.py,sha256=GxLd1krmu3Xev9xqpyQ58c3VB8nW7kmKdZAEicAHCZQ,14353
418
418
  qiskit/circuit/library/n_local/pauli_two_design.py,sha256=pyojnEHeA7EEZ5ayh8GI_fDb2yPbTizvTHU93kYyo3o,11203
419
- qiskit/circuit/library/n_local/excitation_preserving.py,sha256=TAbk6JDyKsSvLrDowKGXzR20KPnnXQ2nGl9rW0vxVx8,14573
419
+ qiskit/circuit/library/n_local/excitation_preserving.py,sha256=iPkVBOYLNgIE2czVDG5VNd7alARmtI9Wl-pJVZL9lvI,14591
420
420
  qiskit/circuit/library/n_local/two_local.py,sha256=DNgYjVcSvm5OpCSGj4CNOsn3CnBKyUCVUESDJvPmN4E,17004
421
421
  qiskit/circuit/classical/__init__.py,sha256=5zOBe5WJQ7ZyY0CskWn8FfvET37HuuQXWULsDt6iTDM,1909
422
422
  qiskit/circuit/classical/types/__init__.py,sha256=BMWjF6ty6A1gRV32sb_rk2M7NaPMBI1HQ482ZwJAB_w,4114
@@ -424,7 +424,7 @@ qiskit/circuit/classical/types/types.py,sha256=cBFe1foyLG9OlBmHLoaMhYVEu8yqgieaX
424
424
  qiskit/circuit/classical/types/ordering.py,sha256=Nv9acVNVNubPvcoAZXPCudY88RpF0n2OZKr5A7FBl18,8232
425
425
  qiskit/circuit/classical/expr/visitors.py,sha256=nHODfeTKbfdEHxIwbuxkb_8lYHJ8GhRY29OJ-U14lDs,13387
426
426
  qiskit/circuit/classical/expr/__init__.py,sha256=NeH_zllDmTB2yOtIWxNG-HEMh-7x_MTczJUyB6XICKg,10092
427
- qiskit/circuit/classical/expr/constructors.py,sha256=8s9ROU43T18NoCcK7LFKdJA2fcqFgq6pBr1y8iBNWsU,28968
427
+ qiskit/circuit/classical/expr/constructors.py,sha256=ambgWvEqsdwtskdSWNaxQa_8xYztWY9WB9lJiPiFz24,28446
428
428
  qiskit/circuit/classical/expr/expr.py,sha256=dJpCTXfqOcU9DMNjFb-8AHgyGTJJ8frHLVExFJlh7n8,16535
429
429
  qiskit/circuit/random/__init__.py,sha256=8c5pzxEva0bHKI4d9bumaEgA7mUU7EdfNlJMKSKn61k,589
430
430
  qiskit/circuit/random/utils.py,sha256=s47l_0aDOYdm18d9NG1J3K4-NEKyQJYaIqGjRcReKKE,15047
@@ -456,20 +456,20 @@ qiskit/providers/basic_provider/exceptions.py,sha256=b9HVfcQBTe2at9D1bMU3RXaVNKT
456
456
  qiskit/providers/basic_provider/basic_provider_job.py,sha256=lnkaILX5Kp3xqBiC9VulN3OvwvixOKL9847CaAuyDJ8,1850
457
457
  qiskit/providers/basic_provider/basic_simulator.py,sha256=FviA6yrjTh6lRULV8O4mLydWRxAeGA0gMp95be80l3o,27282
458
458
  qiskit/converters/dagdependency_to_dag.py,sha256=sOJmGs1SWPMNNgQp3rS2smPBRzhe6NQUBPGCsZawQow,1558
459
- qiskit/converters/circuit_to_dag.py,sha256=ZGT3w-YsLR42RZFMH2YkUHn6thwKiRofGQM66586pdY,3433
459
+ qiskit/converters/circuit_to_dag.py,sha256=wh40YEOpFt1P5kI_jT9CEsh1d7fO53Y7E-oXMqhpXeo,3435
460
460
  qiskit/converters/circuit_to_gate.py,sha256=bH4Es8a-v6uNQxZiTQx490fUhoRXTSbZ4VqXgOQGlNg,4076
461
461
  qiskit/converters/__init__.py,sha256=2GTLmBLr9Azkfn7cYAJ35rVEzGeSnot_aRuMKBPAkTM,2169
462
462
  qiskit/converters/circuit_to_instruction.py,sha256=D-_WLJqtsk0Cn1-coFs-AWqaiJJsfTOc2sKpLLDUHk8,5898
463
463
  qiskit/converters/circuit_to_dagdependency.py,sha256=8cJpzLZ7z_Eq4TNzi9JilRyB4vhytZNSNkUk3r0yyE0,1681
464
464
  qiskit/converters/circuit_to_dagdependency_v2.py,sha256=APoo1JAzD9YPZFlWQcxNfbDFy9LHWKBwHzjE236pBQc,1517
465
465
  qiskit/converters/dagdependency_to_circuit.py,sha256=hBbcGS37UjgV3pCvKn20cPKJeVGEfkjps8LZ5hSxT50,1316
466
- qiskit/converters/dag_to_circuit.py,sha256=iLbT8lJYSV_QnZ4IiMx_44ApZE87e4tnZ9gx-HzLwd4,2921
466
+ qiskit/converters/dag_to_circuit.py,sha256=cryxjYwHdDJmKD5IlteXGBiorfufS_ColziOE4-gfqs,2922
467
467
  qiskit/converters/dag_to_dagdependency_v2.py,sha256=6dUYmBovXxZt3Ka-O2jWRT5PAYw0KWsBan1OqD85-is,1441
468
468
  qiskit/converters/dag_to_dagdependency.py,sha256=KUB5KtUs5n_hBy_FJXbPBISnWasLL8HqL4pwRAiiZ-k,1778
469
469
  qiskit/dagcircuit/collect_blocks.py,sha256=dmFr3sFIWTsqdC0I_rc2siNYD6dFCjCabT_3jRUv2jE,16964
470
470
  qiskit/dagcircuit/dagdependency.py,sha256=12UExCdmyNPEHItjde9mHLveEcMBhZc5COvc6VAL7PQ,23083
471
471
  qiskit/dagcircuit/dagdepnode.py,sha256=gdZAyL9eZQPTMj4ZDKxz_bXd57QJbRB3RIi-dhBkHH0,5255
472
- qiskit/dagcircuit/dagdependency_v2.py,sha256=YBcj12v_5NSHohf3_iKiibqkhr_dbKT-8-XyqBWbBbw,22147
472
+ qiskit/dagcircuit/dagdependency_v2.py,sha256=idiwpCFwktngNjDgBNKUJzj_DYM2xenpRN0OH0ZA90o,22148
473
473
  qiskit/dagcircuit/__init__.py,sha256=_EqnZKmQ3CdSov9QQDTSYcV21NKMluxy-YKluO9llPE,1192
474
474
  qiskit/dagcircuit/exceptions.py,sha256=Jy8-MnQBLRphHwwE1PAeDfj9HOY70qp7r0k1sC_CiZE,1234
475
475
  qiskit/dagcircuit/dagnode.py,sha256=hAkE7IqBbDZo0Cla1ABgGdcPhduZ5P0r-FUmI9_zQRc,6732
@@ -567,13 +567,13 @@ qiskit/synthesis/linear_phase/cx_cz_depth_lnn.py,sha256=g7aUZIR08bRphBvwwgZnK1RG
567
567
  qiskit/synthesis/linear_phase/cnot_phase_synth.py,sha256=RjMyvC9wLguZGhcmOGaPFFfzU20ig76zdiNO7ymHTuM,8616
568
568
  qiskit/synthesis/linear_phase/cz_depth_lnn.py,sha256=F4SaI8p2FWNrHgfJfY56tYW0JbaeFPQmfka_WwDSHSc,2171
569
569
  qiskit/synthesis/linear_phase/__init__.py,sha256=L68gn0ALnVL3H9W83Nwkj0TorHJT-a2lvnJK2Cu62tI,685
570
- qiskit/synthesis/discrete_basis/gate_sequence.py,sha256=FLVVnihU8IA1BboTZGk9Wy-08Di3SdiOctjXDSsEKJU,13908
571
- qiskit/synthesis/discrete_basis/generate_basis_approximations.py,sha256=WUQQhh7mhlB6o-ROCB0GOs1Usk7mNecMRcS5x2DZG08,5301
570
+ qiskit/synthesis/discrete_basis/gate_sequence.py,sha256=_rbTklA3U-qThkj1aRmN9Q6lBcsA324NIDR8tRiZSnU,14030
571
+ qiskit/synthesis/discrete_basis/generate_basis_approximations.py,sha256=SgSYleWJ0x8fVkO1jwqyh8dWCH8tuKnwP2Fa_SF04JA,5293
572
572
  qiskit/synthesis/discrete_basis/__init__.py,sha256=enFeQyxhsY3GD9HtoVPZ-A3DRyjTJJUhrh-yaeD8wD4,656
573
- qiskit/synthesis/discrete_basis/commutator_decompose.py,sha256=POPNbXgBAiWivXVLgtTwJV6K_f4hYR3GAoDsc1yehuM,7553
574
- qiskit/synthesis/discrete_basis/solovay_kitaev.py,sha256=uLNQYWT4U-VjnDydJOUIKBxmx9YzFBpOwkyZrdHRMvc,8816
573
+ qiskit/synthesis/discrete_basis/commutator_decompose.py,sha256=0CDSpp4xyS718UOlOx6BfNM_519GPUSqWNg1Cd4hSLE,8343
574
+ qiskit/synthesis/discrete_basis/solovay_kitaev.py,sha256=a9FJO8zPNch_FAfmf4hHyjCg5JEu_ex0wHt9VZ96hQo,9640
575
575
  qiskit/primitives/backend_estimator_v2.py,sha256=BmVdfqzOEv7ALVFAyMqYClnfyCZbnt5MsslBGIcyllw,21448
576
- qiskit/primitives/statevector_estimator.py,sha256=tUBKVuTxBEqIR4Pd6rbvgdiaKfNVs9rEfY-p6eB5rWA,7145
576
+ qiskit/primitives/statevector_estimator.py,sha256=yzP0kurA5GI4LTOpEFjnvRvdJvcgQWI0lR30Zs7SKtI,7146
577
577
  qiskit/primitives/statevector_sampler.py,sha256=5kYyf_gSQNoLAot1kWr1mJLyIv8QceBbCWhBo07Z2ms,10907
578
578
  qiskit/primitives/__init__.py,sha256=fbBAjkEwt0FenVxglTdVrr7yRsop0jdZK7NSeaz0slk,18025
579
579
  qiskit/primitives/primitive_job.py,sha256=qImFX0DlKQCQqPe_YOLV4narEa2sU_LAY4KArDh1GwI,2617
@@ -601,12 +601,12 @@ qiskit/primitives/base/validation_v1.py,sha256=JxONmPI4c0wGXkbzjUvufIS_IFXDdl8Bf
601
601
  qiskit/primitives/base/base_primitive_v1.py,sha256=Uzhy6Xdas9peEP7rAhiyoZDQj7ddtl4oQoONrxgSh-0,1271
602
602
  qiskit/primitives/base/sampler_result_v1.py,sha256=6ySMh2On9Kli2zWRMYsl2-mzPSE5oZt7mX6UyvFttcg,1441
603
603
  qiskit/qpy/interface.py,sha256=HVK0xJwLGs3ioemVfgU4jBKULbRTOVMdGO4tWQAPvYE,12558
604
- qiskit/qpy/__init__.py,sha256=1x2N_CtTP1qvjktMt3VEVCi-AST__VKOKUWeC3_jizs,67727
604
+ qiskit/qpy/__init__.py,sha256=S5pLDUvD_bJEycWw86BSnpQCO7k0Z-7yt7UixeQQCyc,68034
605
605
  qiskit/qpy/common.py,sha256=h1l3yPjwdUuc74pTRzjtOUJ5_SIdYuy_HQQq1Pj3sp4,12406
606
606
  qiskit/qpy/type_keys.py,sha256=-m_JhZXz7TDhxNFr1MCPz5m1zcfQfszofrbwHN2PR5E,10723
607
607
  qiskit/qpy/formats.py,sha256=MaKel58rJ5bsk2AWZSr0DFmdU3I1M6jlk6tZOjPeqbw,12825
608
608
  qiskit/qpy/exceptions.py,sha256=YOwVSKR74VYOrXS5hBdln7EZ0ett0qsSQSALJDoJxwA,1847
609
- qiskit/qpy/binary_io/circuits.py,sha256=XORHbsST4Tg8Hu4TJhjGQUKkTFpoB9hc---wi1seAD8,56967
609
+ qiskit/qpy/binary_io/circuits.py,sha256=H4YF5coEsHVqh7XN4my0XWi58ca5Q0dD8SzhP2h0jAg,57231
610
610
  qiskit/qpy/binary_io/__init__.py,sha256=6rvwDWSLMXjTorczGI2dCHEVKuYWQ1_aBlzpohOF7wk,1047
611
611
  qiskit/qpy/binary_io/value.py,sha256=BAGJk-D3O9aylEyOYWroKvgm4Y_OoLVk95RtnweyQk8,46282
612
612
  qiskit/qpy/binary_io/parse_sympy_repr.py,sha256=68szuHlFtspE9_fDlSoW15gU56g3doK9vfV4THARMKE,3290
@@ -682,9 +682,9 @@ qiskit/quantum_info/states/densitymatrix.py,sha256=Xc21mIvH2WM-u_XxMbQImjgzGILH8
682
682
  qiskit/quantum_info/states/quantum_state.py,sha256=v__EAFkAu2aJwafAfaVDce5_525fTkTrTaJdrdQhAr0,17774
683
683
  qiskit/compiler/__init__.py,sha256=oDzbHDFJQlrjnwsRZFfJJ5m_2ioDP6untCZP-8S_2os,802
684
684
  qiskit/compiler/transpiler.py,sha256=tVl3Z90mq3UZLc1BXrW-Sf7TAJjmRYjK94efA1da_z8,18048
685
- qiskit-2.0.0rc2.dist-info/RECORD,,
686
- qiskit-2.0.0rc2.dist-info/WHEEL,sha256=YVWUMnbArIjOmx8fuqBo77SI002T_mVbJSYDi3sPURU,134
687
- qiskit-2.0.0rc2.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
688
- qiskit-2.0.0rc2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
689
- qiskit-2.0.0rc2.dist-info/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416
690
- qiskit-2.0.0rc2.dist-info/METADATA,sha256=CE7YDI1MvLcGPOOFCuTEV41bD0eAPeudyh9PMn8FfAM,12732
685
+ qiskit-2.0.1.dist-info/RECORD,,
686
+ qiskit-2.0.1.dist-info/WHEEL,sha256=k3pyJI9yaJ4ubN99NYNwnt7u7kz4bA8m9wNXbuRRWHE,134
687
+ qiskit-2.0.1.dist-info/entry_points.txt,sha256=s7DbN_JlupsHGMLE4SzM0OObcstvjMeUlc7ZWTaJIp0,6238
688
+ qiskit-2.0.1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
689
+ qiskit-2.0.1.dist-info/METADATA,sha256=vrATBPO-6_40TZ2gGKUW1stNpPb529yodu0XNgpeHZE,12751
690
+ qiskit-2.0.1.dist-info/licenses/LICENSE.txt,sha256=IXrBXbzaJ4LgBPUVKIbYR5iMY2eqoMT8jDVTY8Ib0iQ,11416