Skip to content

Commit

Permalink
docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacfomg committed Nov 16, 2023
1 parent b1b720b commit 47d9375
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/qibolab/instruments/zhinst.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,10 +504,14 @@ def register_couplerflux_line(self, coupler):
)

def run_exp(self):
"""Compilation settings, compilation step, execution step and data retrival"""
# self.experiment.save("saved_exp") # saving experiment
"""
Compilation settings, compilation step, execution step and data retrival
- Save a experiment Python object:
self.experiment.save("saved_exp")
- Save a experiment compiled experiment ():
self.exp.save("saved_exp") # saving compiled experiment
"""
self.exp = self.session.compile(self.experiment, compiler_settings=COMPILER_SETTINGS)
# self.exp.save("saved_exp") # saving compiled experiment
self.results = self.session.run(self.exp)

@staticmethod
Expand Down

0 comments on commit 47d9375

Please sign in to comment.