-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml
58 lines (52 loc) · 1.18 KB
/
config.yaml
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
# A network of four nodes connected in a line that connects Alice to Bob, Bob to Charlie and Charlie to David.
# This network configuration has no noise.
perfect_qdevice_cfg: &perfect_qdevice_cfg
num_qubits: 2
# coherence times (The value 0 disables decoherence)
T1: 0
T2: 0
# gate execution times
init_time: 0
single_qubit_gate_time: 0
two_qubit_gate_time: 0
measure_time: 0
# noise model
single_qubit_gate_depolar_prob: 0.
two_qubit_gate_depolar_prob: 0.
stacks:
- name: Alice
qdevice_typ: generic
qdevice_cfg:
<<: *perfect_qdevice_cfg
- name: Bob
qdevice_typ: generic
qdevice_cfg:
<<: *perfect_qdevice_cfg
- name: Charlie
qdevice_typ: generic
qdevice_cfg:
<<: *perfect_qdevice_cfg
- name: David
qdevice_typ: generic
qdevice_cfg:
<<: *perfect_qdevice_cfg
links:
- stack1: Alice
stack2: Bob
typ: perfect
- stack1: Bob
stack2: Charlie
typ: perfect
- stack1: Charlie
stack2: David
typ: perfect
clinks:
- stack1: Alice
stack2: Bob
typ: instant
- stack1: Bob
stack2: Charlie
typ: instant
- stack1: Charlie
stack2: David
typ: instant