Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ def run(
self,
backend: Optional[Backend] = None,
analysis: Optional[Union[BaseAnalysis, None]] = "default",
timeout: Optional[float] = None,
**run_options,
) -> ExperimentData:
"""Run an experiment, perform analysis, and update any calibrations.
Expand All @@ -233,12 +234,16 @@ def run(
analysis. If None analysis will not be run. If ``"default"``
the experiments :meth:`analysis` instance will be used if
it contains one.
timeout: Time to wait for experiment jobs to finish running before
cancelling.
run_options: backend runtime options used for circuit execution.

Returns:
The experiment data object.
"""
experiment_data = super().run(backend, analysis, **run_options)
experiment_data = super().run(
backend=backend, analysis=analysis, timeout=timeout, **run_options
)

self._add_cal_metadata(experiment_data)

Expand Down
Loading