analog ====== .. py:module:: quantify_scheduler.backends.qblox.analog .. autoapi-nested-parse:: Utilty classes for Qblox analog modules. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: quantify_scheduler.backends.qblox.analog.AnalogSequencerCompiler quantify_scheduler.backends.qblox.analog.AnalogModuleCompiler quantify_scheduler.backends.qblox.analog.BasebandModuleCompiler quantify_scheduler.backends.qblox.analog.RFModuleCompiler Attributes ~~~~~~~~~~ .. autoapisummary:: quantify_scheduler.backends.qblox.analog.logger .. py:data:: logger .. py:class:: AnalogSequencerCompiler(parent: AnalogModuleCompiler, index: int, static_hw_properties: quantify_scheduler.backends.types.qblox.StaticAnalogModuleProperties, settings: quantify_scheduler.backends.types.qblox.AnalogSequencerSettings, sequencer_cfg: quantify_scheduler.backends.qblox_backend._SequencerCompilationConfig) Bases: :py:obj:`quantify_scheduler.backends.qblox.compiler_abc.SequencerCompiler` Class that performs the compilation steps on the sequencer level, for QCM and QRM-type modules. :param parent: A reference to the module compiler this sequencer belongs to. :param index: Index of the sequencer. :param static_hw_properties: The static properties of the hardware. This effectively gathers all the differences between the different modules. :param settings: The settings set to this sequencer. :param sequencer_cfg: The instrument compiler config associated to this device. .. py:attribute:: static_hw_properties :type: quantify_scheduler.backends.types.qblox.StaticAnalogModuleProperties .. py:attribute:: _settings :type: quantify_scheduler.backends.types.qblox.AnalogSequencerSettings .. py:attribute:: associated_ext_lo .. py:attribute:: downconverter_freq .. py:attribute:: mix_lo .. py:attribute:: _marker_debug_mode_enable .. py:attribute:: _default_marker .. py:property:: frequency :type: float | None The frequency used for modulation of the pulses. :returns: The frequency. .. py:method:: get_operation_strategy(operation_info: quantify_scheduler.backends.types.qblox.OpInfo) -> quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy Determines and instantiates the correct strategy object. :param operation_info: The operation we are building the strategy for. :param channel_name: Specifies the channel identifier of the hardware config (e.g. `complex_output_0`). :returns: The instantiated strategy object. .. py:method:: add_operation_strategy(op_strategy: quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy) -> None Adds the operation strategy to the sequencer compiler. :param op_strategy: The operation strategy. .. py:method:: _prepare_acq_settings(acquisitions: list[quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy], acq_metadata: quantify_scheduler.schedules.schedule.AcquisitionMetadata) -> None Sets sequencer settings that are specific to certain acquisitions. For example for a TTL acquisition strategy. :param acquisitions: List of the acquisitions assigned to this sequencer. :param acq_metadata: Acquisition metadata. .. py:method:: _get_integration_length_from_acquisitions() -> int | None Get the (validated) integration_length sequencer setting. Get the duration of all SSB integration acquisitions assigned to this sequencer and validate that they are all the same. .. py:method:: prepare() -> None Perform necessary operations on this sequencer's data before :meth:`~quantify_scheduler.backends.qblox.compiler_abc.SequencerCompiler.compile` is called. .. py:method:: _update_set_clock_frequency_operations() -> None .. py:method:: _get_latency_correction_ns(latency_correction: float) -> int .. py:method:: _assert_nco_operation_timing_on_grid(ordered_op_strategies: list[quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy]) -> None :staticmethod: Check whether this sequencer's operation adhere to NCO timing restrictions. .. py:method:: _assert_total_play_time_on_nco_grid() -> None Raises an error if the total play time does not align with the NCO grid time. Method is implemented on the base class instead of the `AnalogSequencerCompiler` subclass because it is called by `generate_qasm_program`. .. py:method:: _write_pre_wait_sync_instructions(qasm: quantify_scheduler.backends.qblox.qasm_program.QASMProgram) -> None Write instructions to the QASM program that must come before the first wait_sync. The duration must be equal for all module types. .. py:method:: _write_repetition_loop_header(qasm: quantify_scheduler.backends.qblox.qasm_program.QASMProgram) -> None Write the Q1ASM that should appear at the start of the repetition loop. The duration must be equal for all module types. .. py:method:: _insert_qasm(op_strategy: quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy, qasm_program: quantify_scheduler.backends.qblox.qasm_program.QASMProgram) -> None Get Q1ASM instruction(s) from ``op_strategy`` and insert them into ``qasm_program``. Optionally wrap pulses and acquisitions in marker pulses depending on the ``marker_debug_mode_enable`` setting. .. py:method:: _decide_markers(operation: quantify_scheduler.backends.qblox.operation_handling.base.IOperationStrategy) -> int Helper method to decide what markers should be pulled high when enable_marker is set to True. Checks what module and operation are being processed, then builds a bit string accordingly. Note that with the current quantify structure a sequencer cannot have connected inputs and outputs simultaneously. Therefore, the QRM baseband module pulls both input or output markers high when doing an operation, as it is impossible during compile time to find out what physical port is being used. :param operation: The operation currently being processed by the sequence. :returns: A bit string passed on to the set_mrk function of the Q1ASM object. .. py:class:: AnalogModuleCompiler(parent: quantify_scheduler.backends.qblox.instrument_compilers.ClusterCompiler, name: str, total_play_time: float, instrument_cfg: quantify_scheduler.backends.qblox_backend._ClusterModuleCompilationConfig) Bases: :py:obj:`quantify_scheduler.backends.qblox.compiler_abc.ClusterModuleCompiler`, :py:obj:`abc.ABC` Base class for QCM and QRM-type modules. This class is defined as an abstract base class since the distinctions between the different devices are defined in subclasses. Effectively, this base class contains the functionality shared by all Qblox devices and serves to avoid repeated code between them. :param parent: Reference to the parent object. :type parent: :class:`quantify_scheduler.backends.qblox.instrument_compilers.ClusterCompiler` :param name: Name of the `QCoDeS` instrument this compiler object corresponds to. :param total_play_time: Total time execution of the schedule should go on for. This parameter is used to ensure that the different devices, potentially with different clock rates, can work in a synchronized way when performing multiple executions of the schedule. :param instrument_cfg: The instrument compiler config referring to this device. .. py:attribute:: _settings :type: quantify_scheduler.backends.types.qblox.AnalogModuleSettings .. py:attribute:: sequencers :type: dict[str, AnalogSequencerCompiler] .. py:property:: static_hw_properties :type: quantify_scheduler.backends.types.qblox.StaticAnalogModuleProperties :abstractmethod: The static properties of the hardware. This effectively gathers all the differences between the different modules. .. py:method:: _construct_sequencer_compiler(index: int, sequencer_cfg: quantify_scheduler.backends.qblox_backend._SequencerCompilationConfig) -> AnalogSequencerCompiler Create an instance of :class:`AnalogSequencerCompiler`. .. py:method:: assign_frequencies(sequencer: AnalogSequencerCompiler) -> None :abstractmethod: An abstract method that should be overridden. Meant to assign an IF frequency to each sequencer, and an LO frequency to each output (if applicable). .. py:method:: _set_lo_interm_freqs(freqs: quantify_scheduler.backends.qblox.helpers.Frequencies, sequencer: AnalogSequencerCompiler, compiler_lo_baseband: quantify_scheduler.backends.qblox.instrument_compilers.LocalOscillatorCompiler | None = None, lo_freq_setting_rf: str | None = None) -> None Sets the LO/IF frequencies, for baseband and RF modules. :param freqs: LO, IF, and clock frequencies, supplied via an :class:`.helpers.Frequencies` object. :param sequencer: The sequencer for which frequences are to be set. :param compiler_lo_baseband: For baseband modules, supply the :class:`.instrument_compilers.LocalOscillatorCompiler` instrument compiler of which the frequency is to be set. :param lo_freq_setting_rf: For RF modules, supply the name of the LO frequency param from the :class:`.RFModuleSettings` that is to be set. :raises ValueError: In case neither LO frequency nor IF has been supplied. :raises ValueError: In case both LO frequency and IF have been supplied and do not adhere to :math:`f_{RF} = f_{LO} + f_{IF}`. :raises ValueError: In case of RF, when the LO frequency was already set to a different value. .. py:method:: assign_attenuation() -> None :abstractmethod: An abstract method that should be overridden. Meant to assign attenuation settings from the hardware configuration if there is any. .. py:method:: prepare() -> None Performs the logic needed before being able to start the compilation. In effect, this means assigning the pulses and acquisitions to the sequencers and calculating the relevant frequencies in case an external local oscillator is used. .. py:method:: _configure_input_gains() -> None Configures input gain of module settings. Loops through all valid channel names and checks for gain values in hw config. .. py:method:: _configure_mixer_offsets() -> None Configures offset of input, uses calc_from_units_volt found in helper file. Raises an exception if a value outside the accepted voltage range is given. .. py:method:: _configure_distortion_correction_latency_compensations(distortion_configs: dict[int, Any] | None = None) -> None .. py:method:: _configure_dc_latency_comp_for_output(output: int, dc_comp: int) -> None .. py:method:: _configure_dc_latency_comp_for_marker(output: int, dc_comp: int) -> None .. py:method:: _configure_hardware_distortion_corrections(distortion_configs: dict[int, Any] | None = {}) -> None Assign distortion corrections to settings of instrument compiler. .. py:method:: _ensure_single_scope_mode_acquisition_sequencer() -> None Raises an error if multiple sequencers use scope mode acquisition, because that's not supported by the hardware. Also, see :func:`~quantify_scheduler.instrument_coordinator.components.qblox._QRMComponent._determine_scope_mode_acquisition_sequencer_and_qblox_acq_index` which also ensures the program that gets uploaded to the hardware satisfies this requirement. :raises ValueError: Multiple sequencers have to perform trace acquisition. This is not supported by the hardware. .. py:class:: BasebandModuleCompiler(parent: quantify_scheduler.backends.qblox.instrument_compilers.ClusterCompiler, name: str, total_play_time: float, instrument_cfg: quantify_scheduler.backends.qblox_backend._ClusterModuleCompilationConfig) Bases: :py:obj:`AnalogModuleCompiler` Abstract class with all the shared functionality between the QRM and QCM baseband modules. .. py:attribute:: _settings :type: quantify_scheduler.backends.types.qblox.BasebandModuleSettings .. py:method:: assign_frequencies(sequencer: AnalogSequencerCompiler) -> None Determines LO/IF frequencies and assigns them, for baseband modules. In case of **no** external local oscillator, the NCO is given the same frequency as the clock -- unless NCO was permanently disabled via `"interm_freq": 0` in the hardware config. In case of **an** external local oscillator and `sequencer.mix_lo` is ``False``, the LO is given the same frequency as the clock (via :func:`.helpers.determine_clock_lo_interm_freqs`). .. py:method:: assign_attenuation() -> None Meant to assign attenuation settings from the hardware configuration, if there is any. For baseband modules there is no attenuation parameters currently. .. py:method:: _configure_dc_latency_comp_for_marker(output: int, dc_comp: int) -> None .. py:class:: RFModuleCompiler(parent: quantify_scheduler.backends.qblox.instrument_compilers.ClusterCompiler, name: str, total_play_time: float, instrument_cfg: quantify_scheduler.backends.qblox_backend._ClusterModuleCompilationConfig) Bases: :py:obj:`AnalogModuleCompiler` Abstract class with all the shared functionality between the QRM-RF and QCM-RF modules. .. py:attribute:: _settings :type: quantify_scheduler.backends.types.qblox.RFModuleSettings .. py:method:: assign_frequencies(sequencer: AnalogSequencerCompiler) -> None Determines LO/IF frequencies and assigns them for RF modules. .. py:method:: _get_connected_lo_indices(sequencer: AnalogSequencerCompiler) -> Iterator[int] :staticmethod: Identify the LO the sequencer is outputting. Use the sequencer output to module output correspondence, and then use the fact that LOX is connected to module output X. .. py:method:: assign_attenuation() -> None Assigns attenuation settings from the hardware configuration. Floats that are a multiple of 1 are converted to ints. This is needed because the :func:`quantify_core.measurement.control.grid_setpoints` converts setpoints to floats when using an attenuation as settable. .. py:method:: _configure_dc_latency_comp_for_marker(output: int, dc_comp: int) -> None