-
Notifications
You must be signed in to change notification settings - Fork 0
/
qelib1.inc
157 lines (135 loc) · 2.16 KB
/
qelib1.inc
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
// 3-parameter 2-pulse single qubit gate
gate u3(theta,phi,lambda) q {
U(theta,phi,lambda) q;
}
// 2-parameter 1-pulse single qubit gate
gate u2(phi,lambda) q {
U(pi/2,phi,lambda) q;
}
// 1-parameter 0-pulse single qubit gate
gate u1(lambda) q {
U(0,0,lambda) q;
}
// controlled-NOT
gate cx c,t {
CX c,t;
}
// idle gate (identity)
gate id a {
U(0,0,0) a;
}
// --- QE Standard Gates ---
// Pauli gate: bit-flip
gate x a {
u3(pi,0,pi) a;
}
// Pauli gate: bit and phase flip
gate y a {
u3(pi,pi/2,pi/2) a;
}
// Pauli gate: phase flip
gate z a {
u1(pi) a;
}
// Clifford gate: Hadamard
gate h a {
u2(0,pi) a;
}
// Clifford gate: sqrt(Z) phase gate
gate s a {
u1(pi/2) a;
}
// Clifford gate: conjugate of sqrt(Z)
gate sdg a {
u1(-pi/2) a;
}
// C3 gate: sqrt(S) phase gate
gate t a {
u1(pi/4) a;
}
// C3 gate: conjugate of sqrt(S)
gate tdg a {
u1(-pi/4) a;
}
// --- Standard rotations ---
// Rotation around X-axis
gate rx(theta) a {
u3(theta,-pi/2,pi/2) a;
}
// rotation around Y-axis
gate ry(theta) a {
u3(theta,0,0) a;
}
// rotation around Z axis
gate rz(phi) a {
u1(phi) a;
}
// --- QE Standard User-Defined Gates ---
// controlled-Phase
gate cz a,b {
h b;
cx a,b;
h b;
}
// controlled-Y
gate cy a,b {
sdg b;
cx a,b;
s b;
}
// controlled-H
gate ch a,b {
h b;
sdg b;
cx a,b;
h b;
t b;
cx a,b;
t b;
h b;
s b;
x b;
s a;
}
// C3 gate: Toffoli
gate ccx a,b,c {
h c;
cx b,c;
tdg c;
cx a,c;
t c;
cx b,c;
tdg c;
cx a,c;
t b;
t c;
h c;
cx a,b;
t a;
tdg b;
cx a,b;
}
// controlled rz rotation
gate crz(lambda) a,b {
u1(lambda/2) b;
cx a,b;
u1(-lambda/2) b;
cx a,b;
}
// controlled phase rotation
gate cu1(lambda) a,b {
u1(lambda/2) a;
cx a,b;
u1(-lambda/2) b;
cx a,b;
u1(lambda/2) b;
}
// controlled-U
gate cu3(theta,phi,lambda) c, t {
// implements controlled-U(theta,phi,lambda) with target t and control c
u1((lambda-phi)/2) t;
cx c,t;
u3(-theta/2,0,-(phi+lambda)/2) t;
cx c,t;
u3(theta/2,phi,0) t;
}