PRX_SinglePulse_GateImplementation#

class iqm.pulse.gates.prx.PRX_SinglePulse_GateImplementation(parent, name, locus, calibration_data, builder)#

Bases: SinglePulseGate, PRX_GateImplementation

ABC for PRX gates implemented using a single IQ pulse.

This class implements phased x rotation gates on a specific qubit using an IQPulse instance, derived from the pulse calibration data provided at construction by the static method _single_iq_pulse(). The pulse is used to resonantly drive the qubit to effect the required rotation.

The pulse calibration data consists of the parameters of an \(x_\pi\) IQPulse only. It is assumed that

  • the transfer function from the AWG to the qubit is linear, i.e., other rotation angles can be obtained by linearly scaling the pulse amplitude, and

  • other phase angles can be obtained by adjusting the IQ modulation phase.

The generated pulses all have the same time duration, also for identity rotations. In the special case of the duration being zero, the gate implementation will apply a Block(0) instruction to the qubit’s drive channel.

Module: iqm.pulse.gates.prx

Attributes

iq_pulse

Alias for self.pulse for backward compatibility

Methods

Parameters:
_call(angle, phase=0.0)#

Phased x rotation gate.

Parameters:
  • angle (float) – rotation angle (in radians)

  • phase (float) – phase angle (in radians)

Returns:

boxed instruction schedule implementing the phased x rotation gate

Return type:

TimeBox

property iq_pulse: IQPulse#

Alias for self.pulse for backward compatibility