Skip to content

Commit

Permalink
fixed native sequence incorrect construction of pulse start time and …
Browse files Browse the repository at this point in the history
…phase
  • Loading branch information
khoojy committed Feb 28, 2025
1 parent 3dd0ca4 commit a63e2f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qibolab/native.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ def sequence(self, start=0):

for pulse in self.pulses:
if isinstance(pulse, NativePulse):
sequence.add(pulse.pulse(start=start))
#sequence.add(pulse.pulse(start=start))
sequence.add(pulse.pulse(start=pulse.start, relative_phase=pulse.phase))
else:
virtual_z_phases[pulse.qubit.name] += pulse.phase

Expand Down

0 comments on commit a63e2f1

Please sign in to comment.