Skip to content

Commit

Permalink
update calibration/fine_amplitude.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Naohnakazawa committed Dec 11, 2024
1 parent 7d874c4 commit 9f15b35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions qiskit_experiments/library/calibration/fine_amplitude.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ class FineXAmplitudeCal(FineAmplitudeCal):
auto_update=True,
)
exp_cal.analysis.set_options(fixed_parameters={"angle_per_gate" : np.pi, "phase_offset" : np.pi / 2})
exp_cal.analysis.set_options(fixed_parameters={"angle_per_gate" : np.pi,
"phase_offset" : np.pi / 2})
exp_data = exp_cal.run().block_for_results()
display(exp_data.figure(0))
Expand Down Expand Up @@ -301,7 +302,8 @@ class FineSXAmplitudeCal(FineAmplitudeCal):
auto_update=True,
)
exp_cal.analysis.set_options(fixed_parameters={"angle_per_gate" : np.pi / 2, "phase_offset" : np.pi})
exp_cal.analysis.set_options(fixed_parameters={"angle_per_gate" : np.pi / 2,
"phase_offset" : np.pi})
cal_data = exp_cal.run().block_for_results()
display(cal_data.figure(0))
Expand Down

0 comments on commit 9f15b35

Please sign in to comment.