qiskit 1.2.1__cp38-abi3-win32.whl → 1.2.2__cp38-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.
qiskit/VERSION.txt CHANGED
@@ -1 +1 @@
1
- 1.2.1
1
+ 1.2.2
qiskit/_accelerate.pyd CHANGED
Binary file
@@ -56,6 +56,7 @@ class PauliEvolutionGate(Gate):
56
56
 
57
57
  X = SparsePauliOp("X")
58
58
  Z = SparsePauliOp("Z")
59
+ I = SparsePauliOp("I")
59
60
 
60
61
  # build the evolution gate
61
62
  operator = (Z ^ Z) - 0.1 * (X ^ I)
@@ -2090,7 +2090,7 @@ class DAGCircuit:
2090
2090
  new_layer = self.copy_empty_like(vars_mode=vars_mode)
2091
2091
 
2092
2092
  for node in op_nodes:
2093
- new_layer._apply_op_node_back(node, check=False)
2093
+ new_layer._apply_op_node_back(copy.copy(node), check=False)
2094
2094
 
2095
2095
  # The quantum registers that have an operation in this layer.
2096
2096
  support_list = [
@@ -92,7 +92,7 @@ class BaseEstimatorV1(BasePrimitive, Generic[T]):
92
92
  # calculate [ <psi1(theta1)|H1|psi1(theta1)> ]
93
93
  job = estimator.run([psi1], [H1], [theta1])
94
94
  job_result = job.result() # It will block until the job finishes.
95
- print(f"The primitive-job finished with result {job_result}"))
95
+ print(f"The primitive-job finished with result {job_result}")
96
96
 
97
97
  # calculate [ <psi1(theta1)|H1|psi1(theta1)>,
98
98
  # <psi2(theta2)|H2|psi2(theta2)>,
@@ -144,7 +144,7 @@ class BaseEstimatorV1(BasePrimitive, Generic[T]):
144
144
 
145
145
  .. code-block:: python
146
146
 
147
- values = parameter_values[i].
147
+ values = parameter_values[i]
148
148
 
149
149
  Args:
150
150
  circuits: one or more circuit objects.
@@ -34,14 +34,22 @@ class DataBin(ShapedMixin):
34
34
 
35
35
  .. code-block:: python
36
36
 
37
+ import numpy as np
38
+ from qiskit.primitives import DataBin, BitArray
39
+
37
40
  data = DataBin(
38
- alpha=BitArray.from_bitstrings(["0010"]),
41
+ alpha=BitArray.from_samples(["0010"]),
39
42
  beta=np.array([1.2])
40
43
  )
41
44
 
42
45
  print("alpha data:", data.alpha)
43
46
  print("beta data:", data.beta)
44
47
 
48
+ .. code-block::
49
+
50
+ alpha data: BitArray(<shape=(), num_shots=1, num_bits=2>)
51
+ beta data: [1.2]
52
+
45
53
  """
46
54
 
47
55
  __slots__ = ("_data", "_shape")
qiskit/pulse/builder.py CHANGED
@@ -137,7 +137,6 @@ In the example below we demonstrate some more features of the pulse builder:
137
137
  from qiskit.compiler import schedule
138
138
 
139
139
  from qiskit import pulse, QuantumCircuit
140
- from qiskit.pulse import library
141
140
  from qiskit.providers.fake_provider import FakeOpenPulse2Q
142
141
 
143
142
  backend = FakeOpenPulse2Q()
@@ -147,7 +146,7 @@ In the example below we demonstrate some more features of the pulse builder:
147
146
 
148
147
  with pulse.build(backend) as pulse_prog:
149
148
  # Create a pulse.
150
- gaussian_pulse = library.gaussian(10, 1.0, 2)
149
+ gaussian_pulse = pulse.Gaussian(10, 1.0, 2)
151
150
  # Get the qubit's corresponding drive channel from the backend.
152
151
  d0 = pulse.drive_channel(0)
153
152
  d1 = pulse.drive_channel(1)
@@ -285,7 +284,7 @@ Pulse instructions are available within the builder interface. Here's an example
285
284
  d0 = pulse.drive_channel(0)
286
285
  a0 = pulse.acquire_channel(0)
287
286
 
288
- pulse.play(pulse.library.Constant(10, 1.0), d0)
287
+ pulse.play(pulse.Constant(10, 1.0), d0)
289
288
  pulse.delay(20, d0)
290
289
  pulse.shift_phase(3.14/2, d0)
291
290
  pulse.set_phase(3.14, d0)
@@ -293,8 +292,8 @@ Pulse instructions are available within the builder interface. Here's an example
293
292
  pulse.set_frequency(5e9, d0)
294
293
 
295
294
  with pulse.build() as temp_sched:
296
- pulse.play(pulse.library.Gaussian(20, 1.0, 3.0), d0)
297
- pulse.play(pulse.library.Gaussian(20, -1.0, 3.0), d0)
295
+ pulse.play(pulse.Gaussian(20, 1.0, 3.0), d0)
296
+ pulse.play(pulse.Gaussian(20, -1.0, 3.0), d0)
298
297
 
299
298
  pulse.call(temp_sched)
300
299
  pulse.acquire(30, a0, pulse.MemorySlot(0))
@@ -1327,7 +1326,9 @@ def frequency_offset(
1327
1326
  :emphasize-lines: 7, 16
1328
1327
 
1329
1328
  from qiskit import pulse
1329
+ from qiskit.providers.fake_provider import FakeOpenPulse2Q
1330
1330
 
1331
+ backend = FakeOpenPulse2Q()
1331
1332
  d0 = pulse.DriveChannel(0)
1332
1333
 
1333
1334
  with pulse.build(backend) as pulse_prog:
@@ -1969,19 +1970,23 @@ def barrier(*channels_or_qubits: chans.Channel | int, name: str | None = None):
1969
1970
  .. code-block::
1970
1971
 
1971
1972
  import math
1973
+ from qiskit import pulse
1974
+ from qiskit.providers.fake_provider import FakeOpenPulse2Q
1975
+
1976
+ backend = FakeOpenPulse2Q()
1972
1977
 
1973
1978
  d0 = pulse.DriveChannel(0)
1974
1979
 
1975
1980
  with pulse.build(backend) as pulse_prog:
1976
1981
  with pulse.align_right():
1977
- pulse.call(backend.defaults.instruction_schedule_map.get('x', (1,)))
1982
+ pulse.call(backend.defaults().instruction_schedule_map.get('u1', (1,)))
1978
1983
  # Barrier qubit 1 and d0.
1979
1984
  pulse.barrier(1, d0)
1980
1985
  # Due to barrier this will play before the gate on qubit 1.
1981
1986
  pulse.play(pulse.Constant(10, 1.0), d0)
1982
1987
  # This will end at the same time as the pulse above due to
1983
1988
  # the barrier.
1984
- pulse.call(backend.defaults.instruction_schedule_map.get('x', (1,)))
1989
+ pulse.call(backend.defaults().instruction_schedule_map.get('u1', (1,)))
1985
1990
 
1986
1991
  .. note:: Requires the active builder context to have a backend set if
1987
1992
  qubits are barriered on.
@@ -2012,6 +2017,7 @@ def macro(func: Callable):
2012
2017
  :include-source:
2013
2018
 
2014
2019
  from qiskit import pulse
2020
+ from qiskit.providers.fake_provider import FakeOpenPulse2Q
2015
2021
 
2016
2022
  @pulse.macro
2017
2023
  def measure(qubit: int):
@@ -2021,6 +2027,9 @@ def macro(func: Callable):
2021
2027
 
2022
2028
  return mem_slot
2023
2029
 
2030
+
2031
+ backend = FakeOpenPulse2Q()
2032
+
2024
2033
  with pulse.build(backend=backend) as sched:
2025
2034
  mem_slot = measure(0)
2026
2035
  print(f"Qubit measured into {mem_slot}")
@@ -72,6 +72,8 @@ class TimeBlockade(Directive):
72
72
 
73
73
  .. code-block:: python
74
74
 
75
+ from qiskit.pulse import Schedule, Play, Constant, DriveChannel
76
+
75
77
  schedule = Schedule()
76
78
  schedule.insert(120, Play(Constant(10, 0.1), DriveChannel(0)))
77
79
 
@@ -79,6 +81,9 @@ class TimeBlockade(Directive):
79
81
 
80
82
  .. code-block:: python
81
83
 
84
+ from qiskit.pulse import ScheduleBlock, Play, Constant, DriveChannel
85
+ from qiskit.pulse.instructions import TimeBlockade
86
+
82
87
  block = ScheduleBlock()
83
88
  block.append(TimeBlockade(120, DriveChannel(0)))
84
89
  block.append(Play(Constant(10, 0.1), DriveChannel(0)))
qiskit/pulse/schedule.py CHANGED
@@ -81,6 +81,7 @@ class Schedule:
81
81
 
82
82
  .. code-block:: python
83
83
 
84
+ from qiskit.pulse import Schedule, Gaussian, DriveChannel, Play
84
85
  sched = Schedule()
85
86
  sched += Play(Gaussian(160, 0.1, 40), DriveChannel(0))
86
87
 
@@ -653,8 +654,6 @@ class Schedule:
653
654
 
654
655
  sched += pulse.Schedule(old)
655
656
 
656
- sched = sched.flatten()
657
-
658
657
  sched = sched.replace(old, new)
659
658
 
660
659
  assert sched == pulse.Schedule(new)
@@ -899,11 +898,8 @@ class ScheduleBlock:
899
898
  pulse.reference("grand_child")
900
899
  pulse.play(pulse.Constant(200, amp2), pulse.DriveChannel(0))
901
900
 
902
- Now you assign the inner pulse program to this reference.
903
-
904
- .. code-block::
905
-
906
- sched_outer.assign_references({("grand_child", ): sched_inner})
901
+ # Now assign the inner pulse program to this reference
902
+ sched_outer.assign_references({("grand_child",): sched_inner})
907
903
  print(sched_outer.parameters)
908
904
 
909
905
  .. parsed-literal::
@@ -1459,7 +1455,7 @@ class ScheduleBlock:
1459
1455
 
1460
1456
  from qiskit import pulse
1461
1457
 
1462
- with pulse.build() as subroutine:
1458
+ with pulse.build() as nested_prog:
1463
1459
  pulse.delay(10, pulse.DriveChannel(0))
1464
1460
 
1465
1461
  with pulse.build() as sub_prog:
@@ -1490,7 +1486,7 @@ class ScheduleBlock:
1490
1486
  .. code-block:: python
1491
1487
 
1492
1488
  main_prog.assign_references({("B", ): sub_prog}, inplace=True)
1493
- main_prog.references[("B", )].assign_references({"A": nested_prog}, inplace=True)
1489
+ main_prog.references[("B", )].assign_references({("A", ): nested_prog}, inplace=True)
1494
1490
 
1495
1491
  Here :attr:`.references` returns a dict-like object, and you can
1496
1492
  mutably update the nested reference of the particular subroutine.
@@ -338,8 +338,10 @@ class AlignFunc(AlignmentKind):
338
338
 
339
339
  .. code-block:: python
340
340
 
341
+ import numpy as np
342
+
341
343
  def udd10_pos(j):
342
- return np.sin(np.pi*j/(2*10 + 2))**2
344
+ return np.sin(np.pi*j/(2*10 + 2))**2
343
345
 
344
346
  .. note::
345
347
 
@@ -32,6 +32,11 @@ def block_to_dag(block: ScheduleBlock) -> rx.PyDAG:
32
32
 
33
33
  .. code-block:: python
34
34
 
35
+ from qiskit import pulse
36
+
37
+ my_gaussian0 = pulse.Gaussian(100, 0.5, 20)
38
+ my_gaussian1 = pulse.Gaussian(100, 0.3, 10)
39
+
35
40
  with pulse.build() as sched1:
36
41
  with pulse.align_left():
37
42
  pulse.play(my_gaussian0, pulse.DriveChannel(0))
@@ -51,6 +56,8 @@ def block_to_dag(block: ScheduleBlock) -> rx.PyDAG:
51
56
 
52
57
  .. code-block:: python
53
58
 
59
+ from qiskit import pulse
60
+
54
61
  with pulse.build() as sched:
55
62
  with pulse.align_left():
56
63
  pulse.shift_phase(1.57, pulse.DriveChannel(1))
qiskit/qasm2/parse.py CHANGED
@@ -89,6 +89,35 @@ class CustomInstruction:
89
89
  There is a final ``builtin`` field. This is optional, and if set true will cause the
90
90
  instruction to be defined and available within the parsing, even if there is no definition in
91
91
  any included OpenQASM 2 file.
92
+
93
+ Examples:
94
+
95
+ Instruct the importer to use Qiskit's :class:`.ECRGate` and :class:`.RZXGate` objects to
96
+ interpret ``gate`` statements that are known to have been created from those same objects
97
+ during OpenQASM 2 export::
98
+
99
+ from qiskit import qasm2
100
+ from qiskit.circuit import QuantumCircuit, library
101
+
102
+ qc = QuantumCircuit(2)
103
+ qc.ecr(0, 1)
104
+ qc.rzx(0.3, 0, 1)
105
+ qc.rzx(0.7, 1, 0)
106
+ qc.rzx(1.5, 0, 1)
107
+ qc.ecr(1, 0)
108
+
109
+ # This output string includes `gate ecr q0, q1 { ... }` and `gate rzx(p) q0, q1 { ... }`
110
+ # statements, since `ecr` and `rzx` are neither built-in gates nor in ``qelib1.inc``.
111
+ dumped = qasm2.dumps(qc)
112
+
113
+ # Tell the importer how to interpret the `gate` statements, which we know are safe
114
+ # because we controlled the input OpenQASM 2 source.
115
+ custom = [
116
+ qasm2.CustomInstruction("ecr", 0, 2, library.ECRGate),
117
+ qasm2.CustomInstruction("rzx", 1, 2, library.RZXGate),
118
+ ]
119
+
120
+ loaded = qasm2.loads(dumped, custom_instructions=custom)
92
121
  """
93
122
 
94
123
  name: str
qiskit/qasm3/exporter.py CHANGED
@@ -140,9 +140,16 @@ class Exporter:
140
140
  ):
141
141
  """
142
142
  Args:
143
- includes: the filenames that should be emitted as includes. These files will be parsed
144
- for gates, and any objects dumped from this exporter will use those definitions
145
- where possible.
143
+ includes: the filenames that should be emitted as includes.
144
+
145
+ .. note::
146
+
147
+ At present, only the standard-library file ``stdgates.inc`` is properly
148
+ understood by the exporter, in the sense that it knows the gates it defines.
149
+ You can specify other includes, but you will need to pass the names of the gates
150
+ they define in the ``basis_gates`` argument to avoid the exporter outputting a
151
+ separate ``gate`` definition.
152
+
146
153
  basis_gates: the basic defined gate set of the backend.
147
154
  disable_constants: if ``True``, always emit floating-point constants for numeric
148
155
  parameter values. If ``False`` (the default), then values close to multiples of
@@ -675,9 +682,9 @@ class QASM3Builder:
675
682
  def build_includes(self):
676
683
  """Builds a list of included files."""
677
684
  for filename in self.includes:
678
- if (definitions := _KNOWN_INCLUDES.get(filename)) is None:
679
- raise QASM3ExporterError(f"Unknown OpenQASM 3 include file: '{filename}'")
680
- for name, gate in definitions.items():
685
+ # Note: unknown include files have a corresponding `include` statement generated, but do
686
+ # not actually define any gates; we rely on the user to pass those in `basis_gates`.
687
+ for name, gate in _KNOWN_INCLUDES.get(filename, {}).items():
681
688
  self.symbols.register_gate_without_definition(name, gate)
682
689
  yield ast.Include(filename)
683
690
 
@@ -144,6 +144,8 @@ class Pauli(BasePauli):
144
144
 
145
145
  .. code-block:: python
146
146
 
147
+ from qiskit.quantum_info import Pauli
148
+
147
149
  P = Pauli('-iXYZ')
148
150
 
149
151
  print('P[0] =', repr(P[0]))
@@ -792,6 +792,8 @@ class SparsePauliOp(LinearOp):
792
792
 
793
793
  .. code-block:: python
794
794
 
795
+ from qiskit.quantum_info import SparsePauliOp
796
+
795
797
  # via tuples and the full Pauli string
796
798
  op = SparsePauliOp.from_list([("XIIZI", 1), ("IYIIY", 2)])
797
799
 
@@ -856,6 +858,8 @@ class SparsePauliOp(LinearOp):
856
858
 
857
859
  .. code-block:: python
858
860
 
861
+ from qiskit.quantum_info import SparsePauliOp
862
+
859
863
  # via triples and local Paulis with indices
860
864
  op = SparsePauliOp.from_sparse_list([("ZX", [1, 4], 1), ("YY", [0, 3], 2)], num_qubits=5)
861
865
 
@@ -1051,6 +1055,7 @@ class SparsePauliOp(LinearOp):
1051
1055
 
1052
1056
  .. code-block:: python
1053
1057
 
1058
+ >>> from qiskit.quantum_info import SparsePauliOp
1054
1059
  >>> op = SparsePauliOp.from_list([("XX", 2), ("YY", 1), ("IZ",2j), ("ZZ",1j)])
1055
1060
  >>> op.group_commuting()
1056
1061
  [SparsePauliOp(["IZ", "ZZ"], coeffs=[0.+2.j, 0.+1j]),
@@ -106,8 +106,9 @@ also add initial logical optimization prior to routing, you would do something l
106
106
  .. code-block:: python
107
107
 
108
108
  import numpy as np
109
+ from qiskit.providers.fake_provider import GenericBackendV2
109
110
  from qiskit.circuit.library import HGate, PhaseGate, RXGate, TdgGate, TGate, XGate
110
- from qiskit.transpiler import PassManager
111
+ from qiskit.transpiler import PassManager, generate_preset_pass_manager
111
112
  from qiskit.transpiler.passes import (
112
113
  ALAPScheduleAnalysis,
113
114
  CXCancellation,
@@ -115,6 +116,7 @@ also add initial logical optimization prior to routing, you would do something l
115
116
  PadDynamicalDecoupling,
116
117
  )
117
118
 
119
+ backend = GenericBackendV2(num_qubits=5)
118
120
  dd_sequence = [XGate(), XGate()]
119
121
  scheduling_pm = PassManager(
120
122
  [
@@ -135,6 +137,9 @@ also add initial logical optimization prior to routing, you would do something l
135
137
  ]
136
138
  )
137
139
 
140
+ pass_manager = generate_preset_pass_manager(
141
+ optimization_level=0
142
+ )
138
143
 
139
144
  # Add pre-layout stage to run extra logical optimization
140
145
  pass_manager.pre_layout = logical_opt
@@ -45,7 +45,7 @@ class RXCalibrationBuilder(CalibrationBuilder):
45
45
  from qiskit.circuit.library import QuantumVolume
46
46
  from qiskit.circuit.library.standard_gates import RXGate
47
47
 
48
- from calibration.rx_builder import RXCalibrationBuilder
48
+ from qiskit.transpiler.passes import RXCalibrationBuilder
49
49
 
50
50
  qv = QuantumVolume(4, 4, seed=1004)
51
51
 
@@ -96,8 +96,8 @@ class ElidePermutations(TransformationPass):
96
96
  elif isinstance(node.op, PermutationGate):
97
97
  starting_indices = [qubit_mapping[dag.find_bit(qarg).index] for qarg in node.qargs]
98
98
  pattern = node.op.params[0]
99
- pattern_indices = [qubit_mapping[idx] for idx in pattern]
100
- for i, j in zip(starting_indices, pattern_indices):
99
+ updated_indices = [starting_indices[idx] for idx in pattern]
100
+ for i, j in zip(starting_indices, updated_indices):
101
101
  qubit_mapping[i] = j
102
102
  input_qubit_mapping = {qubit: index for index, qubit in enumerate(dag.qubits)}
103
103
  self.property_set["original_layout"] = Layout(input_qubit_mapping)
@@ -27,6 +27,9 @@ class PadDelay(BasePadding):
27
27
 
28
28
  .. code-block:: python
29
29
 
30
+ from qiskit import QuantumCircuit
31
+ from qiskit.transpiler import InstructionDurations
32
+
30
33
  durations = InstructionDurations([("x", None, 160), ("cx", None, 800)])
31
34
 
32
35
  qc = QuantumCircuit(2)
@@ -968,6 +968,10 @@ class QFTSynthesisFull(HighLevelSynthesisPlugin):
968
968
  This plugin name is :``qft.full`` which can be used as the key on
969
969
  an :class:`~.HLSConfig` object to use this method with :class:`~.HighLevelSynthesis`.
970
970
 
971
+ Note that the plugin mechanism is not applied if the gate is called ``qft`` but
972
+ is not an instance of ``QFTGate``. This allows users to create custom gates with
973
+ name ``qft``.
974
+
971
975
  The plugin supports the following additional options:
972
976
 
973
977
  * reverse_qubits (bool): Whether to synthesize the "QFT" operation (if ``False``,
@@ -995,10 +999,11 @@ class QFTSynthesisFull(HighLevelSynthesisPlugin):
995
999
 
996
1000
  def run(self, high_level_object, coupling_map=None, target=None, qubits=None, **options):
997
1001
  """Run synthesis for the given QFTGate."""
1002
+
1003
+ # Even though the gate is called "qft", it's not a QFTGate,
1004
+ # and we should not synthesize it using the plugin.
998
1005
  if not isinstance(high_level_object, QFTGate):
999
- raise TranspilerError(
1000
- "The synthesis plugin 'qft.full` only applies to objects of type QFTGate."
1001
- )
1006
+ return None
1002
1007
 
1003
1008
  reverse_qubits = options.get("reverse_qubits", False)
1004
1009
  approximation_degree = options.get("approximation_degree", 0)
@@ -1023,6 +1028,10 @@ class QFTSynthesisLine(HighLevelSynthesisPlugin):
1023
1028
  This plugin name is :``qft.line`` which can be used as the key on
1024
1029
  an :class:`~.HLSConfig` object to use this method with :class:`~.HighLevelSynthesis`.
1025
1030
 
1031
+ Note that the plugin mechanism is not applied if the gate is called ``qft`` but
1032
+ is not an instance of ``QFTGate``. This allows users to create custom gates with
1033
+ name ``qft``.
1034
+
1026
1035
  The plugin supports the following additional options:
1027
1036
 
1028
1037
  * reverse_qubits (bool): Whether to synthesize the "QFT" operation (if ``False``,
@@ -1047,10 +1056,11 @@ class QFTSynthesisLine(HighLevelSynthesisPlugin):
1047
1056
 
1048
1057
  def run(self, high_level_object, coupling_map=None, target=None, qubits=None, **options):
1049
1058
  """Run synthesis for the given QFTGate."""
1059
+
1060
+ # Even though the gate is called "qft", it's not a QFTGate,
1061
+ # and we should not synthesize it using the plugin.
1050
1062
  if not isinstance(high_level_object, QFTGate):
1051
- raise TranspilerError(
1052
- "The synthesis plugin 'qft.line` only applies to objects of type QFTGate."
1053
- )
1063
+ return None
1054
1064
 
1055
1065
  reverse_qubits = options.get("reverse_qubits", False)
1056
1066
  approximation_degree = options.get("approximation_degree", 0)
@@ -150,7 +150,8 @@ class DefaultInitPassManager(PassManagerStagePlugin):
150
150
  pass_manager_config.unitary_synthesis_plugin_config,
151
151
  pass_manager_config.hls_config,
152
152
  )
153
- init.append(ElidePermutations())
153
+ if pass_manager_config.routing_method != "none":
154
+ init.append(ElidePermutations())
154
155
  init.append(RemoveDiagonalGatesBeforeMeasure())
155
156
  init.append(
156
157
  InverseCancellation(
@@ -58,23 +58,12 @@ def pass_manager_drawer(pass_manager, filename=None, style=None, raw=False):
58
58
  Example:
59
59
  .. code-block::
60
60
 
61
- %matplotlib inline
62
61
  from qiskit import QuantumCircuit
63
- from qiskit.compiler import transpile
64
- from qiskit.transpiler import PassManager
62
+ from qiskit.transpiler import generate_preset_pass_manager
65
63
  from qiskit.visualization import pass_manager_drawer
66
- from qiskit.transpiler.passes import Unroller
67
64
 
68
- circ = QuantumCircuit(3)
69
- circ.ccx(0, 1, 2)
70
- circ.draw()
71
-
72
- pass_ = Unroller(['u1', 'u2', 'u3', 'cx'])
73
- pm = PassManager(pass_)
74
- new_circ = pm.run(circ)
75
- new_circ.draw(output='mpl')
76
-
77
- pass_manager_drawer(pm, "passmanager.jpg")
65
+ pm = generate_preset_pass_manager(optimization_level=0)
66
+ pass_manager_drawer(pm)
78
67
  """
79
68
  import pydot
80
69
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qiskit
3
- Version: 1.2.1
3
+ Version: 1.2.2
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
@@ -1,6 +1,6 @@
1
- qiskit/VERSION.txt,sha256=18XwW49QnmHLtUgD6V3t9bMor4HNVFb3VU-ymQ-RrM4,7
1
+ qiskit/VERSION.txt,sha256=a_J0R6S5pfUF4WcOTkr-tN2RHmMFNU1kkD7OMXZdgrk,7
2
2
  qiskit/__init__.py,sha256=bxCfTQyH6qfT6E-R4FTfP2ovP3F3qz0fVid6TeRHT5A,5540
3
- qiskit/_accelerate.pyd,sha256=aF-zLwTl0X1Pv8L2nSrA3j5Ao93VI3XGchz5gtDvIzU,4726784
3
+ qiskit/_accelerate.pyd,sha256=sfUr0bJM7h1QpIul2PVSjLARH-9RulGrTAZ_0x6s09U,4727808
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
@@ -78,7 +78,7 @@ qiskit/circuit/library/hamiltonian_gate.py,sha256=XhIzXQB2ZtZBYoxs0DYSE69sBBxl3B
78
78
  qiskit/circuit/library/hidden_linear_function.py,sha256=Sx7gRKxy-C4bX7HRuLEhU7xmK9EA2xX9JPUvhwaw2Wo,3629
79
79
  qiskit/circuit/library/iqp.py,sha256=JBzoEYDKqAfr-w1OG6Qm2EnBMza0uhssS--pXE7OoB8,3361
80
80
  qiskit/circuit/library/overlap.py,sha256=7mzYOM-XqYdYDxU6zIN7qLHxiTJS1ezmJt_yJzwnUKU,4723
81
- qiskit/circuit/library/pauli_evolution.py,sha256=FIIy917LVft4P8lsWyJITqnhUX9PnM74ET9fFizUb5I,6700
81
+ qiskit/circuit/library/pauli_evolution.py,sha256=JJf-QIieN_Ut29lvJfZm_sOWwY2SiRoRGjdwNDEL5oc,6732
82
82
  qiskit/circuit/library/phase_estimation.py,sha256=oEJq1C6VLTRuoIDlJZKZdiD56u0BRdnU3kDjB9vX1T8,3856
83
83
  qiskit/circuit/library/phase_oracle.py,sha256=ToF7syt40EhZmKZBxgPJ8IYqYaJLCMbePUTGtTbQp5M,6818
84
84
  qiskit/circuit/library/quantum_volume.py,sha256=Jk-3_6zJrsaQkFRgyR0caKcSxDEDMIwjSyI6LZYwSG0,4969
@@ -270,7 +270,7 @@ qiskit/converters/dagdependency_to_circuit.py,sha256=4Wcdt78M5FkVTJbCiFozaTbnyUf
270
270
  qiskit/converters/dagdependency_to_dag.py,sha256=kOekDX-6ixJxmIDnpQfAtSX-llDZBDO1MPe1SuFY7Zo,1664
271
271
  qiskit/dagcircuit/__init__.py,sha256=28PM2IY8dnLbOFsWnNJ8qYh8bmJNs9mRqfCJLXZDx6Q,1236
272
272
  qiskit/dagcircuit/collect_blocks.py,sha256=T5jlrYNVWTxy9nLscZJ6awthAhn-EijtWV9XdIz481M,16868
273
- qiskit/dagcircuit/dagcircuit.py,sha256=hKxSuFB-exoDQtK092hf1x0fGOhoe0PBSiZx7xAMW2c,107342
273
+ qiskit/dagcircuit/dagcircuit.py,sha256=ueORdT1HJqn5tcMMtb9oCjgHJcpZ_ltbba-hwciQ7Vc,107353
274
274
  qiskit/dagcircuit/dagdependency.py,sha256=1PNtNnTwGGVgr3U4sl-A1bgbNc3-AqWzWlovZvwDcm8,24585
275
275
  qiskit/dagcircuit/dagdependency_v2.py,sha256=ZisZVPOHvU53P0KTwc6Kk97oOqysHU9dAJS4-bvI1YY,25759
276
276
  qiskit/dagcircuit/dagdepnode.py,sha256=sIgafYfSl9RpMevWkFYUHgWv8GYpNMnH0VLTrTVbIsY,5415
@@ -294,7 +294,7 @@ qiskit/primitives/statevector_estimator.py,sha256=1HtnjMNsmVecm5BTpY2tS_-9Z29O_S
294
294
  qiskit/primitives/statevector_sampler.py,sha256=BiFrJ009JYpnBE6SKqTlBiNm2MQ_8TAnCxwiMZiwvT8,11284
295
295
  qiskit/primitives/utils.py,sha256=m8NRKzVKNbI4weCKPHrI0QZb4RDxrWHe2jcBjQT18xs,7899
296
296
  qiskit/primitives/base/__init__.py,sha256=HZji4i_Lrf9KqcSufJwSNqe8Wt-c1RWmKzFeRNt8vxo,784
297
- qiskit/primitives/base/base_estimator.py,sha256=GPh99UpMaB9xI_dY4mU7T1L9Wb7kYINfFiRNzfeRigA,9018
297
+ qiskit/primitives/base/base_estimator.py,sha256=kpEXcE2Lx3YqVRxlBctjJI_T1RYnaapk3kMW7vd7VQ8,9016
298
298
  qiskit/primitives/base/base_primitive.py,sha256=TT7g3oFy9iIpzbeZxMLculQFBY9labxViTxbRQDtr-I,1314
299
299
  qiskit/primitives/base/base_primitive_job.py,sha256=kQeGRfABKGq2LzcbTPpfZq-jMedRhfH1hz-7J5bKego,2912
300
300
  qiskit/primitives/base/base_result.py,sha256=Y8W3yqEtn5iTqnZBYMPAe4lPe-X6Bs7s3WNfQJS056Q,2585
@@ -305,7 +305,7 @@ qiskit/primitives/base/validation.py,sha256=u9GYlsdBPtMoWRAbe2OHgh7RUOYsz92p2AP1
305
305
  qiskit/primitives/containers/__init__.py,sha256=sRqnNeUDNhzUoGE6uaZz3otFX7_cKnRUcSjgCWqSfLw,950
306
306
  qiskit/primitives/containers/bindings_array.py,sha256=QEBK9XXCGTTbpn8vRwu3vrUd-2Uf3swif50g4-fZa-w,16125
307
307
  qiskit/primitives/containers/bit_array.py,sha256=2hsnWRGJj-80zJRQksWkU7ySASrTSOfMbtVi7zkzjE4,31965
308
- qiskit/primitives/containers/data_bin.py,sha256=N-rNpL6Mlrs0N_IAnAEdBvim-H_BuNHeaLmKidKEz-s,5401
308
+ qiskit/primitives/containers/data_bin.py,sha256=E1fv0B6FxBFAYduVAS-6ek5and_iEE7LrbDm39gDnhM,5603
309
309
  qiskit/primitives/containers/estimator_pub.py,sha256=npFzw9LQhEBumvb-T8GlsGdrwKn6pAoGn2N8eytYLDk,8352
310
310
  qiskit/primitives/containers/object_array.py,sha256=A5yppo38ZFzwQuoQVf2YZKJrZHEXonaNr__0uc_GTyQ,3469
311
311
  qiskit/primitives/containers/observables_array.py,sha256=MvgynjR7UnzbKpkRiupN03aDDH6Rv0bjRax-EuyCSjM,10477
@@ -371,7 +371,7 @@ qiskit/providers/models/backendstatus.py,sha256=HtmjmOaWDk_IFnG3hz_10vXo-Zi94o6H
371
371
  qiskit/providers/models/jobstatus.py,sha256=tbWUMxGV4QkW1w2894XKsj5R-QO9NNrNBScraJRqL5E,2013
372
372
  qiskit/providers/models/pulsedefaults.py,sha256=7mWX-wOGpOe4WQiTzV-_wr5A581g068Ouf3sZZB7pjI,10945
373
373
  qiskit/pulse/__init__.py,sha256=qTnVoMBAx8QAnULuc1xl6737gzyZ_zPQQKPaNJka1sY,4019
374
- qiskit/pulse/builder.py,sha256=hyuOgbyRHnn3iSK7L4i3Mbrm9Q9sfdJeu05XP5eO5JY,73238
374
+ qiskit/pulse/builder.py,sha256=rZPlo0TuButqc22SopHN_cJQjPCMRE_i_RnkJJSU7RY,73536
375
375
  qiskit/pulse/calibration_entries.py,sha256=uNXGUZRLbBWFEPC5-P5WT0O0r3Fw0ufavQ-OpNvpkgU,14234
376
376
  qiskit/pulse/channels.py,sha256=YqCVqTcGr1INqZRWSBZq3-adgAWPBJVRNLG_P11OQvM,7660
377
377
  qiskit/pulse/configuration.py,sha256=OunqgW9zU5Pn3V7jtO7Im8IC1rpfTjjFEAPxu7dsdEw,8118
@@ -382,12 +382,12 @@ qiskit/pulse/macros.py,sha256=gm_FRk6JwGQEmeu3EG_nV1yV468QaOvmQUz2BZZgiwE,10995
382
382
  qiskit/pulse/parameter_manager.py,sha256=xW74Hi5wH-EMnKUpFn1jPr_wPjtUr43s7Qns_mfHY_8,18143
383
383
  qiskit/pulse/parser.py,sha256=ru9vtb_YGLSaM6m2I15B-HfYgcY3fYpdHzDgoW_zTTk,10366
384
384
  qiskit/pulse/reference_manager.py,sha256=3t6VK1iCfhR3twIDOoPH9745caOhX9HmOUY6KC3jsDQ,2103
385
- qiskit/pulse/schedule.py,sha256=7Aiqh0EhggjnnabSJ7i0H44_7nl_dGPYdT-wHrcNlCo,74677
385
+ qiskit/pulse/schedule.py,sha256=yK9U-gyIn_yKIql3NuesbVtCQpPArV3RIvH_TL_EF64,74693
386
386
  qiskit/pulse/utils.py,sha256=SyQzG9bXatYVYUSvZSmwuWyO0hTpHjxKPbT3HYsCMfY,6122
387
387
  qiskit/pulse/instructions/__init__.py,sha256=64cGUjTcFZMwZIF8XRJhyArivAJ1kpN1pn76ae0mU0o,2344
388
388
  qiskit/pulse/instructions/acquire.py,sha256=_gdWOm_FH69-hUd6MNtCe27cCj8OCGVZjbK9vD79JDg,6202
389
389
  qiskit/pulse/instructions/delay.py,sha256=C3MGTSTLYOwu-FFcks7E7aZXHpA9fSQM11lqDEgeUtg,2400
390
- qiskit/pulse/instructions/directives.py,sha256=rnR7-F5nxdT63ZED5SJPS3LZRlRcG7xY0eigs4A3zUo,5090
390
+ qiskit/pulse/instructions/directives.py,sha256=1vNuK8av7gyUHslKfhdFw9pL3dCsCK8-DZKKvgmmiTs,5317
391
391
  qiskit/pulse/instructions/frequency.py,sha256=MDlNEXjiG95TJ0zsXXZudoArMrp0m6R1KKycvWlgYs4,4572
392
392
  qiskit/pulse/instructions/instruction.py,sha256=ze6-vYpMbviKeP3wnZkWqRzKFQc2gon2xjDOotX_Rl0,9027
393
393
  qiskit/pulse/instructions/phase.py,sha256=k5igW26vH18HYLaRAONhnpMcU6CTU68ODCPGv9gItVc,5360
@@ -403,22 +403,22 @@ qiskit/pulse/library/samplers/__init__.py,sha256=wQw1gTW7dvsyrxklicIKMrsq8Kir-h7
403
403
  qiskit/pulse/library/samplers/decorators.py,sha256=U8F7vjPj4g7YaM_0lJblBb1wnJ5KmD_ooYAWJ2LymgY,11774
404
404
  qiskit/pulse/library/samplers/strategies.py,sha256=4fg3g6eDNf2vpBd1B9GR_C4GE3BtvNvBbN0QHx0y2l4,2521
405
405
  qiskit/pulse/transforms/__init__.py,sha256=M1IIUYRG-_X7TUzHEJoL-d-LqhH7-oSrre55YkRWMAA,2599
406
- qiskit/pulse/transforms/alignments.py,sha256=DlNPbAkzM4lze0lDAKTwyKXtaXfOyb3-z9CE3euUj3I,14213
406
+ qiskit/pulse/transforms/alignments.py,sha256=R5mYpnCClUE88SgNX3L9PJ3tzWFPrdWdPYgOdkOuTI0,14247
407
407
  qiskit/pulse/transforms/base_transforms.py,sha256=W81cd6XDOWDn17Avth22vCyCea7CGArUDm708yV5W2M,2472
408
408
  qiskit/pulse/transforms/canonicalization.py,sha256=Y23aAUp1WnG35AbKuzoA_U3X9bDW9quR7DKl7stFdr4,19542
409
- qiskit/pulse/transforms/dag.py,sha256=BAS3II8qlnA23uhHe2HNbMW3g1_dPcZ0UrF_QAK_CIw,4143
409
+ qiskit/pulse/transforms/dag.py,sha256=qHoGXFWPrwcRHSNzs1GgVKJ-9Yx_hD_SbbvO4E4mveE,4323
410
410
  qiskit/qasm/libs/qelib1.inc,sha256=zqv4yMBwHOK0nwVsbTVFugD8YacpS1Nmc_peDeiiEtU,5086
411
411
  qiskit/qasm/libs/stdgates.inc,sha256=wFEKuxfa0NmoioqCCjQHWd16GzvIRRtir_pxKz-xnGw,2410
412
412
  qiskit/qasm/libs/dummy/stdgates.inc,sha256=2AlDwtsjKDozEEfmXLN9ae1Dfy6rMC9-1Za9a9G-5l4,1467
413
413
  qiskit/qasm2/__init__.py,sha256=6RdL-xZ1I6rUjA_L_h6o0Ggo21yMc0DCgRCAZGt4qJ0,25764
414
414
  qiskit/qasm2/exceptions.py,sha256=MxBVJ6OQOPsJV2c5qjPDRZ7TRoK2jFAFFP9iytB7HzI,950
415
415
  qiskit/qasm2/export.py,sha256=mFuki2a5nnoL4rC55h5-qu-xrisxGSEVEEXxuOC52lU,13592
416
- qiskit/qasm2/parse.py,sha256=Xo86HNPzXbgf0i50xGU0yCxS-bIxCT62itertv_Y4Ts,17819
416
+ qiskit/qasm2/parse.py,sha256=ua2Q-2H_q_Zc_I3tMoCcHS092-DlB1kLZA9FiJFECxE,19018
417
417
  qiskit/qasm3/__init__.py,sha256=8rMz61K4rTXwJFYgG2mjfcNXKPn3H9L69yqpezBaecA,13603
418
418
  qiskit/qasm3/ast.py,sha256=hvBCHd5firKJsg-9n5eJa5n7LQqOQkGqMigMAW8LMO8,16153
419
419
  qiskit/qasm3/exceptions.py,sha256=dlLYUf4zVG1L4ccvXG0MVtzzcIYqshjBejWRz031ykQ,936
420
420
  qiskit/qasm3/experimental.py,sha256=cwIF1YlMzZPvR2BgY3n1D6-TqNTko83Y-qzuKO4c8vw,2062
421
- qiskit/qasm3/exporter.py,sha256=SJQxue5mEYxTcybny21j6pPQ8gB6lWwqDnAlnU8FiuU,61230
421
+ qiskit/qasm3/exporter.py,sha256=Y4GAa-DBy73hI8AcduStePKfyTfeU_dS2GTM-sOqLy4,61607
422
422
  qiskit/qasm3/printer.py,sha256=3a0V9Y4vf3X9w0ErJDhhEXwz9RtAgxitx5s81JMTFwI,21995
423
423
  qiskit/qobj/__init__.py,sha256=xQxWIQ7MUJ0Ovo24Ii2JeUKtzeS4jcIhe2FecQZAJ4U,2024
424
424
  qiskit/qobj/common.py,sha256=11D73kMR3LNxk0CzRBe7vP0wE73cwDP7A0IqmQ19fZw,2641
@@ -480,11 +480,11 @@ qiskit/quantum_info/operators/symplectic/__init__.py,sha256=M-htIGfiWNL3rEXs0DDb
480
480
  qiskit/quantum_info/operators/symplectic/base_pauli.py,sha256=Lg56kZUK2I3QGbBQ9BYbL4yILvCTwJS-gceXgMXcL_I,26524
481
481
  qiskit/quantum_info/operators/symplectic/clifford.py,sha256=Rr1uO_McfgHbzhQZmDTMzn0eBfh5XhfNRnKf_KziPDY,39627
482
482
  qiskit/quantum_info/operators/symplectic/clifford_circuits.py,sha256=quHd3khpTaj_77CrsOcJ53l_-x0NhZkhcHiEDpfn6zs,16371
483
- qiskit/quantum_info/operators/symplectic/pauli.py,sha256=xwV69rg17lJ0JAnlZJG-4zqJ9w6uMyJ04cIJ93qUsjw,29267
483
+ qiskit/quantum_info/operators/symplectic/pauli.py,sha256=RHXk8nMC6xkQ8oFSAp3Iqc3-f4Wpzs7JrmjRbZVSVA0,29316
484
484
  qiskit/quantum_info/operators/symplectic/pauli_list.py,sha256=XVP5UVKWbZmKc3obpMELMOXlxFFS2xa8bRsxly0ourE,47371
485
485
  qiskit/quantum_info/operators/symplectic/pauli_utils.py,sha256=mK4Unq150o-Mxz90OxZKEFH_ViQuMFpLYRbuYJEWFmE,1342
486
486
  qiskit/quantum_info/operators/symplectic/random.py,sha256=3OhyvJMXI6qLdi1UXSXNGDCG7UJy8QLZ4-o8HelWg_o,9162
487
- qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=6eHuqyRsBFjIxwLFk0kauFvZ9TIoa0rhMGWl48H-aUk,48051
487
+ qiskit/quantum_info/operators/symplectic/sparse_pauli_op.py,sha256=46Ae-hI8RxMNTaOQdgIkn_ZhEUK_qOo80CgdKHFUL4U,48244
488
488
  qiskit/quantum_info/operators/utils/__init__.py,sha256=lzQzcOH2CG2pPKkGT54lMIUTres_kprzbmMTVrI646c,724
489
489
  qiskit/quantum_info/operators/utils/anti_commutator.py,sha256=rTJvRxRxK1-CvCABRD0dE8e0OSDXPiA_0wV_IahhzAs,1013
490
490
  qiskit/quantum_info/operators/utils/commutator.py,sha256=xGwTSrqUvlt93VLdKknmxx4xRKtHRAYmovRY-364gWk,993
@@ -591,7 +591,7 @@ qiskit/synthesis/unitary/aqc/fast_gradient/fast_grad_utils.py,sha256=Z7BKkTQERao
591
591
  qiskit/synthesis/unitary/aqc/fast_gradient/fast_gradient.py,sha256=DCRZE4K-OOsPpYWwVncq7CBxyeZKQe-v5VlXwCGAno4,9282
592
592
  qiskit/synthesis/unitary/aqc/fast_gradient/layer.py,sha256=PikHrwNVf_M2KyAjUmy4aKnd4is-bdAqxOagcyaGjI4,13269
593
593
  qiskit/synthesis/unitary/aqc/fast_gradient/pmatrix.py,sha256=p1bb8kkUQLhnO1Uw5ghWDJWNuVBGQOgRfFc88EdYg0w,12645
594
- qiskit/transpiler/__init__.py,sha256=diK-MYizsFTPhZklOc6a-yWtNpZ2Z6LlO6rTYtUrP7Y,50028
594
+ qiskit/transpiler/__init__.py,sha256=n0QalQR6tTHwNXQMfmnK3-jlTTXNqurvatZ4bW4iSgw,50256
595
595
  qiskit/transpiler/basepasses.py,sha256=xnflZCEH6CA1bYUkTS8X3WkM1qS2ujk6qtBtFBp5L38,8990
596
596
  qiskit/transpiler/coupling.py,sha256=8oIvOUPpqT-wIjrCP8u0cHiemI1ON4714cH30BAE_iw,19103
597
597
  qiskit/transpiler/exceptions.py,sha256=ef9tiCFmu-fzGwKXg4e9CiBFjcJJxl5zA02L2Pk7wIQ,1769
@@ -623,7 +623,7 @@ qiskit/transpiler/passes/calibration/base_builder.py,sha256=4t08J2YPR8dquetDpl00
623
623
  qiskit/transpiler/passes/calibration/builders.py,sha256=hyO4ZM38wfUVdXFfrElB9mBFFDpvPr4ug_oJiTvqCYo,760
624
624
  qiskit/transpiler/passes/calibration/exceptions.py,sha256=LwxLFuxQfNDrrdwreqId4aKCBM4g0Lt7u3yKSnW5hnU,799
625
625
  qiskit/transpiler/passes/calibration/pulse_gate.py,sha256=gBd6fFxrs0xSzcMwJBQj5D04fn05ZXKO9pijXNeieyg,3819
626
- qiskit/transpiler/passes/calibration/rx_builder.py,sha256=tvgacH0D_YbuLIOXDCwTKgSYZOgt5mg2zJPtVSw_YHE,6219
626
+ qiskit/transpiler/passes/calibration/rx_builder.py,sha256=_OOVL4r-wOqCfsp76KEjV0LpKaz9ZgLdjRkKXbdv5rc,6221
627
627
  qiskit/transpiler/passes/calibration/rzx_builder.py,sha256=KFArA4mYBsuDl6ux3GW87NkAmBewddKcSqQrLdEDZb4,16856
628
628
  qiskit/transpiler/passes/calibration/rzx_templates.py,sha256=5u3RHOZpvAWxw2Ji7XrX5gcahfUROd9_hD1ImdX8s5k,1565
629
629
  qiskit/transpiler/passes/layout/__init__.py,sha256=BHZJXEnfbSQ404Hh65pbtOqkoD_H6yy9dok1u1_v-P8,1068
@@ -656,7 +656,7 @@ qiskit/transpiler/passes/optimization/commutative_inverse_cancellation.py,sha256
656
656
  qiskit/transpiler/passes/optimization/consolidate_blocks.py,sha256=sPT3OqVcM7ntuBmE71CFuiLkzcj28anKXqkDT3ZKNv0,10409
657
657
  qiskit/transpiler/passes/optimization/cx_cancellation.py,sha256=0e-7eMwdhy4NG6YllXUosWecPm1UwMQYngi-hyuuxak,2401
658
658
  qiskit/transpiler/passes/optimization/echo_rzx_weyl_decomposition.py,sha256=JHyADrASrY7F3XFKgXssYHUSPLqTicMgEldYZovbGWs,7176
659
- qiskit/transpiler/passes/optimization/elide_permutations.py,sha256=znCVVVsX8OcSqGZHtgkcZUBbQFVchRqV2vowGKPcjNw,5480
659
+ qiskit/transpiler/passes/optimization/elide_permutations.py,sha256=sieKARd_D2CN8gmcO1b4WTVJQUGXhajUxPcDezb5IFw,5483
660
660
  qiskit/transpiler/passes/optimization/hoare_opt.py,sha256=xdSqEmWinuAVkgBGIiFNS-PB7NnzkSFwN-h_BugZOgE,16711
661
661
  qiskit/transpiler/passes/optimization/inverse_cancellation.py,sha256=MuoJwkBJtYKtTJ8KKOCmy-YdSz0eeIb-bEDTe4MA8hU,7007
662
662
  qiskit/transpiler/passes/optimization/normalize_rx_angle.py,sha256=AbnCL0yvtCp-4O1O8lpFzj8fSzMZ3QYG6gjmJI7uHAE,6404
@@ -709,7 +709,7 @@ qiskit/transpiler/passes/scheduling/alignments/reschedule.py,sha256=sVLJcyTyhlBU
709
709
  qiskit/transpiler/passes/scheduling/padding/__init__.py,sha256=7OPW8Pbw8BbeNG5QnDem7CAUA4oV_OQ6FxM6W9iMRww,645
710
710
  qiskit/transpiler/passes/scheduling/padding/base_padding.py,sha256=9nqx4CQK_6wyMiFXPWsjNc1DcvORJAtyzKBF7Ca8Ym0,10709
711
711
  qiskit/transpiler/passes/scheduling/padding/dynamical_decoupling.py,sha256=mTykJL63hQt0g7sXKDNCYaIw3OXZODo60W4mX9Ww9sE,20989
712
- qiskit/transpiler/passes/scheduling/padding/pad_delay.py,sha256=iEUoYQJxMHHglUqiWiO7FFPW4a_DsgLsyE3z6S6csVE,2842
712
+ qiskit/transpiler/passes/scheduling/padding/pad_delay.py,sha256=n6C4RCP1XDvdnMrxv7xTOw1oH80YobavbtGCC0hi7ok,2947
713
713
  qiskit/transpiler/passes/scheduling/scheduling/__init__.py,sha256=cInij3Y6NmFG6gUgec7IKaQ-0ZZR-iIuxpUbnfjs1YE,671
714
714
  qiskit/transpiler/passes/scheduling/scheduling/alap.py,sha256=dmXqXzOToI5gxynkzkNCyLO_33e7bWWH8aDLCpUHnps,5785
715
715
  qiskit/transpiler/passes/scheduling/scheduling/asap.py,sha256=LSzdQ-8Xt7r9ZT-Ify9vUIrjfDdcxJo29eJtUNk_Kbk,5896
@@ -717,7 +717,7 @@ qiskit/transpiler/passes/scheduling/scheduling/base_scheduler.py,sha256=ACtpf6vR
717
717
  qiskit/transpiler/passes/scheduling/scheduling/set_io_latency.py,sha256=FmQSvPbI67L1MvF4A1tbM3Z_8r_7bx6exAyt2Iy-uVw,2918
718
718
  qiskit/transpiler/passes/synthesis/__init__.py,sha256=Q18fvaIkZ1PXp680Y53DkatyPg81zNVrdUp_hTJ7k_c,945
719
719
  qiskit/transpiler/passes/synthesis/aqc_plugin.py,sha256=y3eoBqsHfugseAa2wYvY-5eWF1GME_TOWnHke9z8NTI,5496
720
- qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=I5T0fpNkhI2OuwWT8QGo16AUbWoQxYx_abjOmYgTJXY,49435
720
+ qiskit/transpiler/passes/synthesis/high_level_synthesis.py,sha256=TDLDfx18PbNzsz7B-jhxybvyMCi2Tyef4oYZ35juObo,49847
721
721
  qiskit/transpiler/passes/synthesis/linear_functions_synthesis.py,sha256=Sit6NoTlFXNBDrDxlyMar9ro7VunRJQxWb5NeG2JTZc,1448
722
722
  qiskit/transpiler/passes/synthesis/plugin.py,sha256=WtR_Y-l_zFhg-O0pjRiqVSeI0TlO3DFlPJRFoKRFgzQ,31549
723
723
  qiskit/transpiler/passes/synthesis/solovay_kitaev_synthesis.py,sha256=APxdgQFH6Lf1BTIZ4Vp8OixNf0Aa0Bw_D00XL74ydfs,11346
@@ -741,7 +741,7 @@ qiskit/transpiler/passes/utils/remove_barriers.py,sha256=6tt0RX7mFpHubyQe22uSVSE
741
741
  qiskit/transpiler/passes/utils/remove_final_measurements.py,sha256=VWFXt3_IhmuS7XgxKJodL2WdEOdhfgxtRmxGnUFN6jA,4831
742
742
  qiskit/transpiler/passes/utils/unroll_forloops.py,sha256=mkjucqYOXyfJpCT3dtXUMJeiEUoi6NegGfAubXmmZRo,3201
743
743
  qiskit/transpiler/preset_passmanagers/__init__.py,sha256=DIC_jvndc-sN6x3F7mag-TPV67QN5QqCS3AC2qvuqsw,2831
744
- qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=PPMfx70IugozdHOA7d3XkfKAWFxsCjkfHwbWWpXfbkw,43024
744
+ qiskit/transpiler/preset_passmanagers/builtin_plugins.py,sha256=Jmwilur-nrMv9cfslcvjSouPfi9zDRBgNMQb2VIEZLU,43090
745
745
  qiskit/transpiler/preset_passmanagers/common.py,sha256=N_nRRaqXz_SKtyW3GxOZHpccdNxW0D0p2hekDkFwQHw,26494
746
746
  qiskit/transpiler/preset_passmanagers/generate_preset_pass_manager.py,sha256=R5B6bxooxUo5pftksOyqW4_ds6x0yHCnk4CJVquNvh8,26514
747
747
  qiskit/transpiler/preset_passmanagers/level0.py,sha256=-X8y92rTBnvYlbXnWcFgwkF78FZK9Gn2Z9Pd9h0dvfA,4390
@@ -766,7 +766,7 @@ qiskit/visualization/dag_visualization.py,sha256=qGluMH_v6ZfpNkZ401wKhCFKVO-m9bB
766
766
  qiskit/visualization/exceptions.py,sha256=bSqwc-u6Vf6L4BY9kJ3mlPJf9eh4c5PsDZcRDGKeZC8,703
767
767
  qiskit/visualization/gate_map.py,sha256=pSBf3ZQWH3oG-t3keqq3NwGxdyi8Rh5fKClFPvOW66Q,38560
768
768
  qiskit/visualization/library.py,sha256=HTSEdn2He7JxNevx5jkodbfqa_Uqr6-lSVDtaQE9Vio,1332
769
- qiskit/visualization/pass_manager_visualization.py,sha256=oa9ay1dIunTUtEs5PN4y84uEU-qOzLL6Q3jozRnEopg,11539
769
+ qiskit/visualization/pass_manager_visualization.py,sha256=84Po2WSqCJx8E44V6ErQ_qkyNwV0qRajjGqAEE-zVpQ,11194
770
770
  qiskit/visualization/state_visualization.py,sha256=PDcCIgAgSzN98PKoEJcb2vt4oTebhw4i3lcMeP8nZGQ,53717
771
771
  qiskit/visualization/transition_visualization.py,sha256=bI4hGiznEnRU2irgooABRG9VXAN8UPmizj7ID_rx02Y,12633
772
772
  qiskit/visualization/utils.py,sha256=YFjqxrfbu1_raYr-Yp3ZluL5GQFuENPB0MP1K0BJuYY,1825
@@ -812,9 +812,9 @@ qiskit/visualization/timeline/types.py,sha256=jtpipQWUpahayNPQYKUst4GG6BqauovO0q
812
812
  qiskit/visualization/timeline/plotters/__init__.py,sha256=Klg9a1cSUIQhc815g8OpnD5vO1hcI51L9KlFfKzcuRg,588
813
813
  qiskit/visualization/timeline/plotters/base_plotter.py,sha256=taRkL2ZbyorRUEf6nJS8egdzKW2eznQ3w5oBLtMG_U8,1805
814
814
  qiskit/visualization/timeline/plotters/matplotlib.py,sha256=lqqNH3-bdf1F1cS2mDla9dLr5qEOeIFuqVl9Rhdg-Dw,7086
815
- qiskit-1.2.1.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
816
- qiskit-1.2.1.dist-info/METADATA,sha256=X_MvkL4W2gOI8_l3vyqsuT5iQNXM2EkiMr4AnICcxUc,13089
817
- qiskit-1.2.1.dist-info/WHEEL,sha256=wbeAP3FaEg2XPA1YvjyV0o9Zyj-L4W4y8U1O-4kQUaw,96
818
- qiskit-1.2.1.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
819
- qiskit-1.2.1.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
820
- qiskit-1.2.1.dist-info/RECORD,,
815
+ qiskit-1.2.2.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
816
+ qiskit-1.2.2.dist-info/METADATA,sha256=u34nR1C3P7RuyykO2nNCxxJv9w8YhmtHrsHmvAIS_0s,13089
817
+ qiskit-1.2.2.dist-info/WHEEL,sha256=wbeAP3FaEg2XPA1YvjyV0o9Zyj-L4W4y8U1O-4kQUaw,96
818
+ qiskit-1.2.2.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
819
+ qiskit-1.2.2.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
820
+ qiskit-1.2.2.dist-info/RECORD,,
File without changes