From e592a933287f965e23a75125105c158d31a2dea3 Mon Sep 17 00:00:00 2001 From: Jacfomg Date: Wed, 7 Aug 2024 12:13:39 +0400 Subject: [PATCH] fix: parameters and add discrimate --- runcards/rb_correction_qua.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runcards/rb_correction_qua.py b/runcards/rb_correction_qua.py index 566bb8c93..222969b67 100644 --- a/runcards/rb_correction_qua.py +++ b/runcards/rb_correction_qua.py @@ -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 @@ -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, @@ -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,