qiskit 1.2.3__cp38-abi3-win32.whl → 1.2.4__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.3
1
+ 1.2.4
qiskit/_accelerate.pyd CHANGED
Binary file
@@ -94,6 +94,12 @@ class BlueprintCircuit(QuantumCircuit, ABC):
94
94
 
95
95
  @property
96
96
  def data(self):
97
+ """The circuit data (instructions and context).
98
+
99
+ Returns:
100
+ QuantumCircuitData: a list-like object containing the :class:`.CircuitInstruction`\\ s
101
+ for each instruction.
102
+ """
97
103
  if not self._is_built:
98
104
  self._build()
99
105
  return super().data
@@ -110,12 +116,70 @@ class BlueprintCircuit(QuantumCircuit, ABC):
110
116
 
111
117
  @property
112
118
  def num_parameters(self) -> int:
119
+ """The number of parameter objects in the circuit."""
113
120
  if not self._is_built:
114
121
  self._build()
115
122
  return super().num_parameters
116
123
 
117
124
  @property
118
125
  def parameters(self) -> ParameterView:
126
+ """The parameters defined in the circuit.
127
+
128
+ This attribute returns the :class:`.Parameter` objects in the circuit sorted
129
+ alphabetically. Note that parameters instantiated with a :class:`.ParameterVector`
130
+ are still sorted numerically.
131
+
132
+ Examples:
133
+
134
+ The snippet below shows that insertion order of parameters does not matter.
135
+
136
+ .. code-block:: python
137
+
138
+ >>> from qiskit.circuit import QuantumCircuit, Parameter
139
+ >>> a, b, elephant = Parameter("a"), Parameter("b"), Parameter("elephant")
140
+ >>> circuit = QuantumCircuit(1)
141
+ >>> circuit.rx(b, 0)
142
+ >>> circuit.rz(elephant, 0)
143
+ >>> circuit.ry(a, 0)
144
+ >>> circuit.parameters # sorted alphabetically!
145
+ ParameterView([Parameter(a), Parameter(b), Parameter(elephant)])
146
+
147
+ Bear in mind that alphabetical sorting might be unintuitive when it comes to numbers.
148
+ The literal "10" comes before "2" in strict alphabetical sorting.
149
+
150
+ .. code-block:: python
151
+
152
+ >>> from qiskit.circuit import QuantumCircuit, Parameter
153
+ >>> angles = [Parameter("angle_1"), Parameter("angle_2"), Parameter("angle_10")]
154
+ >>> circuit = QuantumCircuit(1)
155
+ >>> circuit.u(*angles, 0)
156
+ >>> circuit.draw()
157
+ ┌─────────────────────────────┐
158
+ q: ┤ U(angle_1,angle_2,angle_10) ├
159
+ └─────────────────────────────┘
160
+ >>> circuit.parameters
161
+ ParameterView([Parameter(angle_1), Parameter(angle_10), Parameter(angle_2)])
162
+
163
+ To respect numerical sorting, a :class:`.ParameterVector` can be used.
164
+
165
+ .. code-block:: python
166
+
167
+ >>> from qiskit.circuit import QuantumCircuit, Parameter, ParameterVector
168
+ >>> x = ParameterVector("x", 12)
169
+ >>> circuit = QuantumCircuit(1)
170
+ >>> for x_i in x:
171
+ ... circuit.rx(x_i, 0)
172
+ >>> circuit.parameters
173
+ ParameterView([
174
+ ParameterVectorElement(x[0]), ParameterVectorElement(x[1]),
175
+ ParameterVectorElement(x[2]), ParameterVectorElement(x[3]),
176
+ ..., ParameterVectorElement(x[11])
177
+ ])
178
+
179
+
180
+ Returns:
181
+ The sorted :class:`.Parameter` objects in the circuit.
182
+ """
119
183
  if not self._is_built:
120
184
  self._build()
121
185
  return super().parameters
@@ -57,11 +57,11 @@ class PauliFeatureMap(NLocal):
57
57
 
58
58
  .. parsed-literal::
59
59
 
60
- ┌───┐┌──────────────┐┌──────────┐ ┌───────────┐
61
- ┤ H ├┤ U1(2.0*x[0]) ├┤ RX(pi/2) ├──■───────────────────────────────────────■──┤ RX(-pi/2) ├
62
- ├───┤├──────────────┤├──────────┤┌─┴─┐┌─────────────────────────────────┐┌─┴─┐├───────────┤
63
- ┤ H ├┤ U1(2.0*x[1]) ├┤ RX(pi/2) ├┤ X ├┤ U1(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├┤ RX(-pi/2) ├
64
- └───┘└──────────────┘└──────────┘└───┘└─────────────────────────────────┘└───┘└───────────┘
60
+ ┌───┐┌─────────────┐┌──────────┐ ┌───────────┐
61
+ ┤ H ├┤ P(2.0*x[0]) ├┤ RX(pi/2) ├──■──────────────────────────────────────■──┤ RX(-pi/2) ├
62
+ ├───┤├─────────────┤├──────────┤┌─┴─┐┌────────────────────────────────┐┌─┴─┐├───────────┤
63
+ ┤ H ├┤ P(2.0*x[1]) ├┤ RX(pi/2) ├┤ X ├┤ P(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├┤ RX(-pi/2) ├
64
+ └───┘└─────────────┘└──────────┘└───┘└────────────────────────────────┘└───┘└───────────┘
65
65
 
66
66
  The circuit contains ``reps`` repetitions of this transformation.
67
67
 
@@ -71,37 +71,37 @@ class PauliFeatureMap(NLocal):
71
71
  Examples:
72
72
 
73
73
  >>> prep = PauliFeatureMap(2, reps=1, paulis=['ZZ'])
74
- >>> print(prep)
74
+ >>> print(prep.decompose())
75
75
  ┌───┐
76
- q_0: ┤ H ├──■───────────────────────────────────────■──
77
- ├───┤┌─┴─┐┌─────────────────────────────────┐┌─┴─┐
78
- q_1: ┤ H ├┤ X ├┤ U1(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├
79
- └───┘└───┘└─────────────────────────────────┘└───┘
76
+ q_0: ┤ H ├──■──────────────────────────────────────■──
77
+ ├───┤┌─┴─┐┌────────────────────────────────┐┌─┴─┐
78
+ q_1: ┤ H ├┤ X ├┤ P(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├
79
+ └───┘└───┘└────────────────────────────────┘└───┘
80
80
 
81
81
  >>> prep = PauliFeatureMap(2, reps=1, paulis=['Z', 'XX'])
82
- >>> print(prep)
83
- ┌───┐┌──────────────┐┌───┐ ┌───┐
84
- q_0: ┤ H ├┤ U1(2.0*x[0]) ├┤ H ├──■───────────────────────────────────────■──┤ H ├
85
- ├───┤├──────────────┤├───┤┌─┴─┐┌─────────────────────────────────┐┌─┴─┐├───┤
86
- q_1: ┤ H ├┤ U1(2.0*x[1]) ├┤ H ├┤ X ├┤ U1(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├┤ H ├
87
- └───┘└──────────────┘└───┘└───┘└─────────────────────────────────┘└───┘└───┘
82
+ >>> print(prep.decompose())
83
+ ┌───┐┌─────────────┐┌───┐ ┌───┐
84
+ q_0: ┤ H ├┤ P(2.0*x[0]) ├┤ H ├──■──────────────────────────────────────■──┤ H ├
85
+ ├───┤├─────────────┤├───┤┌─┴─┐┌────────────────────────────────┐┌─┴─┐├───┤
86
+ q_1: ┤ H ├┤ P(2.0*x[1]) ├┤ H ├┤ X ├┤ P(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├┤ H ├
87
+ └───┘└─────────────┘└───┘└───┘└────────────────────────────────┘└───┘└───┘
88
88
 
89
89
  >>> prep = PauliFeatureMap(2, reps=1, paulis=['ZY'])
90
- >>> print(prep)
91
- ┌───┐┌──────────┐ ┌───────────┐
92
- q_0: ┤ H ├┤ RX(pi/2) ├──■───────────────────────────────────────■──┤ RX(-pi/2) ├
93
- ├───┤└──────────┘┌─┴─┐┌─────────────────────────────────┐┌─┴─┐└───────────┘
94
- q_1: ┤ H ├────────────┤ X ├┤ U1(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├─────────────
95
- └───┘ └───┘└─────────────────────────────────┘└───┘
90
+ >>> print(prep.decompose())
91
+ ┌───┐┌──────────┐ ┌───────────┐
92
+ q_0: ┤ H ├┤ RX(pi/2) ├──■──────────────────────────────────────■──┤ RX(-pi/2) ├
93
+ ├───┤└──────────┘┌─┴─┐┌────────────────────────────────┐┌─┴─┐└───────────┘
94
+ q_1: ┤ H ├────────────┤ X ├┤ P(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├─────────────
95
+ └───┘ └───┘└────────────────────────────────┘└───┘
96
96
 
97
97
  >>> from qiskit.circuit.library import EfficientSU2
98
98
  >>> prep = PauliFeatureMap(3, reps=3, paulis=['Z', 'YY', 'ZXZ'])
99
99
  >>> wavefunction = EfficientSU2(3)
100
- >>> classifier = prep.compose(wavefunction)
100
+ >>> classifier = prep.compose(wavefunction).decompose()
101
101
  >>> classifier.num_parameters
102
102
  27
103
103
  >>> classifier.count_ops()
104
- OrderedDict([('cx', 39), ('rx', 36), ('u1', 21), ('h', 15), ('ry', 12), ('rz', 12)])
104
+ OrderedDict([('cx', 39), ('rx', 36), ('p', 21), ('h', 15), ('ry', 12), ('rz', 12)])
105
105
 
106
106
  References:
107
107
 
@@ -209,6 +209,11 @@ class PauliFeatureMap(NLocal):
209
209
 
210
210
  @property
211
211
  def entanglement_blocks(self):
212
+ """The blocks in the entanglement layers.
213
+
214
+ Returns:
215
+ The blocks in the entanglement layers.
216
+ """
212
217
  return [self.pauli_block(pauli) for pauli in self._paulis]
213
218
 
214
219
  @entanglement_blocks.setter
@@ -25,13 +25,13 @@ class ZFeatureMap(PauliFeatureMap):
25
25
 
26
26
  .. parsed-literal::
27
27
 
28
- ┌───┐┌──────────────┐┌───┐┌──────────────┐
29
- ┤ H ├┤ U1(2.0*x[0]) ├┤ H ├┤ U1(2.0*x[0]) ├
30
- ├───┤├──────────────┤├───┤├──────────────┤
31
- ┤ H ├┤ U1(2.0*x[1]) ├┤ H ├┤ U1(2.0*x[1]) ├
32
- ├───┤├──────────────┤├───┤├──────────────┤
33
- ┤ H ├┤ U1(2.0*x[2]) ├┤ H ├┤ U1(2.0*x[2]) ├
34
- └───┘└──────────────┘└───┘└──────────────┘
28
+ ┌───┐┌─────────────┐┌───┐┌─────────────┐
29
+ ┤ H ├┤ P(2.0*x[0]) ├┤ H ├┤ P(2.0*x[0]) ├
30
+ ├───┤├─────────────┤├───┤├─────────────┤
31
+ ┤ H ├┤ P(2.0*x[1]) ├┤ H ├┤ P(2.0*x[1]) ├
32
+ ├───┤├─────────────┤├───┤├─────────────┤
33
+ ┤ H ├┤ P(2.0*x[2]) ├┤ H ├┤ P(2.0*x[2]) ├
34
+ └───┘└─────────────┘└───┘└─────────────┘
35
35
 
36
36
  This is a sub-class of :class:`~qiskit.circuit.library.PauliFeatureMap` where the Pauli
37
37
  strings are fixed as `['Z']`. As a result the first order expansion will be a circuit without
@@ -39,36 +39,38 @@ class ZFeatureMap(PauliFeatureMap):
39
39
 
40
40
  Examples:
41
41
 
42
+ >>> from qiskit.circuit.library import ZFeatureMap
42
43
  >>> prep = ZFeatureMap(3, reps=3, insert_barriers=True)
43
- >>> print(prep)
44
- ┌───┐ ░ ┌──────────────┐ ░ ┌───┐ ░ ┌──────────────┐ ░ ┌───┐ ░ ┌──────────────┐
45
- q_0: ┤ H ├─░─┤ U1(2.0*x[0]) ├─░─┤ H ├─░─┤ U1(2.0*x[0]) ├─░─┤ H ├─░─┤ U1(2.0*x[0]) ├
46
- ├───┤ ░ ├──────────────┤ ░ ├───┤ ░ ├──────────────┤ ░ ├───┤ ░ ├──────────────┤
47
- q_1: ┤ H ├─░─┤ U1(2.0*x[1]) ├─░─┤ H ├─░─┤ U1(2.0*x[1]) ├─░─┤ H ├─░─┤ U1(2.0*x[1]) ├
48
- ├───┤ ░ ├──────────────┤ ░ ├───┤ ░ ├──────────────┤ ░ ├───┤ ░ ├──────────────┤
49
- q_2: ┤ H ├─░─┤ U1(2.0*x[2]) ├─░─┤ H ├─░─┤ U1(2.0*x[2]) ├─░─┤ H ├─░─┤ U1(2.0*x[2]) ├
50
- └───┘ ░ └──────────────┘ ░ └───┘ ░ └──────────────┘ ░ └───┘ ░ └──────────────┘
44
+ >>> print(prep.decompose())
45
+ ┌───┐ ░ ┌─────────────┐ ░ ┌───┐ ░ ┌─────────────┐ ░ ┌───┐ ░ ┌─────────────┐
46
+ q_0: ┤ H ├─░─┤ P(2.0*x[0]) ├─░─┤ H ├─░─┤ P(2.0*x[0]) ├─░─┤ H ├─░─┤ P(2.0*x[0]) ├
47
+ ├───┤ ░ ├─────────────┤ ░ ├───┤ ░ ├─────────────┤ ░ ├───┤ ░ ├─────────────┤
48
+ q_1: ┤ H ├─░─┤ P(2.0*x[1]) ├─░─┤ H ├─░─┤ P(2.0*x[1]) ├─░─┤ H ├─░─┤ P(2.0*x[1]) ├
49
+ ├───┤ ░ ├─────────────┤ ░ ├───┤ ░ ├─────────────┤ ░ ├───┤ ░ ├─────────────┤
50
+ q_2: ┤ H ├─░─┤ P(2.0*x[2]) ├─░─┤ H ├─░─┤ P(2.0*x[2]) ├─░─┤ H ├─░─┤ P(2.0*x[2]) ├
51
+ └───┘ ░ └─────────────┘ ░ └───┘ ░ └─────────────┘ ░ └───┘ ░ └─────────────┘
51
52
 
52
53
  >>> data_map = lambda x: x[0]*x[0] + 1 # note: input is an array
53
54
  >>> prep = ZFeatureMap(3, reps=1, data_map_func=data_map)
54
- >>> print(prep)
55
- ┌───┐┌───────────────────────┐
56
- q_0: ┤ H ├┤ U1(2.0*x[0]**2 + 2.0) ├
57
- ├───┤├───────────────────────┤
58
- q_1: ┤ H ├┤ U1(2.0*x[1]**2 + 2.0) ├
59
- ├───┤├───────────────────────┤
60
- q_2: ┤ H ├┤ U1(2.0*x[2]**2 + 2.0) ├
61
- └───┘└───────────────────────┘
62
-
63
- >>> classifier = ZFeatureMap(3, reps=1) + RY(3, reps=1)
64
- >>> print(classifier)
65
- ┌───┐┌──────────────┐┌──────────┐ ┌──────────┐
66
- q_0: ┤ H ├┤ U1(2.0*x[0]) ├┤ RY(θ[0]) ├─■──■─┤ RY(θ[3]) ├────────────
67
- ├───┤├──────────────┤├──────────┤ │ │ └──────────┘┌──────────┐
68
- q_1: H ├┤ U1(2.0*x[1]) ├┤ RY(θ[1]) ├─■──┼──────■──────┤ RY(θ[4]) ├
69
- ├───┤├──────────────┤├──────────┤ │ │ ├──────────┤
70
- q_2: ┤ H ├┤ U1(2.0*x[2]) ├┤ RY(θ[2]) ├────■──────■──────┤ RY(θ[5]) ├
71
- └───┘└──────────────┘└──────────┘ └──────────┘
55
+ >>> print(prep.decompose())
56
+ ┌───┐┌──────────────────────┐
57
+ q_0: ┤ H ├┤ P(2.0*x[0]**2 + 2.0) ├
58
+ ├───┤├──────────────────────┤
59
+ q_1: ┤ H ├┤ P(2.0*x[1]**2 + 2.0) ├
60
+ ├───┤├──────────────────────┤
61
+ q_2: ┤ H ├┤ P(2.0*x[2]**2 + 2.0) ├
62
+ └───┘└──────────────────────┘
63
+
64
+ >>> from qiskit.circuit.library import RealAmplitudes
65
+ >>> classifier = ZFeatureMap(3, reps=1).compose(RealAmplitudes(3, reps=1))
66
+ >>> print(classifier.decompose())
67
+ ┌───┐┌─────────────┐┌──────────┐ ┌──────────┐
68
+ q_0: H ├┤ P(2.0*x[0]) ├┤ RY(θ[0]) ├─■──■─┤ RY(θ[3]) ├────────────
69
+ ├───┤├─────────────┤├──────────┤ │ │ └──────────┘┌──────────┐
70
+ q_1: ┤ H ├┤ P(2.0*x[1]) ├┤ RY(θ[1]) ├─■──┼──────■──────┤ RY(θ[4]) ├
71
+ ├───┤├─────────────┤├──────────┤ │ │ ├──────────┤
72
+ q_2: ┤ H ├┤ P(2.0*x[2]) ├┤ RY(θ[2]) ├────■──────■──────┤ RY(θ[5]) ├
73
+ └───┘└─────────────┘└──────────┘ └──────────┘
72
74
 
73
75
  """
74
76
 
@@ -24,51 +24,73 @@ class ZZFeatureMap(PauliFeatureMap):
24
24
 
25
25
  .. parsed-literal::
26
26
 
27
- ┌───┐┌─────────────────┐
28
- ┤ H ├┤ U1(2.0*φ(x[0])) ├──■────────────────────────────■────────────────────────────────────
29
- ├───┤├─────────────────┤┌─┴─┐┌──────────────────────┐┌─┴─┐
30
- ┤ H ├┤ U1(2.0*φ(x[1])) ├┤ X ├┤ U1(2.0*φ(x[0],x[1])) ├┤ X ├──■────────────────────────────■──
31
- ├───┤├─────────────────┤└───┘└──────────────────────┘└───┘┌─┴─┐┌──────────────────────┐┌─┴─┐
32
- ┤ H ├┤ U1(2.0*φ(x[2])) ├──────────────────────────────────┤ X ├┤ U1(2.0*φ(x[1],x[2])) ├┤ X ├
33
- └───┘└─────────────────┘ └───┘└──────────────────────┘└───┘
27
+ ┌───┐┌────────────────┐
28
+ ┤ H ├┤ P(2.0*φ(x[0])) ├──■───────────────────────────■───────────────────────────────────
29
+ ├───┤├────────────────┤┌─┴─┐┌─────────────────────┐┌─┴─┐
30
+ ┤ H ├┤ P(2.0*φ(x[1])) ├┤ X ├┤ P(2.0*φ(x[0],x[1])) ├┤ X ├──■───────────────────────────■──
31
+ ├───┤├────────────────┤└───┘└─────────────────────┘└───┘┌─┴─┐┌─────────────────────┐┌─┴─┐
32
+ ┤ H ├┤ P(2.0*φ(x[2])) ├─────────────────────────────────┤ X ├┤ P(2.0*φ(x[1],x[2])) ├┤ X ├
33
+ └───┘└────────────────┘ └───┘└─────────────────────┘└───┘
34
34
 
35
35
  where :math:`\varphi` is a classical non-linear function, which defaults to :math:`\varphi(x) = x`
36
36
  if and :math:`\varphi(x,y) = (\pi - x)(\pi - y)`.
37
37
 
38
38
  Examples:
39
39
 
40
- >>> from qiskit.circuit.library import ZZFeatureMap
41
- >>> prep = ZZFeatureMap(2, reps=1)
42
- >>> print(prep)
43
- ┌───┐┌──────────────┐
44
- q_0: ┤ H ├┤ U1(2.0*x[0]) ├──■───────────────────────────────────────■──
45
- ├───┤├──────────────┤┌─┴─┐┌─────────────────────────────────┐┌─┴─┐
46
- q_1: ┤ H ├┤ U1(2.0*x[1]) ├┤ X ├┤ U1(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├
47
- └───┘└──────────────┘└───┘└─────────────────────────────────┘└───┘
48
-
49
- >>> from qiskit.circuit.library import EfficientSU2
50
- >>> classifier = ZZFeatureMap(3) + EfficientSU2(3)
51
- >>> classifier.num_parameters
52
- 15
53
- >>> classifier.parameters # 'x' for the data preparation, 'θ' for the SU2 parameters
54
- ParameterView([
55
- ParameterVectorElement(x[0]), ParameterVectorElement(x[1]),
56
- ParameterVectorElement(x[2]), ParameterVectorElement(θ[0]),
57
- ParameterVectorElement(θ[1]), ParameterVectorElement(θ[2]),
58
- ParameterVectorElement(θ[3]), ParameterVectorElement(θ[4]),
59
- ParameterVectorElement(θ[5]), ParameterVectorElement(θ[6]),
60
- ParameterVectorElement(θ[7]), ParameterVectorElement(θ[8]),
61
- ParameterVectorElement(θ[9]), ParameterVectorElement(θ[10]),
62
- ParameterVectorElement(θ[11]), ParameterVectorElement(θ[12]),
63
- ParameterVectorElement(θ[13]), ParameterVectorElement(θ[14]),
64
- ParameterVectorElement(θ[15]), ParameterVectorElement(θ[16]),
65
- ParameterVectorElement(θ[17]), ParameterVectorElement(θ[18]),
66
- ParameterVectorElement(θ[19]), ParameterVectorElement(θ[20]),
67
- ParameterVectorElement(θ[21]), ParameterVectorElement(θ[22]),
68
- ParameterVectorElement(θ[23])
69
- ])
70
- >>> classifier.count_ops()
40
+ .. code-block::
41
+
42
+ from qiskit.circuit.library import ZZFeatureMap
43
+ prep = ZZFeatureMap(2, reps=1)
44
+ print(prep.decompose())
45
+
46
+ .. parsed-literal::
47
+ ┌───┐┌─────────────┐
48
+ q_0: ┤ H ├┤ P(2.0*x[0]) ├──■──────────────────────────────────────■──
49
+ ├───┤├─────────────┤┌─┴─┐┌────────────────────────────────┐┌─┴─┐
50
+ q_1: H ├┤ P(2.0*x[1]) ├┤ X ├┤ P(2.0*(pi - x[0])*(pi - x[1])) ├┤ X ├
51
+ └───┘└─────────────┘└───┘└────────────────────────────────┘└───┘
52
+
53
+ .. code-block::
54
+
55
+ from qiskit.circuit.library import EfficientSU2
56
+ classifier = ZZFeatureMap(3).compose(EfficientSU2(3))
57
+ classifier.num_parameters
58
+
59
+ .. parsed-literal::
60
+
61
+ 27
62
+
63
+ .. code-block::
64
+
65
+ classifier.parameters # 'x' for the data preparation, 'θ' for the SU2 parameters
66
+
67
+ .. parsed-literal::
68
+
69
+ ParameterView([
70
+ ParameterVectorElement(x[0]), ParameterVectorElement(x[1]),
71
+ ParameterVectorElement(x[2]), ParameterVectorElement(θ[0]),
72
+ ParameterVectorElement(θ[1]), ParameterVectorElement(θ[2]),
73
+ ParameterVectorElement(θ[3]), ParameterVectorElement(θ[4]),
74
+ ParameterVectorElement(θ[5]), ParameterVectorElement(θ[6]),
75
+ ParameterVectorElement(θ[7]), ParameterVectorElement(θ[8]),
76
+ ParameterVectorElement(θ[9]), ParameterVectorElement(θ[10]),
77
+ ParameterVectorElement(θ[11]), ParameterVectorElement(θ[12]),
78
+ ParameterVectorElement(θ[13]), ParameterVectorElement(θ[14]),
79
+ ParameterVectorElement(θ[15]), ParameterVectorElement(θ[16]),
80
+ ParameterVectorElement(θ[17]), ParameterVectorElement(θ[18]),
81
+ ParameterVectorElement(θ[19]), ParameterVectorElement(θ[20]),
82
+ ParameterVectorElement(θ[21]), ParameterVectorElement(θ[22]),
83
+ ParameterVectorElement(θ[23])
84
+ ])
85
+
86
+ .. code-block::
87
+
88
+ classifier.count_ops()
89
+
90
+ .. parsed-literal::
91
+
71
92
  OrderedDict([('ZZFeatureMap', 1), ('EfficientSU2', 1)])
93
+
72
94
  """
73
95
 
74
96
  def __init__(
qiskit/qpy/__init__.py CHANGED
@@ -118,11 +118,11 @@ and how the feature will be internally handled.
118
118
 
119
119
  .. note::
120
120
 
121
- With versions of Qiskit before 1.2.3, the ``use_symengine=True`` argument to :func:`.qpy.dump`
121
+ With versions of Qiskit before 1.2.4, the ``use_symengine=True`` argument to :func:`.qpy.dump`
122
122
  could cause problems with backwards compatibility if there were :class:`.ParameterExpression`
123
123
  objects to serialize. In particular:
124
124
 
125
- * When the loading version of Qiskit is 1.2.3 or greater, QPY files generated with any version
125
+ * When the loading version of Qiskit is 1.2.4 or greater, QPY files generated with any version
126
126
  of Qiskit >= 0.46.0 can be loaded. If a version of Qiskit between 0.45.0 and 0.45.3 was used
127
127
  to generate the files, and the non-default argument ``use_symengine=True`` was given to
128
128
  :func:`.qpy.dump`, the file can only be read if the version of ``symengine`` used in the
@@ -134,7 +134,7 @@ and how the feature will be internally handled.
134
134
  used in the generating environment.
135
135
 
136
136
  To recover a QPY file that fails with ``symengine`` version-related errors during a call to
137
- :func:`.qpy.load`, try first to use Qiskit >= 1.2.3 to load the file. If this still fails,
137
+ :func:`.qpy.load`, first attempt to use Qiskit >= 1.2.4 to load the file. If this still fails,
138
138
  it is likely because Qiskit 0.45.x was used to generate the file with ``use_symengine=True``.
139
139
  In this case, use Qiskit 0.45.3 with ``symengine==0.9.2`` to load the file, and then re-export
140
140
  it to QPY setting ``use_symengine=False``. The resulting file can then be loaded by any later
qiskit/qpy/common.py CHANGED
@@ -322,7 +322,7 @@ def load_symengine_payload(payload: bytes) -> symengine.Expr:
322
322
  major = payload[2]
323
323
  minor = payload[3]
324
324
  if int(symengine_version[1]) != minor:
325
- if major != "0":
325
+ if major != 0:
326
326
  raise exceptions.QpyError(
327
327
  "Qiskit doesn't support loading a symengine payload generated with symengine >= 1.0"
328
328
  )
qiskit/qpy/interface.py CHANGED
@@ -149,7 +149,7 @@ def dump(
149
149
  If serializing a :class:`.QuantumCircuit` or :class:`.ScheduleBlock` that contain
150
150
  :class:`.ParameterExpression` objects with ``version`` set low with the intent to
151
151
  load the payload using a historical release of Qiskit, it is safest to set the
152
- ``use_symengine`` flag to ``False``. Versions of Qiskit prior to 1.2.3 cannot load
152
+ ``use_symengine`` flag to ``False``. Versions of Qiskit prior to 1.2.4 cannot load
153
153
  QPY files containing ``symengine``-serialized :class:`.ParameterExpression` objects
154
154
  unless the version of ``symengine`` used between the loading and generating
155
155
  environments matches.
@@ -191,7 +191,7 @@ def circuit_drawer(
191
191
  .. plot::
192
192
  :include-source:
193
193
 
194
- from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit
194
+ from qiskit import QuantumCircuit
195
195
  qc = QuantumCircuit(1, 1)
196
196
  qc.h(0)
197
197
  qc.measure(0, 0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qiskit
3
- Version: 1.2.3
3
+ Version: 1.2.4
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=dfKOEQOPs4e4CEZ-F1mkLcmqaZRpfotn6cGyLo9GbmE,7
1
+ qiskit/VERSION.txt,sha256=HUnL-8Nk6skCC__rp3brxQxMQOPdWGus7JenhvYax-Q,7
2
2
  qiskit/__init__.py,sha256=bxCfTQyH6qfT6E-R4FTfP2ovP3F3qz0fVid6TeRHT5A,5540
3
- qiskit/_accelerate.pyd,sha256=YYVcV9OsEyutnsQh5Z5VuJQUZog70NuDONws0rRDPVc,4727296
3
+ qiskit/_accelerate.pyd,sha256=OWWh-J2-mJWcJQHGBYsWe_slKinQ2cj5oU2g7qawHOo,4727296
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
@@ -70,7 +70,7 @@ qiskit/circuit/controlflow/if_else.py,sha256=UGqubEFNfQSls_NPDIbJtvborv0ESlX9Xb4
70
70
  qiskit/circuit/controlflow/switch_case.py,sha256=zCkhdTMqd6mvW0KIsBkV19Fr84myEj_mf3J28tp_2TI,18171
71
71
  qiskit/circuit/controlflow/while_loop.py,sha256=bMZPF-jJUCySKdZhHEN_L-DUsoXVGAk_YxPdkvCVuZQ,6042
72
72
  qiskit/circuit/library/__init__.py,sha256=bE4V8ki20mP0r79Obv4WRi867as7SYrK0_tjfZm-t8M,14083
73
- qiskit/circuit/library/blueprintcircuit.py,sha256=rP93Jd9PCLrfTRzK17owzAEoFByq-Xj3JWBPEmRXrQs,7277
73
+ qiskit/circuit/library/blueprintcircuit.py,sha256=V5BwicE0HKj4XFxA8pbFPIS60MeJB5xFUfcHnRIs5HY,10218
74
74
  qiskit/circuit/library/fourier_checking.py,sha256=QJnCgCuoIBcL_FK_-8atCSeuoUUQ3zdLJ3Zpl2fE1cA,3640
75
75
  qiskit/circuit/library/graph_state.py,sha256=G4DlmTpw6pnP6cUiMazjgmhrowCbqRRQ3KTJmKoYX5w,3239
76
76
  qiskit/circuit/library/grover_operator.py,sha256=7TFCNe7IyBFJ5yogbQSuPKxDuMp93W6-f9-SNM8z5A0,17007
@@ -112,10 +112,10 @@ qiskit/circuit/library/boolean_logic/quantum_or.py,sha256=TPuBnFFTq73iirb4NG10O9
112
112
  qiskit/circuit/library/boolean_logic/quantum_xor.py,sha256=EfSMyh-6bRWdPybhllHu3DTGDPkqdvoBbn9ta023xnI,2382
113
113
  qiskit/circuit/library/data_preparation/__init__.py,sha256=J8HS50haQ7cpRYQynFqyQ4fXZXagkmd6Nd2BXcQTxmI,2390
114
114
  qiskit/circuit/library/data_preparation/initializer.py,sha256=tUThlYQJfWobXv6eTIcuPaQETRZ5CKbPIDTKFYHrFS8,4560
115
- qiskit/circuit/library/data_preparation/pauli_feature_map.py,sha256=no7p1BZQO57kdjkZK42j-Rv1yg4yYlFKjPRBliLDGbA,12901
115
+ qiskit/circuit/library/data_preparation/pauli_feature_map.py,sha256=NFoJ-ac8i9dztZI1ovNNbI1iPiBqxKr5yhLtiM9agmA,13019
116
116
  qiskit/circuit/library/data_preparation/state_preparation.py,sha256=cw272QeVmgGFvtHo0sAJDVxmLeVMD-tXJewRB6bHGj8,14486
117
- qiskit/circuit/library/data_preparation/z_feature_map.py,sha256=Fgf0b9JcIJOjswC8Ov0ozDH3fd25-iMu_HiuQjhUxSM,6451
118
- qiskit/circuit/library/data_preparation/zz_feature_map.py,sha256=vVXgWdrdowqK_-Y0Dbf00dLiniIP0hgcs0whvTWHkQk,6523
117
+ qiskit/circuit/library/data_preparation/z_feature_map.py,sha256=wb8BvTg8Dk5ovG-fR3f5l64i3S0H_AR_k-WHkKwbolU,6524
118
+ qiskit/circuit/library/data_preparation/zz_feature_map.py,sha256=5stqRyW9-m3Hm97W97PqC0O57e-gAjqQHgTftcJZrtk,6689
119
119
  qiskit/circuit/library/generalized_gates/__init__.py,sha256=iFsOivQreWwDpJgpfl0elN63cffOMPbpjW877ceMmlI,1114
120
120
  qiskit/circuit/library/generalized_gates/diagonal.py,sha256=7-56Gy3isdZ0FGN-FtXe2gxVPBKXjXO5AFN_DWrGCOA,6124
121
121
  qiskit/circuit/library/generalized_gates/gms.py,sha256=EIFaoscxVlcp1erQMDP-ynBYWK3QM7XtZ8bZ0wFqkDI,4407
@@ -428,11 +428,11 @@ qiskit/qobj/utils.py,sha256=lcn2b4gvt5j6xw_Gb0LEwzROzFJA9nka2n0O5DWhiUY,1355
428
428
  qiskit/qobj/converters/__init__.py,sha256=eouPijW91tEX8ptE86TbAOYw53VWNC8lqZpxe4O8LKY,709
429
429
  qiskit/qobj/converters/lo_config.py,sha256=Au6xQJpTzsnzWrQfcG0AeQQhfjGmOoFbnjK6QEqeoRU,7089
430
430
  qiskit/qobj/converters/pulse_instruction.py,sha256=_oQYd3VrfJxmeT2buDmHQK_M8mkfvXjfegK32c3Y6W0,31362
431
- qiskit/qpy/__init__.py,sha256=4gtPAU--xrpG4zp36CwdHVYVdM_-nXY1giJU8M021fM,59720
432
- qiskit/qpy/common.py,sha256=zZksatVxnfiH7OsTknVmIfkimhFe1gjt9kH03OEgPew,12609
431
+ qiskit/qpy/__init__.py,sha256=SE2RuvFv44w_m-MrZbfLY63bLolviAku8QuwSjrIijI,59724
432
+ qiskit/qpy/common.py,sha256=vzNzaAyfl4oJcLeDSyWtlDmjPPa8dt9PT2ZKqTubk6A,12607
433
433
  qiskit/qpy/exceptions.py,sha256=BX1ILW35oUPDmotmttybw2bY1IvUwziOVpsf7z_mIkY,1900
434
434
  qiskit/qpy/formats.py,sha256=kxItULKeSVP70rjUjzERSmA1bq19mMJijOwRVOdJEq8,11663
435
- qiskit/qpy/interface.py,sha256=VBLaCd_dRFkOC-KiWHs8rICP5ob1kC_jbyHcyrk2nX4,13372
435
+ qiskit/qpy/interface.py,sha256=7QDrw-sun03jt7kfkPkFiaZTQh8pM2IqpifIBRggL78,13372
436
436
  qiskit/qpy/type_keys.py,sha256=gRuzYEeXhrSHUE6uNXe3oTCP8g5Q1I_DfB1wiY0ARhM,16333
437
437
  qiskit/qpy/binary_io/__init__.py,sha256=kBTRGy5cJdiDk-X1CSjSEpgLV-i_xT0IqcmI1a_AhOY,1109
438
438
  qiskit/qpy/binary_io/circuits.py,sha256=mDngUS8eIr_Ona4ABzAoaO9aQzkLDoXb4sorns_GXvo,58575
@@ -772,7 +772,7 @@ qiskit/visualization/transition_visualization.py,sha256=bI4hGiznEnRU2irgooABRG9V
772
772
  qiskit/visualization/utils.py,sha256=YFjqxrfbu1_raYr-Yp3ZluL5GQFuENPB0MP1K0BJuYY,1825
773
773
  qiskit/visualization/circuit/__init__.py,sha256=JM2vmduz9DJViktOB111gy2PRiGfxfna14yEAmXFdo0,588
774
774
  qiskit/visualization/circuit/_utils.py,sha256=6wa0FzhW_o6dFyaHYmQsB09vfZBoTSV8tajJCDlfnmY,24531
775
- qiskit/visualization/circuit/circuit_visualization.py,sha256=Xnh_P-UNoVil_plWPFPwNKN40o_-8xhbe9cQQREqYJk,29773
775
+ qiskit/visualization/circuit/circuit_visualization.py,sha256=NG9VMQbxbXl_wWJIV8PmS91ndwIJ6rkp2_UvwdPV33w,29737
776
776
  qiskit/visualization/circuit/latex.py,sha256=P_FE1VrLvds9zReTX3WcYLhGINdaz6euwkpK7thzmiY,26893
777
777
  qiskit/visualization/circuit/matplotlib.py,sha256=cOwH4iNSvCQcYXMG8BI1-LanEuTATG3hmjHOtpRQs1A,81455
778
778
  qiskit/visualization/circuit/qcstyle.py,sha256=OaVptaN8ACJt5LOM7WTkhnJyX8ThnTeHjDyZ8NeI4-I,10911
@@ -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.3.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
816
- qiskit-1.2.3.dist-info/METADATA,sha256=lH2cStvwYHKxAgX72q2RHjDD2-Alo6FL0373mxCJFcE,13095
817
- qiskit-1.2.3.dist-info/WHEEL,sha256=xRIth8mHpORGBo0u7ZcMbA24uht4e0efYstShPPKdtg,95
818
- qiskit-1.2.3.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
819
- qiskit-1.2.3.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
820
- qiskit-1.2.3.dist-info/RECORD,,
815
+ qiskit-1.2.4.dist-info/LICENSE.txt,sha256=pUbmRuPr1gJTTTWZu2c8UmNSntz-pDdKfGR-86NRkok,11619
816
+ qiskit-1.2.4.dist-info/METADATA,sha256=NWrmz19GWUuLwzJMU7HSaayiqDhHU3rNpbBQrXnfJl4,13095
817
+ qiskit-1.2.4.dist-info/WHEEL,sha256=xRIth8mHpORGBo0u7ZcMbA24uht4e0efYstShPPKdtg,95
818
+ qiskit-1.2.4.dist-info/entry_points.txt,sha256=dCqiF7i6g_s6cYnXX7UUO1MM63xFFb5DCHYEYyGAeCc,3556
819
+ qiskit-1.2.4.dist-info/top_level.txt,sha256=_vjFXLv7qrHyJJOC2-JXfG54o4XQygW9GuQPxgtSt9Q,7
820
+ qiskit-1.2.4.dist-info/RECORD,,
File without changes