Skip to content

Commit

Permalink
fix: parameters and add discrimate
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacfomg committed Aug 7, 2024
1 parent fc84818 commit e592a93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runcards/rb_correction_qua.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"""Custom dtype for RBCorrection routines."""


biases = np.arange(-0.2, 0.1, 0.01)
biases = np.arange(-0.02, 0.02, 0.01)
"bias points to sweep"

# Flipping
Expand Down Expand Up @@ -103,6 +103,8 @@ def average(self):
force=True,
) as e:

discrimination_output = e.single_shot_classification(nshots=5000)

rb_output_uncorrected = e.rb_ondevice(
num_of_sequences=num_of_sequences,
max_circuit_depth=max_circuit_depth,
Expand All @@ -120,6 +122,7 @@ def average(self):
delay_between_pulses_step=delay_between_pulses_step,
detuning=detuning,
)

flipping_output = e.flipping_signal(
nflips_max=nflips_max,
nflips_step=nflips_step,
Expand Down

0 comments on commit e592a93

Please sign in to comment.