-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_circuit.py
84 lines (75 loc) · 1.93 KB
/
example_circuit.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
import stim
def generate_2x2_toric_code():
circuit = stim.Circuit()
# Qubits are laid out in a 2D grid like this:
# 0---1
# | |
# 2---3
# Vertex (star) stabilizers
circuit.append_operation("MPP", [
stim.target_x(0),
stim.target_combiner(),
stim.target_x(1),
stim.target_combiner(),
stim.target_x(2),
])
circuit.append_operation("MPP", [
stim.target_x(1),
stim.target_combiner(),
stim.target_x(0),
stim.target_combiner(),
stim.target_x(3),
])
circuit.append_operation("MPP", [
stim.target_x(2),
stim.target_combiner(),
stim.target_x(0),
stim.target_combiner(),
stim.target_x(3),
])
circuit.append_operation("MPP", [
stim.target_x(3),
stim.target_combiner(),
stim.target_x(1),
stim.target_combiner(),
stim.target_x(2),
])
# Plaquette (face) stabilizers
circuit.append_operation("MPP", [
stim.target_z(0),
stim.target_combiner(),
stim.target_z(1),
stim.target_combiner(),
stim.target_z(2),
])
circuit.append_operation("MPP", [
stim.target_z(1),
stim.target_combiner(),
stim.target_z(0),
stim.target_combiner(),
stim.target_z(3),
])
circuit.append_operation("MPP", [
stim.target_z(2),
stim.target_combiner(),
stim.target_z(0),
stim.target_combiner(),
stim.target_z(3),
])
circuit.append_operation("MPP", [
stim.target_z(3),
stim.target_combiner(),
stim.target_z(1),
stim.target_combiner(),
stim.target_z(2),
])
return circuit
circuit = generate_2x2_toric_code()
print("--- Circuit ---")
print(circuit)
# Simulate the circuit
sampler = circuit.compile_sampler()
result = sampler.sample(shots=10)
# Print the result
print("--- Results ---")
print(result)