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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
"""Structure for reference parameters
A RefPrama struct is used for passing parameters to a gate by reference,
i.e. one can change these parameters between executions of the same circuit.
To use them, simply construct a RefParam with an initial value
theta = RefParam(3.14)
and pass it to a gate expecting a float parameter in the same way a direct
value would be given
circuit.cx(theta)
To change the parameter, use the assign() method. The next execution of the
circuit will use the updated value, without constructing a new circuit.
"""
"""Create a new reference parameter with initial value value."""
=
"""Convert to float, i.e. return the value of this parameter."""
return
"""Asign a new value value to this parameter."""
=
"""Return the pointer to the parameter value."""
return
"""A quantum circuit
Struct Circuit represents a quantum circuit, holding a quantum state and the
operations to be performed on it.
"""
"""Create a new circuit.
Create a new (empty) quantum circuit, with nr_qbits quantum bits and
nr_cbits classical bits.
"""
=
=
return
= None
"""The number of quantum bits in this circuit"""
return
"""The number of classical bits in this circuit"""
return
"""Add a gate.
Append a n-ary quantum gate gate, operating on the n qubits in bits, to
this circuit.
"""
=
=
=
=
return
"""Add a conditional gate.
Append a n-ary gate gate, that will operate on the n qubits in
bits to this circuit. The gate will only be applied only when the
classical bits with indices from control form the target word target.
The bit at the position of the first index in control is interpreted
as the least significant bit to check.
"""
=
=
=
return
"""Add a controlled Hadamard gate.
Add a controlled Hadamard gate, controlled by qubit control, and
operating on qubit target, to this circuit.
"""
return
"""Add a conditional RX gate.
Add a conditional RX(θ) gate, controlled by qubit control, and operating
on qubit target, to this circuit.
"""
return
"""Add a conditional RY gate.
Add a conditional RY(θ) gate, controlled by qubit control, and operating
on qubit target, to this circuit.
"""
return
"""Add a conditional RZ gate.
Add a conditional RZ(λ) gate, controlled by qubit control, and operating
on qubit target, to this circuit.
"""
return
"""Add a CX gate.
Add a controlled X gate (controlled NOT), controlled by qubit control,
and operating on qubit target, to this circuit.
"""
return
"""Add a CY gate.
Add a controlled Y gate, controlled by qubit control, and
operating on qubit target, to this circuit.
"""
return
"""Add a CZ gate.
Add a controlled Z gate, controlled by qubit control, and
operating on qubit target, to this circuit.
"""
return
"""Add a Hadamard gate.
Add a Hadamard gate operating on qubit `qbit`, to this circuit.
"""
return
"""Add an identity gate.
Add an identity gate operating on qubit `qbit`, to this circuit. Since
this gate does nothing, you might want to consider if you really need
it.
"""
return
"""Add a RX gate.
Add an RX(θ) gate operating on qubit `bit`, to this circuit.
"""
return
"""Add a RY gate.
Add an RY(θ) gate operating on qubit `bit`, to this circuit.
"""
return
"""Add a RZ gate.
Add an RZ(λ) gate operating on qubit `bit`, to this circuit.
"""
return
"""Add a phase gate
Add an S phase gate (rotation of π/2 around the Z axis) operating on
qubit bit, to this circuit.
"""
return
"""Add an inverse phase gate
Add an S† gate, the inverse of the S gate, operating on qubit bit,
to this circuit.
"""
return
"""Add a swap gate.
Add a swap gate, swapping qubits qbit0 and qbit1.
"""
return
"""Add a T gate
Add an T phase gate (rotation of π/4 around the Z axis) operating on
qubit bit, to this circuit.
"""
return
"""Add an inverse T gate
Add an T† gate, the inverse of the T gate, operating on qubit bit,
to this circuit.
"""
return
"""Add a U1 gate.
Add a U1(λ) gate operating on qubit qbit, to this circuit. This gate is,
up to a global phase, equivalent to the RZ gate.
"""
return
"""Add a U2 gate.
Add a U2(ϕ, λ) gate operating on qubit qbit, to this circuit.
"""
return
"""Add a U3 gate.
Add a U3(θ, ϕ, λ) gate operating on qubit qbit, to this circuit.
"""
return
"""Add a V gate.
Add a V gate (square root of NOT) operating on qubit qbit, to this circuit.
"""
return
"""Add an inverse V gate.
Add an V† gate, the inverse of the V gate, operating on qubit bit,
to this circuit.
"""
return
"""Add a Pauli X gate.
Add a Pauli X gate (NOT gate) operating on qubit qbit, to this circuit.
"""
return
"""Add a Pauli Y gate.
Add a Pauli Y gate operating on qubit qbit, to this circuit.
"""
return
"""Add a Pauli Z gate.
Add a Pauli Z gate operating on qubit qbit, to this circuit.
"""
return
=
= 1
=
return
=
= 1
=
return
"""Add a measurement
Add measurement of qubit qbit in basis basis, into classical bit
cbit, to this circuit.
"""
return
"""Add a measurement.
Add measurement of qubit qbit in the Pauli X basis, into classical
bit cbit to this circuit.
"""
return
"""Add a measurement.
Add measurement of qubit qbit in the Pauli Y basis, into classical
bit cbit to this circuit.
"""
return
"""Add a measurement.
Add measurement of qubit qbit in the Pauli Z basis, into classical
bit cbit to this circuit.
"""
return
"""Add a measurement.
Add measurement of qubit qbit into classical bit cbit to this circuit.
This is an alias for measure_z().
"""
return
"""Add a measurement.
Add the measurement of all qubits in the quantum state into the classical
bits cbits. Measurement is done in basis basis.
"""
return
"""Add a measurement.
Add the measurement of all qubits in the quantum state into the classical
bits cbits. Measurement is done in the Pauli Z basis.
"""
return
"""Add a measurement.
Add the measurement of qubit qbit in the quantum state into the
classical bit cbit. Measurement is done in basis basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Add a measurement.
Add the measurement of qubit qbit in the quantum state into the
classical bit cbit. Measurement is done in the Pauli X basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Add a measurement.
Add the measurement of qubit qbit in the quantum state into the
classical bit cbit. Measurement is done in the Pauli Y basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Add a measurement.
Add the measurement of qubit qbit in the quantum state into the
classical bit cbit. Measurement is done in the Pauli Z basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Add a measurement.
Add the measurement of qubit qbit in the quantum state into the
classical bit cbit. This is an alias foor peek_z().
"""
return
"""Add a measurement.
Add the measurement of all qubits in the quantum state into the classical
bits cbits. Measurement is done in basis basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Add a measurement.
Add the measurement of all qubits in the quantum state into the classical
bits cbits. Measurement is done in the Pauli `Z` basis, without
collapsing the quantum state.
NOTE: this is not a physical process, and cannot be reproduced on a real
quantum computer.
"""
return
"""Reset a qubit
Reset the qubit qbit to |0⟩. This is done by measuring the bit, and
flipping it if the result is 1, so this is potentially an expensive
operation.
"""
=
return
"""Reset all qubits.
Reset the entire quantum state of the circuit to |00...0⟩. The classical
register is not affected.
"""
=
return
"""Execute this circuit
Execute this circuit, performing its operations and measurements.
Measurements are made over nr_shots executions of the circuit. This
function clears any previous states of the system (quantum or classical).
"""
=
return
"""Execute a circuit again.
Run this circuit again, starting with the state from the previous
execution.
"""
=
return
"""Create a histogram of measurements.
Create a histogram of the measured classical bits and return it as a
dictionary mapping measurement result to the number of times the result
was measured. The n bits in the classical register are collected in a
string key, with the last character in the key corresponding to the
first bit (at index 0) in the classical register and vice versa.
"""
=
return
"""Export to OpenQasm
Export this circuit to LaTeX using the qcircuit pacakge. On a successful
conversion, returns a string with the LaTeX code.
"""
=
return
"""Export to OpenQasm
Export this circuit to a program in OpenQasm format. On a successful
conversion, returns a string with the program text.
"""
=
return
"""Export to c-Qasm.
Export this circuit to a program in c-Qasm format. On a successful
conversion, returns a string with the program text.
"""
=
return