-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
xx_minus_yy.py
235 lines (198 loc) · 7.94 KB
/
xx_minus_yy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# This code is part of Qiskit.
#
# (C) Copyright IBM 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""Two-qubit XX-YY gate."""
from __future__ import annotations
import math
from cmath import exp
from math import pi
from typing import Optional
import numpy as np
from qiskit.circuit.gate import Gate
from qiskit.circuit.library.standard_gates.ry import RYGate
from qiskit.circuit.library.standard_gates.rz import RZGate
from qiskit.circuit.library.standard_gates.s import SdgGate, SGate
from qiskit.circuit.library.standard_gates.sx import SXdgGate, SXGate
from qiskit.circuit.library.standard_gates.x import CXGate
from qiskit.circuit.parameterexpression import ParameterValueType, ParameterExpression
from qiskit.circuit.quantumcircuit import QuantumCircuit
from qiskit.circuit.quantumregister import QuantumRegister
from qiskit._accelerate.circuit import StandardGate
class XXMinusYYGate(Gate):
r"""XX-YY interaction gate.
A 2-qubit parameterized XX-YY interaction. Its action is to induce
a coherent rotation by some angle between :math:`|00\rangle` and :math:`|11\rangle`.
**Circuit Symbol:**
.. parsed-literal::
┌───────────────┐
q_0: ┤0 ├
│ (XX-YY)(θ,β) │
q_1: ┤1 ├
└───────────────┘
**Matrix Representation:**
.. math::
\newcommand{\rotationangle}{\frac{\theta}{2}}
R_{XX-YY}(\theta, \beta) q_0, q_1 =
RZ_1(\beta) \cdot \exp\left(-i \frac{\theta}{2} \frac{XX-YY}{2}\right) \cdot RZ_1(-\beta) =
\begin{pmatrix}
\cos\left(\rotationangle\right) & 0 & 0 & -i\sin\left(\rotationangle\right)e^{-i\beta} \\
0 & 1 & 0 & 0 \\
0 & 0 & 1 & 0 \\
-i\sin\left(\rotationangle\right)e^{i\beta} & 0 & 0 & \cos\left(\rotationangle\right)
\end{pmatrix}
.. note::
In Qiskit's convention, higher qubit indices are more significant
(little endian convention). In the above example we apply the gate
on (q_0, q_1) which results in adding the (optional) phase defined
by :math:`\beta` on q_1. Instead, if we apply it on (q_1, q_0), the
phase is added on q_0. If :math:`\beta` is set to its default value
of :math:`0`, the gate is equivalent in big and little endian.
.. parsed-literal::
┌───────────────┐
q_0: ┤1 ├
│ (XX-YY)(θ,β) │
q_1: ┤0 ├
└───────────────┘
.. math::
\newcommand{\rotationangle}{\frac{\theta}{2}}
R_{XX-YY}(\theta, \beta) q_1, q_0 =
RZ_0(\beta) \cdot \exp\left(-i \frac{\theta}{2} \frac{XX-YY}{2}\right) \cdot RZ_0(-\beta) =
\begin{pmatrix}
\cos\left(\rotationangle\right) & 0 & 0 & -i\sin\left(\rotationangle\right)e^{i\beta} \\
0 & 1 & 0 & 0 \\
0 & 0 & 1 & 0 \\
-i\sin\left(\rotationangle\right)e^{-i\beta} & 0 & 0 & \cos\left(\rotationangle\right)
\end{pmatrix}
"""
_standard_gate = StandardGate.XXMinusYYGate
def __init__(
self,
theta: ParameterValueType,
beta: ParameterValueType = 0,
label: Optional[str] = "(XX-YY)",
*,
duration=None,
unit="dt",
):
"""Create new XX-YY gate.
Args:
theta: The rotation angle.
beta: The phase angle.
label: The label of the gate.
"""
super().__init__("xx_minus_yy", 2, [theta, beta], label=label, duration=duration, unit=unit)
def _define(self):
"""
gate xx_minus_yy(theta, beta) a, b {
rz(-beta) b;
rz(-pi/2) a;
sx a;
rz(pi/2) a;
s b;
cx a, b;
ry(theta/2) a;
ry(-theta/2) b;
cx a, b;
sdg b;
rz(-pi/2) a;
sxdg a;
rz(pi/2) a;
rz(beta) b;
}
"""
theta, beta = self.params
register = QuantumRegister(2, "q")
circuit = QuantumCircuit(register, name=self.name)
a, b = register
rules = [
(RZGate(-beta), [b], []),
(RZGate(-pi / 2), [a], []),
(SXGate(), [a], []),
(RZGate(pi / 2), [a], []),
(SGate(), [b], []),
(CXGate(), [a, b], []),
(RYGate(theta / 2), [a], []),
(RYGate(-theta / 2), [b], []),
(CXGate(), [a, b], []),
(SdgGate(), [b], []),
(RZGate(-pi / 2), [a], []),
(SXdgGate(), [a], []),
(RZGate(pi / 2), [a], []),
(RZGate(beta), [b], []),
]
for instr, qargs, cargs in rules:
circuit._append(instr, qargs, cargs)
self.definition = circuit
def control(
self,
num_ctrl_qubits: int = 1,
label: str | None = None,
ctrl_state: str | int | None = None,
annotated: bool | None = None,
):
"""Return a (multi-)controlled-(XX-YY) gate.
Args:
num_ctrl_qubits: number of control qubits.
label: An optional label for the gate [Default: ``None``]
ctrl_state: control state expressed as integer,
string (e.g.``'110'``), or ``None``. If ``None``, use all 1s.
annotated: indicates whether the controlled gate should be implemented
as an annotated gate. If ``None``, this is set to ``True`` if
the gate contains free parameters, in which case it cannot
yet be synthesized.
Returns:
ControlledGate: controlled version of this gate.
"""
if annotated is None:
annotated = any(isinstance(p, ParameterExpression) for p in self.params)
gate = super().control(
num_ctrl_qubits=num_ctrl_qubits,
label=label,
ctrl_state=ctrl_state,
annotated=annotated,
)
return gate
def inverse(self, annotated: bool = False):
"""Inverse gate.
Args:
annotated: when set to ``True``, this is typically used to return an
:class:`.AnnotatedOperation` with an inverse modifier set instead of a concrete
:class:`.Gate`. However, for this class this argument is ignored as the inverse
of this gate is always a :class:`.XXMinusYYGate` with inverse
parameter values.
Returns:
XXMinusYYGate: inverse gate.
"""
theta, beta = self.params
return XXMinusYYGate(-theta, beta)
def __array__(self, dtype=None, copy=None):
"""Gate matrix."""
if copy is False:
raise ValueError("unable to avoid copy while creating an array as requested")
theta, beta = self.params
cos = math.cos(theta / 2)
sin = math.sin(theta / 2)
return np.array(
[
[cos, 0, 0, -1j * sin * exp(-1j * beta)],
[0, 1, 0, 0],
[0, 0, 1, 0],
[-1j * sin * exp(1j * beta), 0, 0, cos],
],
dtype=dtype,
)
def power(self, exponent: float, annotated: bool = False):
theta, beta = self.params
return XXMinusYYGate(exponent * theta, beta)
def __eq__(self, other):
if isinstance(other, XXMinusYYGate):
return self._compare_parameters(other)
return False