Skip to content

Commit

Permalink
sync remote and local update
Browse files Browse the repository at this point in the history
Merge branch 'pi_half' of github.com:qiboteam/qibocal into pi_half
  • Loading branch information
ElStabilini committed Dec 11, 2024
2 parents 05c2886 + 832d0e9 commit 478c864
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/source/protocols/rabi/rabi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The possibility to calibrate an `R_x(\pi/2)` rotation as native gate allows us t
is exactly half that of the `R_x(\pi)` amplitude (duration). This assumption presumes a perfectly linear response of the qubit to the drive pulse, which is
often not the case due to nonlinearities in the qubit's response or imperfections in the pulse shaping :cite:p:`Chen2018MetrologyOQ`.

In this case the pulse sequence is the same as before with the only difference that instad of a single `R_x(\pi)` pulse we use two concatenated `R_x(\pi/2)` pulses.
In this case the pulse sequence is the same as before with the only difference that instead of a single `R_x(\pi)` pulse we use two concatenated `R_x(\pi/2)` pulses.

Parameters
^^^^^^^^^^
Expand Down
5 changes: 1 addition & 4 deletions src/qibocal/protocols/flipping.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ def flipping_sequence(
sequence = PulseSequence()
natives = platform.natives.single_qubit[qubit]

if rx90:
sequence |= natives.RX90()
else:
sequence |= natives.R(theta=np.pi / 2)
sequence |= natives.R(theta=np.pi / 2)

for _ in range(flips):

Expand Down

0 comments on commit 478c864

Please sign in to comment.