Skip to content

Commit

Permalink
fix: names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacfomg committed May 21, 2024
1 parent adf223b commit 83d6fcf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions src/qibolab/dummy/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -685,20 +685,20 @@
},
"two_qubit":{
"0-2": {
"twoq_fidelity": 0.0,
"CZ_fidelity": 0.0
"gate_fidelity": 0.0,
"cZ_fidelity": 0.0
},
"1-2": {
"twoq_fidelity": 0.0,
"CZ_fidelity": 0.0
"gate_fidelity": 0.0,
"cZ_fidelity": 0.0
},
"3-2": {
"twoq_fidelity": 0.0,
"CZ_fidelity": 0.0
"gate_fidelity": 0.0,
"cZ_fidelity": 0.0
},
"4-2": {
"twoq_fidelity": 0.0,
"CZ_fidelity": 0.0
"gate_fidelity": 0.0,
"cZ_fidelity": 0.0
}
},
"coupler": {
Expand Down
4 changes: 2 additions & 2 deletions src/qibolab/qubits.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ class QubitPair:
Acts as target on two-qubit gates.
"""

twoq_gate_fidelity: float = 0.0
gate_fidelity: float = 0.0
"""Gate fidelity from standard 2q RB."""

Cz_gate_fidelity: float = 0.0
cz_fidelity: float = 0.0
"""Gate fidelity from CZ interleaved RB."""

coupler: Optional[Coupler] = None
Expand Down

0 comments on commit 83d6fcf

Please sign in to comment.