From fa9d144c9784c4e49e82ee940996a1789857e5ab Mon Sep 17 00:00:00 2001 From: Hayk Sargsyan <52532457+hay-k@users.noreply.github.com> Date: Thu, 28 Mar 2024 16:22:18 +0400 Subject: [PATCH] delay unsplit flux pulses according to their start --- src/qibolab/instruments/zhinst/executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qibolab/instruments/zhinst/executor.py b/src/qibolab/instruments/zhinst/executor.py index de5f250cb8..5c005077f7 100644 --- a/src/qibolab/instruments/zhinst/executor.py +++ b/src/qibolab/instruments/zhinst/executor.py @@ -565,6 +565,7 @@ def select_exp(self, exp, qubits, exp_options): with exp.section(uid="unsplit_channels"): for ch in self.unsplit_channels: for pulse in self.sequence[ch]: + exp.delay(signal=ch, time=pulse.pulse.start) self.play_sweep(exp, ch, pulse) weights = {}