-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphase-kickback.js
50 lines (41 loc) · 1.13 KB
/
phase-kickback.js
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
const logger = require('../src/logger')()
circuit('rotate the phase on qubit 0 - nothing changes because qubit 0 is off', 1)
.u1(0, [], { lambda : 'pi / 8' })
.u1(0, [], { lambda : 'pi / 4' })
.run()
circuit('rotate the phase on qubit 0 by 22.5 degrees', 1)
.x(0)
.u1(0, [], { lambda : 'pi / 8' })
.run()
circuit('rotate the phase on qubit 0 by 45 degrees', 1)
.x(0)
.u1(0, [], { lambda : 'pi / 4' })
.run()
circuit('rotate the phase on qubit 0 by 67.5 degrees', 1)
.x(0)
.u1(0, [], { lambda : 'pi / 8' })
.u1(0, [], { lambda : 'pi / 4' })
.run()
circuit('rotate the phase on qubit 0 by 67.5 degrees - meanwhile qubits 1 and 2 are in superposition', 3)
.x(0)
.h(1)
.h(2)
.u1(0, [], { lambda : 'pi / 8' })
.u1(0, [], { lambda : 'pi / 4' })
.run()
circuit('rotate the phase on qubit 0 with phase kickback from the two control qubits in superposition (trace on)', 3)
.x(0)
.h(1)
.h(2)
.cu1(0, 1, { lambda : 'pi / 8' })
.cu1(0, 2, { lambda : 'pi / 4' })
.run('trace')
function circuit(name, size) {
return require('../src/circuit.js')({
name: name,
size: size,
logger: logger,
engine: 'optimized',
order: ['targets', 'controls']
})
}