forked from NVIDIA/cuda-quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast_conditionals.py
254 lines (187 loc) · 6.8 KB
/
ast_conditionals.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
# ============================================================================ #
# Copyright (c) 2022 - 2025 NVIDIA Corporation & Affiliates. #
# All rights reserved. #
# #
# This source code and the accompanying materials are made available under #
# the terms of the Apache License 2.0 which accompanies this distribution. #
# ============================================================================ #
# RUN: PYTHONPATH=../../ pytest -rP %s | FileCheck %s
import os
import pytest
import cudaq
# Check that the `qubitMeasurementFeedback` metadata is properly set.
def test_conditional_on_vars():
@cudaq.kernel
def test1():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bit = mz(ancilla[0])
if bit:
x(data[0])
mz(data)
print(test1)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test1() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test2():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bit = mz(ancilla[0])
if bit == False:
x(data[0])
mz(data)
print(test2)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test2() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test3():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bits = mz(ancilla)
if bits[0]:
x(data[0])
mz(data)
print(test3)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test3() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test4():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bits = mz(ancilla)
if bits[0] != True:
x(data[0])
mz(data)
print(test4)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test4() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test5():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bits = mz(ancilla)
if not bits[0]:
x(data[0])
mz(data)
print(test5)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test5() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test6():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
bits = mz(ancilla)
if bits[0] and bits[1]:
x(data[0])
mz(data)
print(test6)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test6() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
def test_conditional_on_measure():
@cudaq.kernel
def test7():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
if mz(ancilla[0]):
x(data[0])
mz(data)
print(test7)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test7() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test8():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
if mz(ancilla[0]) == False:
x(data[0])
mz(data)
print(test8)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test8() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test9():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
if not mz(ancilla[0]):
x(data[0])
mz(data)
print(test9)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test9() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test10():
data = cudaq.qvector(2)
ancilla = cudaq.qvector(2)
if mz(ancilla[0]) or mz(ancilla[1]):
x(data[0])
mz(data)
print(test10)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test10() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test11():
data = cudaq.qubit()
res = mz(data)
flag = res
if flag:
h(data)
print(test11)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test11() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test12():
data = cudaq.qubit()
res = mz(data)
flag1 = res
flag2 = flag1
if flag2 == False:
x(data)
print(test12)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test12() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test13():
qubits = cudaq.qvector(2)
h(qubits)
m0 = mz(qubits[0])
m1 = mz(qubits[1])
if m0 or m1:
x.ctrl(qubits[0], qubits[1])
res = mz(qubits[0])
print(test13)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test13() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test14():
qubits = cudaq.qvector(2)
h(qubits)
m0 = mz(qubits[0])
m1 = mz(qubits[1])
if m0 == True:
if m1:
x.ctrl(qubits[0], qubits[1])
res = mz(qubits[0])
print(test14)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test14() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test15():
qubits = cudaq.qvector(2)
h(qubits)
foo = mx(qubits[0])
bar = foo
if not bar:
reset(qubits[0])
print(test15)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test15() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test16():
qubits = cudaq.qvector(2)
x(qubits)
foo = mx(qubits[0])
bar = my(qubits[1])
qux = foo or bar
if qux:
h(qubits[0])
print(test16)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test16() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
@cudaq.kernel
def test17():
qubits = cudaq.qvector(2)
x(qubits)
foo = mx(qubits[0])
bar = my(qubits[1])
if not foo and bar:
h(qubits[0])
print(test17)
# CHECK-LABEL: func.func @__nvqpp__mlirgen__test17() attributes {"cudaq-entrypoint", "cudaq-kernel", qubitMeasurementFeedback = true} {
# leave for gdb debugging
if __name__ == "__main__":
loc = os.path.abspath(__file__)
pytest.main([loc, "-rP"])