pulse_library ============= .. py:module:: quantify_scheduler.backends.qblox.operations.pulse_library .. autoapi-nested-parse:: Standard pulse-level operations for use with the quantify_scheduler. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: quantify_scheduler.backends.qblox.operations.pulse_library.LatchReset quantify_scheduler.backends.qblox.operations.pulse_library.SimpleNumericalPulse .. py:class:: LatchReset(portclock: tuple[str, str], t0: float = 0, duration: float = 4e-09) Bases: :py:obj:`quantify_scheduler.Operation` Operation that resets the feedback trigger addresses from the hardware. Currently only implemented for Qblox backend, refer to :class:`~quantify_scheduler.backends.qblox.operation_handling.virtual.ResetFeedbackTriggersStrategy` for more details. .. py:class:: SimpleNumericalPulse(samples: numpy.ndarray | list, port: str, clock: str = BasebandClockResource.IDENTITY, reference_magnitude: quantify_scheduler.operations.pulse_library.ReferenceMagnitude | None = None, t0: float = 0) Bases: :py:obj:`quantify_scheduler.operations.pulse_library.NumericalPulse` Wrapper on top of NumericalPulse to provide a simple interface for creating a pulse where the samples correspond 1:1 to the produced waveform, without needing to specify the time samples. :param samples: An array of (possibly complex) values specifying the shape of the pulse. :param port: The port that the pulse should be played on. :param clock: Clock used to (de)modulate the pulse. By default the baseband clock. :param reference_magnitude: Scaling value and unit for the unitless samples. Uses settings in hardware config if not provided. :param t0: Time in seconds when to start the pulses relative to the start time of the Operation in the Schedule. .. rubric:: Example .. jupyter-execute:: from quantify_scheduler.backends.qblox.operations.pulse_library import SimpleNumericalPulse from quantify_scheduler import Schedule waveform = [0.1,0.2,0.2,0.3,0.5,0.4] schedule = Schedule("") schedule.add(SimpleNumericalPulse(waveform, port="q0:out")) .. py:attribute:: samples .. py:attribute:: t_samples