From 5b33a3379cfc47b56ce01e526df58a4694f72934 Mon Sep 17 00:00:00 2001 From: Jacfomg Date: Mon, 13 Nov 2023 15:19:03 +0400 Subject: [PATCH] add commented lines for saving exps --- src/qibolab/instruments/zhinst.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qibolab/instruments/zhinst.py b/src/qibolab/instruments/zhinst.py index 987598878..6e2757a21 100644 --- a/src/qibolab/instruments/zhinst.py +++ b/src/qibolab/instruments/zhinst.py @@ -504,9 +504,9 @@ def register_couplerflux_line(self, coupler): def run_exp(self): """Compilation settings, compilation step, execution step and data retrival""" - self.experiment.save("saved_exp") - + # self.experiment.save("saved_exp") self.exp = self.session.compile(self.experiment, compiler_settings=COMPILER_SETTINGS) + # self.exp.save_compiled_experiment("saved_exp") self.results = self.session.run(self.exp) @staticmethod @@ -1138,7 +1138,7 @@ def sweep(self, qubits, couplers, sequence: PulseSequence, options, *sweepers): self.offsets_off() # html containing the pulse sequence schedule - lo.show_pulse_sheet("pulses", self.exp) + # lo.show_pulse_sheet("pulses", self.exp) return results def sweep_recursion(self, qubits, couplers, exp, exp_calib, exp_options):