Skip to content

Commit

Permalink
fix minus sign for QM
Browse files Browse the repository at this point in the history
  • Loading branch information
ElStabilini committed Feb 14, 2025
1 parent 580fcd6 commit bd769d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/qibocal/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ def kernel(kernel: np.ndarray, platform: Platform, qubit: QubitId):

def feedback(feedback: list[float], platform: Platform, qubit: QubitId):
"""Update flux pulse feedback filter parameter in platform for specific qubit."""
feedback[1] = -feedback[1]
platform.update(
{f"configs.{platform.qubits[qubit].flux}.filter.feedback": feedback}
)
Expand Down

0 comments on commit bd769d9

Please sign in to comment.