instrument_coordinator#
Import alias |
Target |
---|---|
|
|
|
Subpackages#
Submodules#
Package Contents#
Classes#
The |
|
Support ZI backend. |
- class InstrumentCoordinator(name: str, add_default_generic_icc: bool = True)[source]#
Bases:
qcodes.instrument.base.Instrument
The
InstrumentCoordinator
serves as the central interface of the hardware abstraction layer.It provides a standardized interface to execute Schedules on control hardware.
The
InstrumentCoordinator
has two main functionalities exposed to the user, the ability to configure itscomponents
representing physical instruments, and the ability to execute experiments.Executing a schedule using the instrument coordinator
To execute a
Schedule
, one needs to first compile a schedule and then configure all the instrument coordinator components usingprepare()
. After starting the experiment, the results can be retrieved usingretrieve_acquisition()
.from quantify_scheduler.backends.graph_compilation import SerialCompiler my_sched: Schedule = ... # a Schedule describing the experiment to perform quantum_device: QuantumDevice = ... # the device under test hardware_config: dict = ... # a config file describing the connection to the hardware quantum_device.hardware_config(hardware_config) compiler = SerialCompiler(name="compiler") compiled_sched = compiler.compile( schedule=sched, config=quantum_device.generate_compilation_config() ) instrument_coordinator.prepare(compiled_sched) instrument_coordinator.start() dataset = instrument_coordinator.retrieve_acquisition()
Adding components to the instrument coordinator
In order to distribute compiled instructions and execute an experiment, the instrument coordinator needs to have references to the individual instrument coordinator components. They can be added using
add_component()
.instrument_coordinator.add_component(qcm_component)
- Parameters:
name – The name for the instrument coordinator instance.
add_default_generic_icc – If True, automatically adds a GenericInstrumentCoordinatorComponent to this instrument coordinator with the default name.
- components#
- timeout#
- _last_schedule = None#
- _compiled_schedule = None#
- property last_schedule: quantify_scheduler.schedules.schedule.CompiledSchedule#
Returns the last schedule used to prepare the instrument coordinator.
This feature is intended to aid users in debugging.
- property is_running: bool#
Returns if any of the
InstrumentCoordinator
components is running.- Returns:
The
InstrumentCoordinator
’s running state.
- get_component(full_name: str) quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase [source]#
Returns the InstrumentCoordinator component by name.
- Parameters:
full_name – The component name.
- Returns:
The component.
- Raises:
KeyError – If key
name
is not present inself.components
.
- add_component(component: quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase) None [source]#
Adds a component to the components collection.
- Parameters:
component – The component to add.
- Raises:
ValueError – If a component with a duplicated name is added to the collection.
TypeError – If
component
is not an instance of the base component.
- remove_component(name: str) None [source]#
Removes a component by name.
- Parameters:
name – The component name.
- prepare(compiled_schedule: quantify_scheduler.schedules.schedule.CompiledSchedule) None [source]#
Prepares each component for execution of a schedule.
It attempts to configure all instrument coordinator components for which compiled instructions, typically consisting of a combination of sequence programs, waveforms and other instrument settings, are available in the compiled schedule.
- Parameters:
compiled_schedule – A schedule containing the information required to execute the program.
- Raises:
KeyError – If the compiled schedule contains instructions for a component absent in the instrument coordinator.
TypeError – If the schedule provided is not a valid
CompiledSchedule
.
- start() None [source]#
Start all of the components that appear in the compiled instructions.
The instruments will be started in the order in which they were added to the instrument coordinator.
- stop(allow_failure: bool = False) None [source]#
Stops all components.
The components are stopped in the order in which they were added.
- Parameters:
allow_failure – By default it is set to False. When set to True, the AttributeErrors raised by a component are demoted to warnings to allow other components to stop.
- retrieve_acquisition() xarray.Dataset [source]#
Retrieves the latest acquisition results of the components with acquisition capabilities.
- Returns:
The acquisition data in an
xarray.Dataset
. For each acquisition channel it contains anxarray.DataArray
.
- class ZIInstrumentCoordinator(*args, **kwargs)[source]#
Bases:
InstrumentCoordinator
Support ZI backend.
This class is a hack and extension to the
InstrumentCoordinator
, which is introduced to support the quirks when using the ZI backend during the acquisition of results.- timeout_reacquire#
- max_num_reacquisitions#
- _last_acquisition = None#
- _num_reacquisitions = 0#
- _compare_reacquire(raw_results: xarray.Dataset) bool [source]#
- retrieve_acquisition() xarray.Dataset [source]#
Retrieves the latest acquisition results of the components.
- Returns:
The acquisition data in an
xarray.Dataset
. For each acquisition channel it contains anxarray.DataArray
.