18
18
not (cudaq .num_available_gpus () > 0 and cudaq .has_target ('nvidia' )),
19
19
reason = 'Could not find nvidia in installation' )
20
20
21
+
22
+ @pytest .fixture (autouse = True )
23
+ def do_something ():
24
+ cudaq .reset_target ()
25
+ yield
26
+ cudaq .reset_target ()
27
+ cudaq .__clearKernelRegistries ()
28
+
29
+
21
30
# synthesis
22
31
23
32
24
33
def test_kernel_synthesis_complex ():
25
- cudaq .reset_target ()
26
34
27
35
c = np .array ([1. / np .sqrt (2. ) + 0j , 1. / np .sqrt (2. ), 0. , 0. ],
28
36
dtype = cudaq .complex ())
@@ -50,7 +58,6 @@ def kernel(vec: cudaq.State):
50
58
@skipIfNvidiaFP64NotInstalled
51
59
def test_kernel_float_params_f64 ():
52
60
53
- cudaq .reset_target ()
54
61
cudaq .set_target ('nvidia' , option = 'fp64' )
55
62
56
63
f = np .array ([1. / np .sqrt (2. ), 0. , 0. , 1. / np .sqrt (2. )], dtype = float )
@@ -61,10 +68,9 @@ def test_kernel_float_params_f64():
61
68
e )
62
69
63
70
64
- @skipIfNvidiaFP64NotInstalled
71
+ @skipIfNvidiaNotInstalled
65
72
def test_kernel_float_params_f32 ():
66
73
67
- cudaq .reset_target ()
68
74
cudaq .set_target ('nvidia' )
69
75
70
76
f = np .array ([1. / np .sqrt (2. ), 0. , 0. , 1. / np .sqrt (2. )], dtype = np .float32 )
@@ -80,7 +86,7 @@ def test_kernel_float_params_f32():
80
86
81
87
@skipIfNvidiaFP64NotInstalled
82
88
def test_kernel_complex_params_f64 ():
83
- cudaq . reset_target ()
89
+
84
90
cudaq .set_target ('nvidia' , option = 'fp64' )
85
91
86
92
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -99,7 +105,7 @@ def kernel(vec: cudaq.State):
99
105
100
106
@skipIfNvidiaFP64NotInstalled
101
107
def test_kernel_complex128_params_f64 ():
102
- cudaq . reset_target ()
108
+
103
109
cudaq .set_target ('nvidia' , option = 'fp64' )
104
110
105
111
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -118,7 +124,7 @@ def kernel(vec: cudaq.State):
118
124
119
125
@skipIfNvidiaFP64NotInstalled
120
126
def test_kernel_complex64_params_f64 ():
121
- cudaq . reset_target ()
127
+
122
128
cudaq .set_target ('nvidia' , option = 'fp64' )
123
129
124
130
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -131,7 +137,7 @@ def test_kernel_complex64_params_f64():
131
137
132
138
@skipIfNvidiaNotInstalled
133
139
def test_kernel_complex64_params_f32 ():
134
- cudaq . reset_target ()
140
+
135
141
cudaq .set_target ('nvidia' )
136
142
137
143
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -150,7 +156,7 @@ def kernel(vec: cudaq.State):
150
156
151
157
@skipIfNvidiaNotInstalled
152
158
def test_kernel_complex128_params_f32 ():
153
- cudaq . reset_target ()
159
+
154
160
cudaq .set_target ('nvidia' )
155
161
156
162
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -163,7 +169,7 @@ def test_kernel_complex128_params_f32():
163
169
164
170
@skipIfNvidiaNotInstalled
165
171
def test_kernel_complex_params_f32 ():
166
- cudaq . reset_target ()
172
+
167
173
cudaq .set_target ('nvidia' )
168
174
169
175
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -176,7 +182,7 @@ def test_kernel_complex_params_f32():
176
182
177
183
@skipIfNvidiaFP64NotInstalled
178
184
def test_kernel_complex_capture_f64 ():
179
- cudaq . reset_target ()
185
+
180
186
cudaq .set_target ('nvidia' , option = 'fp64' )
181
187
182
188
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -187,7 +193,6 @@ def test_kernel_complex_capture_f64():
187
193
def kernel ():
188
194
q = cudaq .qvector (state )
189
195
190
- # kernel.compile()
191
196
counts = cudaq .sample (kernel )
192
197
print (counts )
193
198
assert '11' in counts
@@ -196,7 +201,7 @@ def kernel():
196
201
197
202
@skipIfNvidiaFP64NotInstalled
198
203
def test_kernel_complex128_capture_f64 ():
199
- cudaq . reset_target ()
204
+
200
205
cudaq .set_target ('nvidia' , option = 'fp64' )
201
206
202
207
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -215,7 +220,7 @@ def kernel():
215
220
216
221
@skipIfNvidiaFP64NotInstalled
217
222
def test_kernel_complex128_capture_f64 ():
218
- cudaq . reset_target ()
223
+
219
224
cudaq .set_target ('nvidia' , option = 'fp64' )
220
225
221
226
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -228,27 +233,26 @@ def test_kernel_complex128_capture_f64():
228
233
229
234
@skipIfNvidiaNotInstalled
230
235
def test_kernel_complex64_capture_f32 ():
231
- cudaq . reset_target ()
236
+
232
237
cudaq .set_target ('nvidia' )
233
238
234
239
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
235
240
dtype = np .complex64 )
236
241
state = cudaq .State .from_data (c )
237
242
238
243
@cudaq .kernel
239
- def kernel ():
244
+ def kernel_foo ():
240
245
q = cudaq .qvector (state )
241
246
242
- # kernel.compile()
243
- counts = cudaq .sample (kernel )
247
+ counts = cudaq .sample (kernel_foo )
244
248
print (counts )
245
249
assert '11' in counts
246
250
assert '00' in counts
247
251
248
252
249
253
@skipIfNvidiaNotInstalled
250
254
def test_kernel_complex128_capture_f32 ():
251
- cudaq . reset_target ()
255
+
252
256
cudaq .set_target ('nvidia' )
253
257
254
258
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -261,7 +265,7 @@ def test_kernel_complex128_capture_f32():
261
265
262
266
@skipIfNvidiaNotInstalled
263
267
def test_kernel_complex_capture_f32 ():
264
- cudaq . reset_target ()
268
+
265
269
cudaq .set_target ('nvidia' )
266
270
267
271
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
@@ -277,77 +281,75 @@ def test_kernel_complex_capture_f32():
277
281
278
282
@skipIfNvidiaFP64NotInstalled
279
283
def test_kernel_simulation_dtype_complex_params_f64 ():
280
- cudaq . reset_target ()
284
+
281
285
cudaq .set_target ('nvidia' , option = 'fp64' )
282
286
283
287
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
284
288
dtype = cudaq .complex ())
285
289
state = cudaq .State .from_data (c )
286
290
287
291
@cudaq .kernel
288
- def kernel (vec : cudaq .State ):
292
+ def kernel_bar (vec : cudaq .State ):
289
293
q = cudaq .qvector (vec )
290
294
291
- counts = cudaq .sample (kernel , state )
295
+ counts = cudaq .sample (kernel_bar , state )
292
296
print (counts )
293
297
assert '11' in counts
294
298
assert '00' in counts
295
299
296
300
297
301
@skipIfNvidiaNotInstalled
298
302
def test_kernel_simulation_dtype_complex_params_f32 ():
299
- cudaq . reset_target ()
303
+
300
304
cudaq .set_target ('nvidia' )
301
305
302
306
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
303
307
dtype = cudaq .complex ())
304
308
state = cudaq .State .from_data (c )
305
309
306
310
@cudaq .kernel
307
- def kernel (vec : cudaq .State ):
311
+ def kernel_baz (vec : cudaq .State ):
308
312
q = cudaq .qvector (vec )
309
313
310
- counts = cudaq .sample (kernel , state )
314
+ counts = cudaq .sample (kernel_baz , state )
311
315
print (counts )
312
316
assert '11' in counts
313
317
assert '00' in counts
314
318
315
319
316
320
@skipIfNvidiaFP64NotInstalled
317
321
def test_kernel_simulation_dtype_capture_f64 ():
318
- cudaq . reset_target ()
322
+
319
323
cudaq .set_target ('nvidia' , option = 'fp64' )
320
324
321
325
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
322
326
dtype = cudaq .complex ())
323
327
state = cudaq .State .from_data (c )
324
328
325
329
@cudaq .kernel
326
- def kernel ():
330
+ def kernel_qux ():
327
331
q = cudaq .qvector (state )
328
332
329
- # kernel.compile()
330
- counts = cudaq .sample (kernel )
333
+ counts = cudaq .sample (kernel_qux )
331
334
print (counts )
332
335
assert '11' in counts
333
336
assert '00' in counts
334
337
335
338
336
339
@skipIfNvidiaNotInstalled
337
340
def test_kernel_simulation_dtype_capture_f32 ():
338
- cudaq . reset_target ()
341
+
339
342
cudaq .set_target ('nvidia' )
340
343
341
344
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
342
345
dtype = cudaq .complex ())
343
346
state = cudaq .State .from_data (c )
344
347
345
348
@cudaq .kernel
346
- def kernel ():
349
+ def kernel_corge ():
347
350
q = cudaq .qvector (state )
348
351
349
- # kernel.compile()
350
- counts = cudaq .sample (kernel )
352
+ counts = cudaq .sample (kernel_corge )
351
353
print (counts )
352
354
assert '11' in counts
353
355
assert '00' in counts
@@ -358,7 +360,7 @@ def kernel():
358
360
359
361
@skipIfNvidiaFP64NotInstalled
360
362
def test_init_from_other_kernel_state_f64 ():
361
- cudaq . reset_target ()
363
+
362
364
cudaq .set_target ('nvidia' , option = 'fp64' )
363
365
364
366
@cudaq .kernel
@@ -371,13 +373,13 @@ def bell():
371
373
state .dump ()
372
374
373
375
@cudaq .kernel
374
- def kernel (initialState : cudaq .State ):
376
+ def kernel_waldo (initialState : cudaq .State ):
375
377
qubits = cudaq .qvector (initialState )
376
378
377
- state2 = cudaq .get_state (kernel , state )
379
+ state2 = cudaq .get_state (kernel_waldo , state )
378
380
state2 .dump ()
379
381
380
- counts = cudaq .sample (kernel , state )
382
+ counts = cudaq .sample (kernel_waldo , state )
381
383
print (counts )
382
384
assert '11' in counts
383
385
assert '00' in counts
@@ -387,7 +389,7 @@ def kernel(initialState: cudaq.State):
387
389
388
390
@skipIfNvidiaFP64NotInstalled
389
391
def test_init_from_other_kernel_state_f32 ():
390
- cudaq . reset_target ()
392
+
391
393
cudaq .set_target ('nvidia' )
392
394
393
395
@cudaq .kernel
@@ -400,13 +402,13 @@ def bell():
400
402
state .dump ()
401
403
402
404
@cudaq .kernel
403
- def kernel (initialState : cudaq .State ):
405
+ def kernel_thud (initialState : cudaq .State ):
404
406
qubits = cudaq .qvector (initialState )
405
407
406
- state2 = cudaq .get_state (kernel , state )
408
+ state2 = cudaq .get_state (kernel_thud , state )
407
409
state2 .dump ()
408
410
409
- counts = cudaq .sample (kernel , state )
411
+ counts = cudaq .sample (kernel_thud , state )
410
412
print (counts )
411
413
assert '11' in counts
412
414
assert '00' in counts
@@ -434,7 +436,6 @@ def kernel2():
434
436
435
437
kernel2 ()
436
438
437
- # kernel0.compile()
438
439
counts = cudaq .sample (kernel0 )
439
440
print (counts )
440
441
assert '1111' in counts
@@ -444,7 +445,6 @@ def kernel2():
444
445
445
446
446
447
def test_invalid_arg_error_msg ():
447
- cudaq .reset_target ()
448
448
449
449
c = np .array ([1. / np .sqrt (2. ) + 0j , 0. , 0. , 1. / np .sqrt (2. )],
450
450
dtype = complex )
0 commit comments